Skip to content

Commit

Permalink
Merge pull request #1294 from s-diez/patch-4
Browse files Browse the repository at this point in the history
Fix k8s.KubectlApplyFromKustomizeE describtion
  • Loading branch information
denis256 committed May 23, 2023
2 parents 5389a85 + a4a1271 commit b69cbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/k8s/kubectl.go
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 b69cbc6

Please sign in to comment.