We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9fdc44 commit 36358fcCopy full SHA for 36358fc
cmd/deploy_eso.go
@@ -18,6 +18,11 @@ var deployEsoCmd = &cobra.Command{
18
Use: "deploy-eso",
19
Short: "Deploys External Secrets Operator controllers on the target cluster",
20
Long: "Deploys External Secrets Operator controllers on the target cluster",
21
+ Args: cobra.ExactArgs(1),
22
+ ArgAliases: []string{
23
+ "configFile",
24
+ },
25
+ Example: `openmcp-bootstrapper deploy-eso "./config.yaml"`,
26
RunE: func(cmd *cobra.Command, args []string) error {
27
configFilePath := args[0]
28
config := &cfg.BootstrapperConfig{}
0 commit comments