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

Add extra env to helm template #96

Merged
merged 4 commits into from
Oct 5, 2023
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
15 changes: 14 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,19 @@ jobs:
exit 1
fi

cat << EOF >> test-values.yaml
extraEnv:
- name: TEST_EXTRA_ENV
value: test-extra-env
EOF

output=$(helm template oci://ttl.sh/automated-${{ github.run_id }}/replicated --version 0.0.0 --values test-values.yaml)

if ! echo $output | grep -q 'TEST_EXTRA_ENV'; then
printf "user-set extraEnv should exist:\n\n%s\n\n" "$output"
exit 1
fi

create-test-release:
runs-on: ubuntu-22.04
needs: [ build-and-push-e2e ]
Expand All @@ -136,7 +149,7 @@ jobs:

- name: Create release
id: create-release
uses: replicatedhq/replicated-actions/create-release@v1.1.1
uses: replicatedhq/replicated-actions/create-release@v1.5.2
with:
app-slug: ${{ env.APP_SLUG }}
api-token: ${{ secrets.C11Y_MATRIX_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions chart/templates/replicated-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ spec:
readOnly: true
subPath: config.yaml
env:
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 8 }}
{{- end }}
- name: REPLICATED_NAMESPACE
valueFrom:
fieldRef:
Expand Down
2 changes: 2 additions & 0 deletions chart/values.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ service:
type: ClusterIP
port: 3000

extraEnv: []

# "integration" mode related values.
integration:
licenseID: ""
Expand Down
Loading