From a4a1271f1584688371cf04787085a16e0f9321c8 Mon Sep 17 00:00:00 2001 From: Sebastian Diez Date: Tue, 23 May 2023 15:37:19 +0200 Subject: [PATCH] Fix k8s.KubectlApplyFromKustomizeE describtion --- modules/k8s/kubectl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/k8s/kubectl.go b/modules/k8s/kubectl.go index 23fc1acd5..1aeca2eb9 100644 --- a/modules/k8s/kubectl.go +++ b/modules/k8s/kubectl.go @@ -100,7 +100,7 @@ func KubectlApplyFromKustomize(t testing.TestingT, options *KubectlOptions, conf require.NoError(t, KubectlApplyFromKustomizeE(t, options, configPath)) } -// KubectlApplyFromKustomizeE will take in a kustomization directory path and delete it from the cluster targeted by KubectlOptions. +// KubectlApplyFromKustomizeE will take in a kustomization directory path and apply it to the cluster targeted by KubectlOptions. func KubectlApplyFromKustomizeE(t testing.TestingT, options *KubectlOptions, configPath string) error { return RunKubectlE(t, options, "apply", "-k", configPath) }