Skip to content

Commit d344f36

Browse files
committed
Change name to match the config variable
1 parent 8b8e964 commit d344f36

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ their default values.
8686
| `s3.encrypt` | Store images in encrypted format | `nil` |
8787
| `s3.secure` | Use HTTPS | `nil` |
8888
| `s3.forcepathstyle` | Use path-style addressing, needed for some s3 compatible storage (minio) | `nil` |
89-
| `s3.insecureSkipVerify` | Allows connection to s3 storage using TLS with untrusted/self-signed certificate | `nil` |
89+
| `s3.skipverify` | Allows connection to s3 storage using TLS with untrusted/self-signed certificate | `nil` |
9090
| `swift.authurl` | Swift authurl | `nil` |
9191
| `swift.container` | Swift container | `nil` |
9292
| `proxy.enabled` | If true, registry will function as a proxy/mirror | `false` |

templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this
108108
value: {{ .Values.s3.forcepathstyle | quote }}
109109
{{- end -}}
110110

111-
{{- if .Values.s3.insecureSkipVerify }}
111+
{{- if .Values.s3.skipverify }}
112112
- name: REGISTRY_STORAGE_S3_SKIPVERIFY
113-
value: {{ .Values.s3.insecureSkipVerify | quote }}
113+
value: {{ .Values.s3.skipverify | quote }}
114114
{{- end -}}
115115

116116
{{- else if eq .Values.storage "swift" }}

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ secrets:
105105
# encrypt: false
106106
# secure: true
107107
# forcepathstyle: true
108-
# insecureSkipVerify: true
108+
# skipverify: true
109109

110110
# Options for swift storage type:
111111
# swift:

0 commit comments

Comments
 (0)