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
cmd.Flags().String("capi-clusters-namespace", corev1.NamespaceAll, "where to look for GitOps cluster resources, defaults to looking in all namespaces")
199
-
cmd.Flags().String("capi-templates-namespace", "", "where to look for CAPI template resources, required")
cmd.Flags().String("tls-cert-file", "", "filename for the TLS certficate, in-memory generated if omitted")
210
-
cmd.Flags().String("tls-private-key", "", "filename for the TLS key, in-memory generated if omitted")
211
-
cmd.Flags().Bool("no-tls", false, "do not attempt to read TLS certificates")
212
-
cmd.Flags().String("cluster-name", "management", "name of the management cluster")
213
-
214
-
cmd.Flags().StringSlice("auth-methods", []string{"oidc", "token-passthrough", "user-account"}, "Which auth methods to use, valid values are 'oidc', 'token-pass-through' and 'user-account'")
215
-
cmd.Flags().String("oidc-issuer-url", "", "The URL of the OpenID Connect issuer")
216
-
cmd.Flags().String("oidc-client-id", "", "The client ID for the OpenID Connect client")
217
-
cmd.Flags().String("oidc-client-secret", "", "The client secret to use with OpenID Connect issuer")
218
-
cmd.Flags().String("oidc-redirect-url", "", "The OAuth2 redirect URL")
219
-
cmd.Flags().Duration("oidc-token-duration", time.Hour, "The duration of the ID token. It should be set in the format: number + time unit (s,m,h) e.g., 20m")
220
-
cmd.Flags().String("oidc-claim-username", "", "JWT claim to use as the user name. By default email, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as sub or name, depending on their provider")
221
-
cmd.Flags().String("oidc-claim-groups", "", "JWT claim to use as the user's group. If the claim is present it must be an array of strings")
222
-
cmd.Flags().StringSlice("custom-oidc-scopes", auth.DefaultScopes, "Customise the requested scopes for then OIDC authentication flow - openid will always be requested")
223
-
224
-
cmd.Flags().Bool("dev-mode", false, "starts the server in development mode")
225
-
cmd.Flags().Bool("use-k8s-cached-clients", true, "Enables the use of cached clients")
cmdFlags.String("tls-cert-file", "", "filename for the TLS certficate, in-memory generated if omitted")
212
+
cmdFlags.String("tls-private-key", "", "filename for the TLS key, in-memory generated if omitted")
213
+
cmdFlags.Bool("no-tls", false, "do not attempt to read TLS certificates")
214
+
cmdFlags.String("cluster-name", "management", "name of the management cluster")
215
+
216
+
cmdFlags.StringSlice("auth-methods", []string{"oidc", "token-passthrough", "user-account"}, "Which auth methods to use, valid values are 'oidc', 'token-pass-through' and 'user-account'")
217
+
cmdFlags.String("oidc-issuer-url", "", "The URL of the OpenID Connect issuer")
218
+
cmdFlags.String("oidc-client-id", "", "The client ID for the OpenID Connect client")
219
+
cmdFlags.String("oidc-client-secret", "", "The client secret to use with OpenID Connect issuer")
220
+
cmdFlags.String("oidc-redirect-url", "", "The OAuth2 redirect URL")
221
+
cmdFlags.Duration("oidc-token-duration", time.Hour, "The duration of the ID token. It should be set in the format: number + time unit (s,m,h) e.g., 20m")
222
+
cmdFlags.String("oidc-claim-username", "", "JWT claim to use as the user name. By default email, which is expected to be a unique identifier of the end user. Admins can choose other claims, such as sub or name, depending on their provider")
223
+
cmdFlags.String("oidc-claim-groups", "", "JWT claim to use as the user's group. If the claim is present it must be an array of strings")
224
+
cmdFlags.StringSlice("custom-oidc-scopes", auth.DefaultScopes, "Customise the requested scopes for then OIDC authentication flow - openid will always be requested")
225
+
226
+
cmdFlags.Bool("dev-mode", false, "starts the server in development mode")
227
+
cmdFlags.Bool("use-k8s-cached-clients", true, "Enables the use of cached clients")
0 commit comments