Add new config.jwksUri option to oidc-discovery chart (#547)

Signed-off-by: Spencer Hitchins <[email protected]>
Co-authored-by: kfox1111 <[email protected]>
This commit is contained in:
RedneckEdamame
2025-03-31 18:13:23 +00:00
committed by GitHub
co-authored by kfox1111
parent b330e209d7
commit 25967baeef
3 changed files with 7 additions and 0 deletions
@@ -77,6 +77,7 @@ A Helm chart to install the SPIFFE OIDC discovery provider.
| `jwtIssuer` | Path to JWT issuer. Defaults to oidc-discovery.$trustDomain if unset | `""` |
| `config.logLevel` | The log level, valid values are "debug", "info", "warn", and "error" | `info` |
| `config.jwtDomain` | The JWT domain. Defaults to oidc-discovery.$jwtIssuer URL-parsed host if unset | `""` |
| `config.jwksUri` | The JWKS URI | `""` |
| `config.additionalDomains` | Add additional domains that can be used for oidc discovery | `[]` |
| `imagePullSecrets` | Image pull secret names | `[]` |
| `nameOverride` | Name override | `""` |
@@ -40,6 +40,10 @@ serving_cert_file:
addr: ':8443'
{{- end }}
{{- if .Values.config.jwksUri}}
jwks_uri: {{ .Values.config.jwksUri | quote }}
{{- end }}
workload_api:
socket_path: {{ include "spiffe-oidc-discovery-provider.workload-api-socket-path" . | quote }}
trust_domain: {{ include "spire-lib.trust-domain" . | quote }}
@@ -194,6 +194,8 @@ config:
logLevel: info
## @param config.jwtDomain [string] The JWT domain. Defaults to oidc-discovery.$jwtIssuer URL-parsed host if unset
jwtDomain: ""
## @param config.jwksUri [string] The JWKS URI
jwksUri: ""
## @param config.additionalDomains [array] Add additional domains that can be used for oidc discovery
additionalDomains: []
# - localhost