Jakob Schrettenbrunner
Jakob Schrettenbrunner
All packages need to import `_ "github.com/onsi/ginkgo/v2"`, even if they don't contain ginkgo tests when we want to run tests with the `ginkgo.junit-report` flag.
/retest
> If a package doesn't contain ginkgo tests, then how can ginkgo gather results for the tests in the package? Presumably those are plain `func TestFoo(t *testing.T)` tests? Can you...
> This is really, really bad. Is there any way to fix ginkgo, has this issue bee raised there? That's outdated by now. I've tested it [in the beginning](https://github.com/kubernetes-sigs/controller-runtime/pull/1977#issuecomment-1212892475) and...
While I don't think the original reason for this issue is still valid (it mentions upgrading to 0.10, but yorc uses 0.11 already) it is still valid in general. Terraform...
We've just stumbled across this issue as well. We assume that the `network_name` of the `tosca.capabilities.Endpoint.Admin` of a compute instance is supposed to be used to configure which network is...
For this to work, we would also need to be able to write to vaults. The current [implementation](https://github.com/ystia/yorc/blob/develop/vault/vault.go#L26) only allows reading, as that's the usual behaviour in a deployment with...
We want to make it easier for users to use yorc in conjunction with a4c. The idea was to automatically create ssh keys for yorc to use, so they don't...
As yorc isn't using userdata so far, we use to pass cloud-config to the server to add an additional public key. This way users can still add their own keys...
A backwards compatible approach would be using variadic arguments to allow passing in optional parameters. This is a pretty common approach and is often used with structs or functions. Unfortunately...