Skip to content

Commit

Permalink
Update kanister helm chart for profile to Assign empty string to unsp…
Browse files Browse the repository at this point in the history
…ecified field (#5551)

* Assign empty string to unspecified field

* Address review suggestion
  • Loading branch information
SupriyaKasten authored and Ilya Kislenko committed May 3, 2019
1 parent cc07b9b commit a960a0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions helm/profile/templates/profile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ metadata:
location:
type: {{ .Values.location.type | quote }}
bucket: {{ .Values.location.bucket | quote }}
endpoint: {{ .Values.location.endpoint | quote }}
prefix: {{ .Values.location.prefix | quote }}
region: {{ .Values.location.region | quote }}
endpoint: {{ .Values.location.endpoint }}
prefix: {{ .Values.location.prefix }}
region: {{ .Values.location.region }}
credential:
type: keyPair
keyPair:
Expand Down
6 changes: 3 additions & 3 deletions helm/profile/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ profileName:
location:
type:
bucket:
endpoint:
prefix:
region:
endpoint: ""
prefix: ""
region: ""

aws:
accessKey:
Expand Down

0 comments on commit a960a0f

Please sign in to comment.