|
1 | 1 | # dex |
2 | 2 |
|
3 | | -    [](https://artifacthub.io/packages/helm/dex/dex) |
| 3 | +    [](https://artifacthub.io/packages/helm/dex/dex) |
4 | 4 |
|
5 | 5 | OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors. |
6 | 6 |
|
@@ -120,8 +120,11 @@ ingress: |
120 | 120 | | hostAliases | list | `[]` | A list of hosts and IPs that will be injected into the pod's hosts file if specified. See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#hostname-and-name-resolution) | |
121 | 121 | | https.enabled | bool | `false` | Enable the HTTPS endpoint. | |
122 | 122 | | grpc.enabled | bool | `false` | Enable the gRPC endpoint. Read more in the [documentation](https://dexidp.io/docs/api/). | |
123 | | -| configSecret.create | bool | `true` | Enable creating a secret from the values passed to `config`. If set to false, name must point to an existing secret. | |
124 | | -| configSecret.name | string | `""` | The name of the secret to mount as configuration in the pod. If not set and create is true, a name is generated using the fullname template. Must point to secret that contains at least a `config.yaml` key. | |
| 123 | +| configType | string | `"secret"` | The manifest type from which the content of the `config` should be resolved from. Can be `secret` or `configMap`. | |
| 124 | +| configSecret.create | bool | `true` | Enable creating a secret from the values passed to `config`. If set to false, name must point to an existing secret. Only active when `configType` is `secret`. | |
| 125 | +| configSecret.name | string | `""` | The name of the secret to mount as configuration in the pod. If not set and create is true, a name is generated using the fullname template. Must point to secret that contains at least a `config.yaml` key. Only active when `configType` is `secret`. | |
| 126 | +| configMap.create | bool | `true` | Enable creating a configMap from the values passed to `config`. If set to false, name must point to an existing config map. Only active when `configType` is `configMap`. | |
| 127 | +| configMap.name | string | `""` | The name of the configMap to mount as configuration in the pod. If not set and create is true, a name is generated using the fullname template. Must point to configMap that contains at least a `config.yaml` key. Only active when `configType` is `configMap`. | |
125 | 128 | | config | object | `{}` | Application configuration. See the [official documentation](https://dexidp.io/docs/). | |
126 | 129 | | volumes | list | `[]` | Additional storage [volumes](https://kubernetes.io/docs/concepts/storage/volumes/). See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#volumes-1) for details. | |
127 | 130 | | volumeMounts | list | `[]` | Additional [volume mounts](https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/). See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#volumes-1) for details. | |
|
0 commit comments