Skip to content

Commit

Permalink
Fix k8s.KubectlApplyFromKustomizeE describtion
Browse files Browse the repository at this point in the history
  • Loading branch information
s-diez committed May 23, 2023
1 parent 5389a85 commit a4a1271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/k8s/kubectl.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit a4a1271

Please sign in to comment.