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

fix: always add analytic env var on console deployment #148

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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
4 changes: 2 additions & 2 deletions charts/console/templates/console/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ spec:
value: /conduktor/config/platform-config.yaml
- name: CDK_ONBOARDING_MODE
value: never
- name: DEPLOYED_BY
value: HelmChart/{{ .Chart.Version }}
- name: CDK_LISTENING_PORT
value: {{ .Values.platform.containerPorts.http | quote }}
{{- if $tls_enabled }}
- name: CDK_PLATFORM_HTTPS_CERT_PATH
value: /conduktor/https/tls.crt
- name: CDK_PLATFORM_HTTPS_KEY_PATH
value: /conduktor/https/tls.key
- name: DEPLOYED_BY
value: HelmChart/{{ .Chart.Version }}
{{- end }}
{{- if .Values.platform.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.platform.extraEnvVars "context" $) | nindent 12 }}
Expand Down
Loading