Marcin Owsiany
Marcin Owsiany
**What happened**: A user referred to a parameter of type `array` by [simply naming it between `{{ }}`](https://github.com/akirillov/kudo-instance-parameter-issue-repro/pull/1/files#diff-1e16caa5ad45707c394205bceb26fea0L14) but that [did not work as expected](https://github.com/akirillov/kudo-instance-parameter-issue-repro/pull/1#issue-414542474), since Go templates simply stringified...
**What happened**: Tried to install an operator from a tarball which does not exist. Received a confusing message which: - does *not* contain the string `no such file` - contains...
In some cases I'm getting errors such as: ``` While evaluating value expression: format_date(tag("ending"), "%Y-%m-%d") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ While converting : While calling function 'format_date (, %Y-%m-%d)': Error: Cannot convert an uninitialized...
**What happened**: After `kubectl kuttl test` runs, a `kubeconfig` file appears in current directory. **What you expected to happen**: No garbage left behind. **How to reproduce it (as minimally and...
**What would you like to be added**: Just like `kuttl` shows a diff between expected and actual resource for `assert.yaml` files, it should show the content of the actual resource...
Not sure if I got this right (the docs seem to be a little [stale](kuttl.dev#20)), but it sounds to me like `collectors` can currently only be specified on a `TestAssert`...
**What happened**: I start some `commands:` from a `TestAssert` and a `TestStep`. Current working directory for the former is the directory I started `kuttl` from, while for the latter it's...
**What happened**: One of my steps has a file `10-errors.yaml` which contains (among other things): ```yaml apiVersion: security.openshift.io/v1 kind: SecurityContextConstraints metadata: name: foo --- apiVersion: security.openshift.io/v1 kind: SecurityContextConstraints metadata: name:...
**What happened**: I ran the following command on an assert file containing 5 objects (2 custom resources and 3 Deployments): ``` $ kubectl-kuttl assert --namespace $NAMESPACE --timeout 300 $assert_file ```...
**What would you like to be added**: Ability to mark a step as unconditional, i.e. harness should run it even if some previous step(s) failed. **Why is this needed**: To...