File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ $ helm install my-headlamp headlamp/headlamp \
9090| config.oidc.secret.name | string | ` "oidc" ` | Name of the OIDC secret |
9191| config.oidc.externalSecret.enabled | bool | ` false ` | Enable using external secret for OIDC |
9292| config.oidc.externalSecret.name | string | ` "" ` | Name of external OIDC secret |
93- | config.oidc.meUserInfoURL | string | ` "" ` | URL to fetch additional user info for the /me endpoint. For oauth2proxy /oauth2/userinfo can be used . |
93+ | config.oidc.meUserInfoURL | string | ` "" ` | URL to fetch additional user info for the /me endpoint. Useful for providers like oauth2-proxy . |
9494
9595There are three ways to configure OIDC:
9696
@@ -102,6 +102,7 @@ config:
102102 clientSecret : " your-client-secret"
103103 issuerURL : " https://your-issuer"
104104 scopes : " openid profile email"
105+ meUserInfoURL : " https://headlamp.example.com/oauth2/userinfo"
105106` ` `
106107
1071082. Using automatic secret creation:
Original file line number Diff line number Diff line change 3434{{- with .usePKCE }}
3535 usePKCE : {{ . | toString | b64enc | quote }}
3636{{- end }}
37+ {{- with .meUserInfoURL }}
38+ meUserInfoURL : {{ . | b64enc | quote }}
39+ {{- end }}
3740{{- end }}
3841{{- end }}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ metadata:
2020 namespace : default
2121type : Opaque
2222data :
23+ meUserInfoURL : " L29hdXRoMi91c2VyaW5mb2N1c3RvbTI="
2324---
2425# Source: headlamp/templates/clusterrolebinding.yaml
2526apiVersion : rbac.authorization.k8s.io/v1
You can’t perform that action at this time.
0 commit comments