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
refactor: split EAP server cert into its own K8s secret
eap.crt/eap.key move from the radsec-server-certificates secret into a
dedicated eap-server-cert secret. The RadSec cert secret holds outer-
tunnel material (tls.crt, tls.key, ca.pem, wifi-ca.pem) verified by
routers; the EAP cert secret holds what iOS devices verify during
EAP-TLS. Mixing them in one secret named radsec-server-certificates
was confusing.
The FreeRADIUS pod mounts both secrets at /etc/pint/radsec via a
projected volume, so no cert paths change in the EAP config.
Copy file name to clipboardExpand all lines: chart/values.schema.json
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,10 @@
148
148
"deviceMap": {
149
149
"type": "string",
150
150
"description": "Secret storing the cert serial to device info map. Defaults to '<fullname>-device-map'."
151
+
},
152
+
"eapCert": {
153
+
"type": "string",
154
+
"description": "Secret storing the FreeRADIUS EAP-TLS server cert and key (eap.crt, eap.key). Wireless CA-issued; verified by iOS devices via mobileconfig anchor. Defaults to '<fullname>-eap-server-cert'."
0 commit comments