From fc6f68d887196148da11a4fc1db4040380f64c88 Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Thu, 13 Feb 2025 14:20:29 +0100 Subject: [PATCH] fix: fix registry mount path --- charts/yolo-registry/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/yolo-registry/templates/deployment.yaml b/charts/yolo-registry/templates/deployment.yaml index a7a43093..88da5be2 100644 --- a/charts/yolo-registry/templates/deployment.yaml +++ b/charts/yolo-registry/templates/deployment.yaml @@ -52,7 +52,7 @@ spec: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: - name: data - mountPath: /data + mountPath: /var/lib/registry {{- if .Values.init.enabled }} initContainers: - name: init @@ -60,7 +60,7 @@ spec: command: {{- toYaml .Values.init.command | nindent 10 }} volumeMounts: - name: data - mountPath: /data + mountPath: /var/lib/registry {{- end }} volumes: - name: data