mirror of
https://github.com/beclab/Olares
synced 2026-05-24 09:18:23 +00:00
backup: backup cache path invalid, password get failed (#1862)
This commit is contained in:
parent
5b1438413c
commit
2e9c2f79d0
1 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue