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) }