Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Update helm chart to add env property for deployments #72

Merged
merged 1 commit into from
Apr 12, 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
2 changes: 1 addition & 1 deletion charts/conductor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 1 addition & 0 deletions charts/conductor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ spec:
value: {{ .Values.dataPlaneBasedomain }}
- name: RUST_LOG
value: {{ .Values.logLevel }}
{{- if .Values.env }}{{ .Values.env | default list | toYaml | nindent 10 }}{{- end }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down
4 changes: 1 addition & 3 deletions charts/conductor/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
controlPlaneEventsQueue: ~
dataPlaneEventsQueue: ~
dataPlaneBasedomain: ~
logLevel: info

externalSecrets:
Expand Down Expand Up @@ -46,3 +43,4 @@ securityContext: {}
nodeSelector: {}
tolerations: []
affinity: {}
env: {}