Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/docker-auth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "1.14.0"
description: Docker Registry V2 authentication server
name: docker-auth
version: 1.14.0
version: 1.14.1
kubeVersion: ">=1.25"
keywords:
- docker
Expand Down
1 change: 1 addition & 0 deletions chart/docker-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ helm uninstall docker-auth
| **Authentication** | | |
| `configmap.data.token.issuer` | Token issuer name (must match registry config) | `"Acme auth server"` |
| `configmap.data.token.expiration` | Token expiration time in seconds | `900` |
| `configmap.data.token.disableLegacyKeyId` | Disables legacy key IDs for registry v3 | `false` |
| `configmap.data.users` | Static user definitions | See values.yaml |
| `configmap.data.acl` | Access control list rules | See values.yaml |
| **TLS/Certificates** | | |
Expand Down
3 changes: 3 additions & 0 deletions chart/docker-auth/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ data:
{{- else }}
certificate: "/config/certs/server.pem"
key: "/config/certs/server.key"
{{- end }}
{{- if .Values.configmap.data.token.disableLegacyKeyId }}
disable_legacy_key_id: {{ .Values.configmap.data.token.disableLegacyKeyId }}
{{- end }}
users:
{{ .Values.configmap.data.users | toYaml | nindent 6 }}
Expand Down
1 change: 1 addition & 0 deletions chart/docker-auth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ configmap:
token:
issuer: "Acme auth server"
expiration: 900
disableLegacyKeyId: false
users:
"admin":
password: "$2y$05$LO.vzwpWC5LZGqThvEfznu8qhb5SGqvBSWY1J3yZ4AxtMRZ3kN5jC" # password: badmin
Expand Down
Loading