We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a0342 commit e47f85dCopy full SHA for e47f85d
chart/templates/ui/deployment.yml
@@ -22,8 +22,12 @@ spec:
22
spec:
23
containers:
24
- name: {{ .Release.Name }}-ui
25
- image: {{ printf "%s:%s" .Values.ui.image.repository .Values.ui.image.version }}
26
- imagePullPolicy: {{ .Values.ui.image.imagePullPolicy }}
+ {{- with .Values.ui.image }}
+ image: {{ printf "%s:%s" .repository .version }}
27
+ {{- if .imagePullPolicy }}
28
+ imagePullPolicy: {{ .imagePullPolicy }}
29
+ {{- end -}}
30
+ {{- end }}
31
ports:
32
- name: ui
33
containerPort: 7860
chart/values.yaml
@@ -104,7 +104,7 @@ ui:
104
# version: "0.3.0"
105
repository: azimuth-llm-chat-interface
106
version: latest
107
- imagePullPolicy: IfNotPresent
+ imagePullPolicy:
108
# Service config
109
service:
110
name: web-app
0 commit comments