Merge pull request #222 from Niksko/patch-1

Fix name of --inventory-namespace flag in init error message
This commit is contained in:
Kubernetes Prow Robot 2020-08-18 21:01:10 -07:00 committed by GitHub
commit 516c2d7596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ func calcPackageNamespace(packageDir string) (string, error) {
if currentNamespace != rm.ObjectMeta.Namespace {
return "", errors.Errorf(
"resources belong to different namespaces, a namespace is required to create the resource " +
"used for keeping track of past apply operations. Please specify ---inv-namespace.")
"used for keeping track of past apply operations. Please specify ---inventory-namespace.")
}
}
// Return the default namespace if none found.