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 207ab61 commit 0e34866Copy full SHA for 0e34866
charts/nextcloud/templates/nextcloud-ai-worker.yaml
@@ -49,7 +49,7 @@ spec:
49
{{- toYaml .Values.aiWorker.podSecurityContext | nindent 8 }}
50
initContainers:
51
- name: wait-for-service
52
- image: alpine/curl
+ image: {{ .Values.aiWorker.image.repository }}:{{ .Values.aiWorker.image.tag }}
53
command:
54
- sh
55
- -c
charts/nextcloud/values.yaml
@@ -689,6 +689,11 @@ dnsConfig: {}
689
aiWorker:
690
enabled: false
691
692
+ image:
693
+ repository: alpine/curl
694
+ tag: latest
695
+ pullPolicy: IfNotPresent
696
+
697
# Number of replicas to be deployed
698
replicaCount: 1
699
0 commit comments