kuttl icon indicating copy to clipboard operation
kuttl copied to clipboard

KEP05: K8S CRUD Support

Open kensipe opened this issue 5 years ago • 0 comments

The k8s package should provide conveniences for interacting with Kubernetes objects.

  • Partial CRUD functionality for namespaces
  • CRUD functionality for all useful Kubernetes objects
  • Current known use-cases:
  • Creating and deleting namespaces during test runs

This should likely include WaitFor functions

package k8s
func Init(kubectlOptions *kubectl.KubectlOptions) error
func CreateNamespace(namespaceName string) error
func DeleteNamespace(namespaceName string) error

kensipe avatar Apr 07 '20 22:04 kensipe