Skip to content
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
1 change: 1 addition & 0 deletions .github/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ scopes:
- cli
- ci
- deps
- helm

types:
- feat
Expand Down
6 changes: 6 additions & 0 deletions deploy/stackit/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ spec:
- name: STACKIT_SERVICE_ACCOUNT_KEY_PATH
value: "{{ .Values.stackitSaAuthentication.mountPath}}/{{ .Values.stackitSaAuthentication.fileName}}"
{{- end }}
{{- if .Values.extraEnv }}
{{- range .Values.extraEnv }}
- name: {{ .name }}
value: {{ .value | quote }}
{{- end }}
{{- end }}
ports:
- name: https
containerPort: 8443
Expand Down
9 changes: 9 additions & 0 deletions deploy/stackit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,12 @@ additionalVolumeMounts: []
# - name: extra-config
# mountPath: /etc/extra-config
# readOnly: true

# -- Placeholder for additional env-variables. Apply via "--set"-command or
# -- delete the next line and add your variables as in the commented example below.
extraEnv: []
# extraEnv:
# - name: HTTP_PROXY
# value: "127.0.0.1"
# - name: ANOTHER_VAR
# value: "some-value"
Loading