Skip to content

Commit

Permalink
chore: improve help message for --distro-patches
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessio Pragliola committed May 3, 2024
1 parent e54afcf commit 03ccc17
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,12 @@ func setupCreateClusterCmdFlags(cmd *cobra.Command) {
cmd.Flags().String(
"distro-patches",
"",
"Location where to download distribution's user-made patches from. "+
cmdutil.AnyGoGetterFormatStr,
"Location where the distribution's user-made patches can be downloaded from. "+
"This can be either a local path (eg: /path/to/distro-patches) or "+
"a remote URL (eg: git::[email protected]:your-org/distro-patches?depth=1&ref=BRANCH_NAME). "+
cmdutil.AnyGoGetterFormatStr+
" Patches within this location must be in a folder named after the distribution version (eg: v1.29.0) and "+
"must have the same structure as the distribution's repository.",
)

cmd.Flags().StringP(
Expand Down

0 comments on commit 03ccc17

Please sign in to comment.