Skip to content

Commit

Permalink
PR Comments
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Niehoff <github@nickniehoff.net>
Signed-off-by: nniehoff <github@nickniehoff.net>
  • Loading branch information
nniehoff committed May 24, 2022
1 parent 057240f commit a009252
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion charts/dex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ ingress:
| 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) |
| https.enabled | bool | `false` | Enable the HTTPS endpoint. |
| grpc.enabled | bool | `false` | Enable the gRPC endpoint. Read more in the [documentation](https://dexidp.io/docs/api/). |
| configFile | string | `"/etc/dex/config.yaml"` | Full Path to the dex config file. |
| 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. |
| 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. |
| config | object | `{}` | Application configuration. See the [official documentation](https://dexidp.io/docs/). |
Expand Down
2 changes: 1 addition & 1 deletion charts/dex/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
{{- end }}
- --telemetry-addr
- 0.0.0.0:5558
- {{ .Values.configFile }}
- /etc/dex/config.yaml
env:
{{- range $key, $value := .Values.env }}
- name: {{ $key }}
Expand Down
3 changes: 0 additions & 3 deletions charts/dex/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ grpc:
# Read more in the [documentation](https://dexidp.io/docs/api/).
enabled: false

# -- Full Path to the dex config file.
configFile: "/etc/dex/config.yaml"

configSecret:
# -- Enable creating a secret from the values passed to `config`.
# If set to false, name must point to an existing secret.
Expand Down

0 comments on commit a009252

Please sign in to comment.