@@ -14,15 +14,37 @@ pint:
1414 tag : " " # defaults to Chart.appVersion
1515 pullPolicy : IfNotPresent
1616
17- # Pre-existing Secret containing sensitive PINT environment variables.
18- # Required when pint.enabled=true. Must contain:
19- # PINT_CLIENT_ID, PINT_CLIENT_SECRET, PINT_SERVER_URL,
20- # PINT_LOGIN_URL, PINT_CALLBACK_URL,
21- # PINT_IPA_HOST, PINT_IPA_SERVICE_ACCOUNT, PINT_IPA_PASSWORD,
22- # PINT_IPA_CA_NAME, PINT_IPA_RADSEC_CA_NAME, PINT_IPA_ROOT_CA_NAME,
23- # PINT_WIFI_SSID, PINT_RADIUS_SERVER
24- # Non-sensitive config (namespace, secret names, pod selector) is injected
25- # directly by the chart and does not need to be in this Secret.
17+ # Non-sensitive PINT application configuration rendered into a ConfigMap.
18+ # Sensitive values (PINT_CLIENT_SECRET, PINT_IPA_PASSWORD) must still be
19+ # provided in the Secret named by envSecret below.
20+ config :
21+ # OIDC
22+ clientID : " "
23+ serverURL : " "
24+
25+ # FreeIPA
26+ ipaHost : " "
27+ ipaServiceAccount : " "
28+ ipaCAName : " "
29+ ipaRadSecCAName : " "
30+ ipaRootCAName : " ipa"
31+ # Optional Dogtag cert profiles; leave blank to use CA defaults.
32+ ipaCertProfile : " "
33+ ipaRadSecClientCertProfile : " "
34+ ipaRadSecServerCertProfile : " "
35+ ipaSkipTLSVerify : false
36+
37+ # WiFi
38+ wifiSSID : " "
39+
40+ # RADIUS
41+ radiusServer : " "
42+
43+ # Pre-existing Secret containing sensitive PINT credentials.
44+ # Required when pint.enabled=true. Must contain only:
45+ # PINT_CLIENT_SECRET - OIDC client secret
46+ # PINT_IPA_PASSWORD - FreeIPA service account password
47+ # All other config is rendered into a ConfigMap from the config block above.
2648envSecret : pint-env
2749
2850# Names of the K8s Secrets PINT creates and manages at runtime.
0 commit comments