Skip to content

Commit

Permalink
fix(charts): azure storage conn string
Browse files Browse the repository at this point in the history
The top-level workflow secret must include this value, in order to use it downstream in controller chart
  • Loading branch information
Kingdon Barrett authored and Kingdon Barrett committed Oct 14, 2020
1 parent 8b92867 commit c7a316c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions charts/workflow/templates/objectstorage-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ data: {{ if eq .Values.global.storage "gcs"}}
builder-bucket: {{.Values.gcs.builder_bucket | b64enc }}
registry-bucket: {{.Values.gcs.registry_bucket | b64enc }}
database-bucket: {{.Values.gcs.database_bucket | b64enc }}{{ else if eq .Values.global.storage "azure"}}
azure-storage-conn-string: {{ .Values.azure.storage_conn_string | b64enc }}
accountname: {{.Values.azure.accountname | b64enc }}
accountkey: {{ .Values.azure.accountkey | b64enc }}
builder-container: {{ .Values.azure.builder_container | b64enc }}
Expand Down
2 changes: 1 addition & 1 deletion charts/workflow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ azure:
# Starting with hephy v2.22.1 only AZURE_STORAGE_CONNECTION_STRING is
# necesssary for the postgres wal-e db blob backups and accountname and
# accountkey will not be used.
azure-storage-conn-string: "YOUR_AZURE_STORAGE_CONNECTION_STRING"
storage_conn_string: "YOUR_AZURE_STORAGE_CONNECTION_STRING"
accountname: "YOUR ACCOUNT NAME"
accountkey: "YOUR ACCOUNT KEY"
registry_container: "your-registry-container-name"
Expand Down

0 comments on commit c7a316c

Please sign in to comment.