Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/accounts-ui/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 12 }}
env:
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/billing/templates/aggregator/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 16 }}
env:
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/billing/templates/aggregator/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.name
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/billing/templates/processor/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.name
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/marketplace-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
{{- with .Values.env }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/platform-links/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- if and (include "settings.objstoreSecretName" .) (eq $infra.objstore.provider "gcs") }}
{{- if (include "settings.objstoreSecretName" .) }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: {{ $infra.objstore.mountPath }}/sa.json
{{- end }}
Expand Down
Loading