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:
co-authored by
kfox1111
parent
b330e209d7
commit
25967baeef
@@ -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 | `""` |
|
| `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.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.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 | `[]` |
|
| `config.additionalDomains` | Add additional domains that can be used for oidc discovery | `[]` |
|
||||||
| `imagePullSecrets` | Image pull secret names | `[]` |
|
| `imagePullSecrets` | Image pull secret names | `[]` |
|
||||||
| `nameOverride` | Name override | `""` |
|
| `nameOverride` | Name override | `""` |
|
||||||
|
|||||||
@@ -40,6 +40,10 @@ serving_cert_file:
|
|||||||
addr: ':8443'
|
addr: ':8443'
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{- if .Values.config.jwksUri}}
|
||||||
|
jwks_uri: {{ .Values.config.jwksUri | quote }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
workload_api:
|
workload_api:
|
||||||
socket_path: {{ include "spiffe-oidc-discovery-provider.workload-api-socket-path" . | quote }}
|
socket_path: {{ include "spiffe-oidc-discovery-provider.workload-api-socket-path" . | quote }}
|
||||||
trust_domain: {{ include "spire-lib.trust-domain" . | quote }}
|
trust_domain: {{ include "spire-lib.trust-domain" . | quote }}
|
||||||
|
|||||||
@@ -194,6 +194,8 @@ config:
|
|||||||
logLevel: info
|
logLevel: info
|
||||||
## @param config.jwtDomain [string] The JWT domain. Defaults to oidc-discovery.$jwtIssuer URL-parsed host if unset
|
## @param config.jwtDomain [string] The JWT domain. Defaults to oidc-discovery.$jwtIssuer URL-parsed host if unset
|
||||||
jwtDomain: ""
|
jwtDomain: ""
|
||||||
|
## @param config.jwksUri [string] The JWKS URI
|
||||||
|
jwksUri: ""
|
||||||
## @param config.additionalDomains [array] Add additional domains that can be used for oidc discovery
|
## @param config.additionalDomains [array] Add additional domains that can be used for oidc discovery
|
||||||
additionalDomains: []
|
additionalDomains: []
|
||||||
# - localhost
|
# - localhost
|
||||||
|
|||||||
Reference in New Issue
Block a user