Skip to content

Commit

Permalink
flyte-core helm chart fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexifm committed Mar 5, 2023
1 parent 3725304 commit 69e3277
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flyte-core/templates/admin/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ spec:
name: clusters-config-volume
- mountPath: /etc/secrets/
name: admin-secrets
{{- with .Values.flyteadmin.additionalVolumeMounts -}}
{{ tpl (toYaml .) $ | nindent 10 }}
{{- end }}
{{- end }}
- name: generate-secrets
image: "{{ .Values.flyteadmin.image.repository }}:{{ .Values.flyteadmin.image.tag }}"
Expand Down
6 changes: 6 additions & 0 deletions flyte-core/templates/clusterresourcesync/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
- mountPath: /var/run/credentials
name: flyte-admin-secrets
{{- end }}
{{- with .Values.flyteadmin.additionalVolumeMounts -}}
{{ tpl (toYaml .) $ | nindent 10 }}
{{- end }}
serviceAccountName: {{ .Values.cluster_resource_manager.service_account_name }}
volumes: {{- include "databaseSecret.volume" . | nindent 8 }}
- configMap:
Expand All @@ -61,4 +64,7 @@ spec:
secret:
secretName: flyte-secret-auth
{{- end }}
{{- with .Values.flyteadmin.additionalVolumes -}}
{{ tpl (toYaml .) $ | nindent 8 }}
{{- end }}
{{- end }}

0 comments on commit 69e3277

Please sign in to comment.