From 498a6078db33336cb8aa1ccc4bf08512e65cfc40 Mon Sep 17 00:00:00 2001 From: Andy Roth Date: Tue, 16 May 2023 12:01:42 -0700 Subject: [PATCH] Update help text for --storage-class flag of zarf init --- docs/2-the-zarf-cli/100-cli-commands/zarf_init.md | 2 +- src/config/lang/english.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/2-the-zarf-cli/100-cli-commands/zarf_init.md b/docs/2-the-zarf-cli/100-cli-commands/zarf_init.md index f15d647003..d81d50f712 100644 --- a/docs/2-the-zarf-cli/100-cli-commands/zarf_init.md +++ b/docs/2-the-zarf-cli/100-cli-commands/zarf_init.md @@ -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 diff --git a/src/config/lang/english.go b/src/config/lang/english.go index bddf433641..4258b3e44f 100644 --- a/src/config/lang/english.go +++ b/src/config/lang/english.go @@ -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'"