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 @@ -85,6 +85,7 @@ their default values.
85
85
| ` s3.rootdirectory ` | S3 prefix that is applied to allow you to segment data | ` nil ` |
86
86
| ` s3.encrypt ` | Store images in encrypted format | ` nil ` |
87
87
| ` s3.secure ` | Use HTTPS | ` nil ` |
88
+ | ` s3.forcepathstyle ` | Use path-style addressing, needed for some s3 compatible storage (minio) | ` nil ` |
88
89
| ` swift.authurl ` | Swift authurl | ` nil ` |
89
90
| ` swift.container ` | Swift container | ` nil ` |
90
91
| ` proxy.enabled ` | If true, registry will function as a proxy/mirror | ` false ` |
Original file line number Diff line number Diff line change @@ -103,6 +103,11 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this
103
103
value: { { .Values.s3.secure | quote } }
104
104
{ {- end -} }
105
105
106
+ { {- if .Values.s3.forcepathstyle } }
107
+ - name: REGISTRY_STORAGE_S3_FORCEPATHSTYLE
108
+ value: { { .Values.s3.forcepathstyle | quote } }
109
+ { {- end -} }
110
+
106
111
{ {- else if eq .Values.storage " swift" } }
107
112
- name: REGISTRY_STORAGE_SWIFT_AUTHURL
108
113
value: { { required " .Values.swift.authurl is required" .Values.swift.authurl } }
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ secrets:
104
104
# rootdirectory: /object/prefix
105
105
# encrypt: false
106
106
# secure: true
107
+ # forcepathstyle: true
107
108
108
109
# Options for swift storage type:
109
110
# swift:
You can’t perform that action at this time.
0 commit comments