Skip to content

Commit

Permalink
Support frontend config values (helm#17074)
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Jennings <jordanjennings@users.noreply.github.com>
  • Loading branch information
jordanjennings authored and Ram Sri committed Sep 30, 2019
1 parent c483e76 commit 578d7e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/dex/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: dex
version: 2.2.0
version: 2.3.0
appVersion: 2.18.0
description: CoreOS Dex
keywords:
Expand Down
1 change: 1 addition & 0 deletions stable/dex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ Parameters introduced starting from v2
| `certs.web.pod.annotations` | Annotations for the pod created by the `web-certs` job | `{}` |
| `config.connectors` | Maps to the dex config `connectors` dict param | `{}` |
| `config.enablePasswordDB` | Maps to the dex config `enablePasswordDB` param | `true` |
| `config.frontend` | Maps to the dex config `frontend` dict param | `""` |
| `config.grpc.address` | dex grpc listen address | `127.0.0.1` |
| `config.grpc.tlsCert` | Maps to the dex config `grpc.tlsCert` param | `/etc/dex/tls/grpc/server/tls.crt` |
| `config.grpc.tlsClientCA` | Maps to the dex config `grpc.tlsClientCA` param | `/etc/dex/tls/grpc/ca/tls.crt` |
Expand Down
3 changes: 3 additions & 0 deletions stable/dex/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,8 @@ stringData:
{{- if .staticPasswords }}
staticPasswords:
{{ toYaml .staticPasswords | indent 4 }}
{{- end }}
{{- if .frontend }}
frontend: {{ toYaml .frontend | nindent 6 }}
{{- end }}
{{- end }}
3 changes: 3 additions & 0 deletions stable/dex/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,6 @@ config:
# hash: "$2a$10$2b2cU8CPhOTaGrs1HRQuAueS7JTT5ZHsHSzYiFPm1leZck7Mc8T4W"
# username: "admin"
# userID: "08a8684b-db88-4b73-90a9-3cd1661f5466"

# frontend:
# logoURL: https://example.com/yourlogo.png

0 comments on commit 578d7e0

Please sign in to comment.