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

feat: support image pull secrets in genai #9653

Merged
merged 1 commit into from
Jul 12, 2024
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
8 changes: 6 additions & 2 deletions helm/charts/determined/templates/genai/genai-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ spec:
value: genai-backend-service-{{ .Release.Name }}.{{ .Release.Namespace }}
- name: GENAI_HOST_PORT
value: {{ .Values.genai.port | quote }}
{{- if .Values.genai.imagePullSecretName}}
- name: GENAI_IMAGE_PULL_SECRET_NAME
value: {{ .Values.genai.imagePullSecretName }}
{{- end}}
volumeMounts:
{{- if .Values.genai.sharedFSHostPath }}
- name: genai-shared-host-path
Expand Down Expand Up @@ -106,9 +110,9 @@ spec:
memory: {{ .Values.genai.memLimit | quote }}
{{- end}}
{{- end}}
{{- if .Values.imagePullSecretName}}
{{- if .Values.genai.imagePullSecretName}}
imagePullSecrets:
- name: {{ .Values.imagePullSecretName }}
- name: {{ .Values.genai.imagePullSecretName }}
{{- end}}
volumes:
{{- if .Values.genai.sharedFSHostPath }}
Expand Down
Loading