Skip to content

Commit

Permalink
fix(helm): Fixed helm template error
Browse files Browse the repository at this point in the history
This was also missed because we only generate the yaml in CI/CD for
staging previously. Now we'll generate the yaml for both environments
every time so we know if we break the helm template for either.
  • Loading branch information
elliotcourant committed May 24, 2024
1 parent 08d9bb5 commit 1fe620a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/incoming.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ jobs:
run: |
git config --global --add safe.directory ${PWD}
ENVIRONMENT=my.monetr.dev DEPLOY_VERSION=latest DEPLOY_NAMESPACE=default make generate
ENVIRONMENT=my.monetr.app DEPLOY_VERSION=latest DEPLOY_NAMESPACE=default make generate
local_dev:
name: Local Development
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ jobs:
run: |
git config --global --add safe.directory ${PWD}
ENVIRONMENT=my.monetr.dev DEPLOY_VERSION=latest DEPLOY_NAMESPACE=default make generate
ENVIRONMENT=my.monetr.app DEPLOY_VERSION=latest DEPLOY_NAMESPACE=default make generate
local_dev:
name: Local Development
Expand Down
6 changes: 0 additions & 6 deletions templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,6 @@ data:
{{- toYaml .Values.api.plaid | nindent 6 }}
{{- end }}
# Teller configuration if it is enabled
{{- if .Values.api.teller.enabled }}
teller:
{{- toYaml .Values.api.teller | nindent 6 }}
{{- end }}
{{- if .Values.api.keyManagement }}
keyManagement:
{{- toYaml .Values.api.keyManagement | nindent 6 }}
Expand Down

0 comments on commit 1fe620a

Please sign in to comment.