File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ their default values.
86
86
| ` s3.encrypt ` | Store images in encrypted format | ` nil ` |
87
87
| ` s3.secure ` | Use HTTPS | ` nil ` |
88
88
| ` 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 ` |
90
90
| ` swift.authurl ` | Swift authurl | ` nil ` |
91
91
| ` swift.container ` | Swift container | ` nil ` |
92
92
| ` proxy.enabled ` | If true, registry will function as a proxy/mirror | ` false ` |
Original file line number Diff line number Diff line change @@ -108,9 +108,9 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this
108
108
value: { { .Values.s3.forcepathstyle | quote } }
109
109
{ {- end -} }
110
110
111
- { {- if .Values.s3.insecureSkipVerify } }
111
+ { {- if .Values.s3.skipverify } }
112
112
- name: REGISTRY_STORAGE_S3_SKIPVERIFY
113
- value: { { .Values.s3.insecureSkipVerify | quote } }
113
+ value: { { .Values.s3.skipverify | quote } }
114
114
{ {- end -} }
115
115
116
116
{ {- else if eq .Values.storage " swift" } }
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ secrets:
105
105
# encrypt: false
106
106
# secure: true
107
107
# forcepathstyle: true
108
- # insecureSkipVerify : true
108
+ # skipverify : true
109
109
110
110
# Options for swift storage type:
111
111
# swift:
You can’t perform that action at this time.
0 commit comments