Simon Ernst

Results 12 comments of Simon Ernst

Dear @bethesque and @uglyog, maybe you have a second to verify if this statement is correct: When this system properties are set, the verification is done for pacts where the...

Thank you very much for your advise and your time! I updated my configuration in the first comment. I tested running the provider verification without setting pactbroker.providerBranch - i am...

Also happening with Flux CLI Version `0.24.1`: `flux reconcile hr ` -->`HelmRelease reconciliation failed: install retries exhausted` Workaround as suggest above works: `flux suspend hr ` followed by `flux resume...

Hi @kingdonb , all right, thanks a lot for providing your explanation. Your right, fixing errors with just uninstall + install is a long time ago ;) In our case...

@vitalikaz Many thanks! That did it! And it looks pretty nice! 🥇 ![image](https://user-images.githubusercontent.com/44950692/116273085-be48e480-a781-11eb-9a40-c392e8ca6dae.png)

Worked for me on a multimodule maven project. I was missing `-Dsonar.stash.repository.root=$PWD`. I am running the mvn command in the root directory of the maven project and referencing a pom.xml...

This is still an issue. Tried kustomize build with kustomize version 5.0.0: ``` configMapGenerator: - behavior: merge literals: - ENVIRONMENT='${TEST}' name: config ``` Turns into after kustomize build: ``` apiVersion:...

Solution: Using block scalar style as mentioned here with Kustomize v5.0.0 works: https://github.com/kubernetes-sigs/kustomize/issues/4233#issuecomment-1009278304 https://stackoverflow.com/a/21699210/7746963 ``` configMapGenerator: - behavior: merge literals: - | ENVIRONMENT=${TEST} name: config ``` Now building the Kustomization,...