Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production Helm Branch TGB Disabled #3207

Merged
merged 10 commits into from
Jan 15, 2025
Prev Previous commit
Next Next commit
fix the image tag
Ben Larabie committed Jan 14, 2025
commit 6d44b320f2ba686ced057102dbb3e5f57278c754
2 changes: 1 addition & 1 deletion helmfile/overrides/notify/admin.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ admin:
FF_ANNUAL_LIMIT: "{{ .StateValues.FF_ANNUAL_LIMIT }}"

image:
tag: {{ env "{{ .StateValues.ADMIN_DOCKER_TAG }}" | default "latest" }}
tag: {{ .StateValues.ADMIN_DOCKER_TAG | default "latest" }}

serviceAccount:
annotations:
2 changes: 1 addition & 1 deletion helmfile/overrides/notify/api.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ api:
SALESFORCE_DOMAIN: "{{ .StateValues.SALESFORCE_DOMAIN }}"

image:
tag: {{ env "{{ .StateValues.API_DOCKER_TAG }}" | default "latest" }}
tag: {{ .StateValues.API_DOCKER_TAG | default "latest" }}

serviceAccount:
annotations:
2 changes: 1 addition & 1 deletion helmfile/overrides/notify/celery.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ celeryCommon:
AWS_PINPOINT_DEFAULT_POOL_ID: "{{ .StateValues.AWS_PINPOINT_DEFAULT_POOL_ID }}"

image:
tag: {{ env "{{ .StateValues.API_DOCKER_TAG }}" | default "latest" }}
tag: {{ .StateValues.API_DOCKER_TAG | default "latest" }}

serviceAccount:
annotations:
4 changes: 2 additions & 2 deletions helmfile/overrides/notify/document-download.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@ documentDownload:
EXTRA_MIME_TYPES: "{{ .StateValues.EXTRA_MIME_TYPES }}"

image:
tag: {{ env "{{ .StateValues.DOCUMENT_DOWNLOAD_DOCKER_TAG }}" | default "latest" }}

tag: {{ .StateValues.DOCUMENT_DOWNLOAD_DOCKER_TAG | default "latest" }}
serviceAccount:
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::{{ requiredEnv "AWS_ACCOUNT_ID" }}:role/document-download-eks-role
2 changes: 1 addition & 1 deletion helmfile/overrides/notify/documentation.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
image:
tag: {{ env "{{ .StateValues.DOCUMENTATION_DOCKER_TAG }}" | default "latest" }}
tag: {{ .StateValues.DOCUMENTATION_DOCKER_TAG | default "latest" }}

targetGroupBinding:
enabled: {{ if eq .Environment.Name "production" }} false {{ else if eq .Environment.Name "staging" }} true {{ else }} true {{ end }}