You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixes#1212
related: STACKITCLI-327
kubectl calls stackit-cli for auth. To enable e2e tests for this ske
feature, it would be nice to save assume-yes to the config.
Copy file name to clipboardExpand all lines: docs/stackit_config_unset.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ stackit config unset [flags]
27
27
28
28
```
29
29
--allowed-url-domain Domain name, used for the verification of the URLs that are given in the IDP endpoint and curl commands. If unset, defaults to stackit.cloud
30
+
--assume-yes If set, skips all confirmation prompts
30
31
--async Configuration option to run commands asynchronously
31
32
--authorization-custom-endpoint Authorization API base URL. If unset, uses the default base URL
32
33
--cdn-custom-endpoint Custom CDN endpoint URL. If unset, uses the default base URL
@@ -67,12 +68,6 @@ stackit config unset [flags]
67
68
--verbosity Verbosity of the CLI
68
69
```
69
70
70
-
### Options inherited from parent commands
71
-
72
-
```
73
-
-y, --assume-yes If set, skips all confirmation prompts
74
-
```
75
-
76
71
### SEE ALSO
77
72
78
73
*[stackit config](./stackit_config.md) - Provides functionality for CLI configuration options
cmd.Flags().Bool(verbosityFlag, false, "Verbosity of the CLI")
264
+
cmd.Flags().Bool(assumeYesFlag, false, "If set, skips all confirmation prompts")
259
265
260
266
cmd.Flags().Bool(sessionTimeLimitFlag, false, fmt.Sprintf("Maximum time before authentication is required again. If unset, defaults to %s", config.SessionTimeLimitDefault))
261
267
cmd.Flags().Bool(identityProviderCustomWellKnownConfigurationFlag, false, "Identity Provider well-known OpenID configuration URL. If unset, uses the default identity provider")
returnfmt.Errorf("bind --%s flag to config: %w", AssumeYesFlag, err)
66
+
}
63
67
64
68
flagSet.Var(flags.EnumFlag(true, VerbosityDefault, verbosityFlagOptions...), VerbosityFlag, fmt.Sprintf("Verbosity of the CLI, one of %q", verbosityFlagOptions))
0 commit comments