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
{{ message }}
This repository was archived by the owner on Sep 9, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: ui/apiserver/apiserver.go
+25-2Lines changed: 25 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -526,12 +526,15 @@ func main() {
526
526
tlsServerCaCertPath:=pflag.String("tls-server-ca-cert", "$HOME/server-ca-crt.pem2", "Path to the TLS server CA certificate. Defaults to 'server-ca-crt.pem2'")
527
527
pflag.Parse()
528
528
529
-
/* Support env population with priority being:
529
+
/* ENV support, most variabls take 3 options, with the following priority:
530
530
1) flag
531
531
2) env
532
532
3) acceptable defaults
533
533
*/
534
534
535
+
// NOTE: not all variables support all 3 methods, in which case they will be documented via comments.
0 commit comments