Damien Degois
Damien Degois
@Elektordi @JoelSpeed @kvanzuijlen little up ?
Unable to fetch available guestos for hwVersion > vmx-17 ``` python environmentBrowser.QueryConfigOption(key='vmx-04') # => Ok environmentBrowser.QueryConfigOption(key='vmx-07') # => Ok environmentBrowser.QueryConfigOption(key='vmx-08') # => Ok environmentBrowser.QueryConfigOption(key='vmx-09') # => Ok environmentBrowser.QueryConfigOption(key='vmx-10') # =>...
As I was mentionning in the linked issue, I ended up getting something working using bot framework but it's not exaclty consistent. For that I use [`fallbackText`](https://github.com/teams-notifier/gitlab-mr-api/blob/38346e9b6a2b9f03c5597d3b598081155e141b0b/cards/merge_request.yaml.j2#L4), [`speak`](https://github.com/teams-notifier/gitlab-mr-api/blob/38346e9b6a2b9f03c5597d3b598081155e141b0b/cards/merge_request.yaml.j2#L5). I also...
Take a look at registry-map witch allows exactly that See https://github.com/GoogleContainerTools/kaniko#flag---registry-map index.docker.io=docker-io.mirrors.corp.net;index.docker.io=mirror.gcr.io;gcr.io=127.0.0.1 will try docker-io.mirrors.corp.net then mirror.gcr.io for index.docker.io and 127.0.0.1 for gcr.io
Is policy exception enabled ?
@KhaledEmaraDev do you have some hints on that ? My thought around @realshuting related MRs: **https://github.com/kyverno/kyverno/pull/11788** _remove policy exception dependancy from globalcontext and add some tests_ The modified behavior is...
I can trigger the issue on test by applying the following patch on `test/data/v3/basic/tests/ingress_test.yaml`: ```diff diff --git a/test/data/v3/basic/tests/ingress_test.yaml b/test/data/v3/basic/tests/ingress_test.yaml index 8db66a2..ad35436 100644 --- a/test/data/v3/basic/tests/ingress_test.yaml +++ b/test/data/v3/basic/tests/ingress_test.yaml @@ -14,11 +14,15 @@...
As far as I undestand, it's not a patch like helm `--set` option: - `set` stanzas are merged into a representation yaml in `getUserValues` at https://github.com/helm-unittest/helm-unittest/blob/10898361401bff2c564a045d79c439193a5e82a1/pkg/unittest/test_job.go#L202 - it is then...
During my test I noticed a different behavior in term of rendering between helm rendered templates and helm-unittest... I'll try to find out what it was (some digging required) and...