File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : " 1.14.0"
33description : Docker Registry V2 authentication server
44name : docker-auth
5- version : 1.14.0
5+ version : 1.14.1
66kubeVersion : " >=1.25"
77keywords :
88- docker
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ helm uninstall docker-auth
5757| ** Authentication** | | |
5858| ` configmap.data.token.issuer ` | Token issuer name (must match registry config) | ` "Acme auth server" ` |
5959| ` configmap.data.token.expiration ` | Token expiration time in seconds | ` 900 ` |
60+ | ` configmap.data.token.disableLegacyKeyId ` | Disables legacy key IDs for registry v3 | ` false ` |
6061| ` configmap.data.users ` | Static user definitions | See values.yaml |
6162| ` configmap.data.acl ` | Access control list rules | See values.yaml |
6263| ** TLS/Certificates** | | |
Original file line number Diff line number Diff line change 1515{{- else }}
1616 certificate : " /config/certs/server.pem"
1717 key : " /config/certs/server.key"
18+ {{- end }}
19+ {{- if .Values.configmap.data.token.disableLegacyKeyId }}
20+ disable_legacy_key_id : {{ .Values.configmap.data.token.disableLegacyKeyId }}
1821{{- end }}
1922 users :
2023 {{ .Values.configmap.data.users | toYaml | nindent 6 }}
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ configmap:
2525 token :
2626 issuer : " Acme auth server"
2727 expiration : 900
28+ disableLegacyKeyId : false
2829 users :
2930 " admin " :
3031 password : " $2y$05$LO.vzwpWC5LZGqThvEfznu8qhb5SGqvBSWY1J3yZ4AxtMRZ3kN5jC" # password: badmin
You can’t perform that action at this time.
0 commit comments