Ken Sipe

Results 78 issues of Ken Sipe

When setting reportFormat for testsuites... there is no validation which can have unexpected results. 1. The xml | json must be lower case... this should be managed by kuttl not...

https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html Would like to have a default value if ENV VAR not set as in: ``` ${parameter:-word} ``` This should already work for `*.sh` shell scripts... but it would be...

documentation

There is a need to be able to exec a command from a pod... the value includes the ability to connect or perform actions from within the cluster that may...

This will allow for cleanup for a specified namespaces add a `owner`:`kuttl.dev/kuttl-test` label

Need to have the lifecycle defined Test Suite Collections Test Suite Test TestStep Each TestStep * Create / Apply Phase * Assert Phase What happens in each phases... when does...

documentation

Report layout (junit xml) Each element

documentation

Test the following and work fine: `00-install.yaml` ``` apiVersion: v1 kind: Pod metadata: name: static-web labels: environment: production app: nginx spec: containers: - name: web image: nginx ``` `00-assert.yaml` ```...

Asserts today are easy for YAML or K8s objects... however there are users wanting to do a regex match against pod logs. Is there a way to make this easier?...

Add ability to have before each and after each conditions defined in TestSuite to be applied / asserted before and after each test

A great strategy for "ensuring" a controller or resources is to have a step 0 assert of that instance running see https://github.com/kudobuilder/kudo/pull/1473 test/e2e/cli-install-uninstall/00-assert.yaml ``` apiVersion: v1 kind: Pod metadata: labels:...