Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update help text for --storage-class flag of zarf init #1719

Merged
merged 1 commit into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/2-the-zarf-cli/100-cli-commands/zarf_init.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ zarf init --git-push-password={PASSWORD} --git-push-username={USERNAME} --git-ur
--registry-secret string Registry secret value
--registry-url string External registry url address to use for this Zarf cluster
--set stringToString Specify deployment variables to set on the command line (KEY=value) (default [])
--storage-class string Specify the storage class to use for the registry. E.g. --storage-class=standard
--storage-class string Specify the storage class to use for the registry and git server. E.g. --storage-class=standard
```

## Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion src/config/lang/english.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ zarf init --git-push-password={PASSWORD} --git-push-username={USERNAME} --git-ur

CmdInitFlagConfirm = "Confirms package deployment without prompting. ONLY use with packages you trust. Skips prompts to review SBOM, configure variables, select optional components and review potential breaking changes."
CmdInitFlagComponents = "Specify which optional components to install. E.g. --components=git-server,logging"
CmdInitFlagStorageClass = "Specify the storage class to use for the registry. E.g. --storage-class=standard"
CmdInitFlagStorageClass = "Specify the storage class to use for the registry and git server. E.g. --storage-class=standard"

CmdInitFlagGitURL = "External git server url to use for this Zarf cluster"
CmdInitFlagGitPushUser = "Username to access to the git server Zarf is configured to use. User must be able to create repositories via 'git push'"
Expand Down