File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ their default values.
87
87
| ` s3.encrypt ` | Store images in encrypted format | ` nil ` |
88
88
| ` s3.secure ` | Use HTTPS | ` nil ` |
89
89
| ` s3.forcepathstyle ` | Use path-style addressing, needed for some s3 compatible storage (minio) | ` nil ` |
90
+ | ` s3.skipverify ` | Allows connection to s3 storage using TLS with untrusted/self-signed certificate | ` nil ` |
90
91
| ` swift.authurl ` | Swift authurl | ` nil ` |
91
92
| ` swift.container ` | Swift container | ` nil ` |
92
93
| ` proxy.enabled ` | If true, registry will function as a proxy/mirror | ` false ` |
Original file line number Diff line number Diff line change @@ -108,6 +108,11 @@ 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.skipverify } }
112
+ - name: REGISTRY_STORAGE_S3_SKIPVERIFY
113
+ value: { { .Values.s3.skipverify | quote } }
114
+ { {- end -} }
115
+
111
116
{ {- else if eq .Values.storage " swift" } }
112
117
- name: REGISTRY_STORAGE_SWIFT_AUTHURL
113
118
value: { { required " .Values.swift.authurl is required" .Values.swift.authurl } }
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ secrets:
105
105
# encrypt: false
106
106
# secure: true
107
107
# forcepathstyle: true
108
+ # skipverify: true
108
109
109
110
# Options for swift storage type:
110
111
# swift:
You can’t perform that action at this time.
0 commit comments