EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 3623f35b authored by Fabian Schindler's avatar Fabian Schindler
Browse files

Fixing check for `validate_bucket_name` in chart

parent 18593d82
No related branches found
No related tags found
1 merge request!55Production release 1.2.0
......@@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.14
version: 0.3.15
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
......
......@@ -18,7 +18,7 @@ sources:
endpoint_url: {{ .endpoint_url }}
access_key_id: {{ .access_key_id }}
secret_access_key: {{ .secret_access_key }}
validate_bucket_name: {{ .validate_bucket_name | default true }}
validate_bucket_name: {{ if hasKey . "validate_bucket_name" }}{{ .validate_bucket_name }}{{ else }}true{{ end }}
# TODO: 'client_kwargs'
# region: {{ .region }}
{{- end }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment