File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.4.0
18+ version : 0.4.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -177,8 +177,14 @@ data:
177177 {{- if .Values.config.backends.azureblob.account }}
178178 jclouds.identity={{ .Values.config.backends.azureblob.account }}
179179 {{- end }}
180- {{- if or .Values.config.backends.azureblob.key.value .Values.config.backends.azureblob.sasToken.value }}
181- # Credentials will be merged from the secret properties file
180+ {{- /* When a storage account key is set, jclouds.credential is merged in from the
181+ Secret. Otherwise the azureblob-sdk provider authenticates with the SAS token
182+ (jclouds.azureblob.sas, merged from the Secret) or the ambient Azure Workload
183+ Identity credentials injected into the pod. S3Proxy still requires
184+ jclouds.credential in every backend properties file (only filesystem-nio2,
185+ transient-nio2 and google-cloud-storage-sdk are exempt), so emit it empty. */}}
186+ {{- if not .Values.config.backends.azureblob.key.value }}
187+ jclouds.credential=
182188 {{- end }}
183189 {{- range $index, $bucket := .Values.config.backends.azureblob.bucketLocators }}
184190 s3proxy.bucket-locator.{{ add $index 1 }}={{ $bucket }}
You can’t perform that action at this time.
0 commit comments