From 2e9c2f79d0f775df3c7b48f4a5d9b7282eaa9855 Mon Sep 17 00:00:00 2001 From: aby913 Date: Tue, 23 Sep 2025 00:44:48 +0800 Subject: [PATCH] backup: backup cache path invalid, password get failed (#1862) --- .../.olares/config/cluster/deploy/backup_server.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/framework/backup-server/.olares/config/cluster/deploy/backup_server.yaml b/framework/backup-server/.olares/config/cluster/deploy/backup_server.yaml index 1bd68363f..bd7e2d12f 100644 --- a/framework/backup-server/.olares/config/cluster/deploy/backup_server.yaml +++ b/framework/backup-server/.olares/config/cluster/deploy/backup_server.yaml @@ -1,6 +1,6 @@ -{{ $backupVersion := "0.3.46" }} +{{ $backupVersion := "0.3.47" }} {{ $backup_server_rootpath := printf "%s%s" .Values.rootPath "/rootfs/backup-server" }} {{- $backup_nats_secret := (lookup "v1" "Secret" .Release.Namespace "backup-nats-secret") -}} @@ -58,6 +58,9 @@ spec: - name: rootfs hostPath: path: '{{ .Values.rootPath }}/rootfs' + - name: appcache + hostPath: + path: '{{ .Values.rootPath }}/userdata' - name: shares hostPath: path: '{{ .Values.rootPath }}/share' @@ -123,6 +126,8 @@ spec: volumeMounts: - mountPath: /rootfs name: rootfs + - mountPath: /appcache + name: appcache - mountPath: /shares mountPropagation: Bidirectional name: shares @@ -177,6 +182,8 @@ spec: volumeMounts: - mountPath: /rootfs name: rootfs + - mountPath: /appcache + name: appcache - mountPath: /shares mountPropagation: Bidirectional name: shares