Add new mount for copying

This commit is contained in:
Jim Nicholson 2023-12-26 14:12:37 -08:00
parent 612fe6738a
commit 2a9071d190

View File

@ -24,6 +24,9 @@ spec:
- name: heimdall-storage - name: heimdall-storage
persistentVolumeClaim: persistentVolumeClaim:
claimName: heimdall-storage claimName: heimdall-storage
- name: heimdall-storage-new
persistentVolumeClaim:
claimName: heimdall-storage-new
containers: containers:
- image: ghcr.io/linuxserver/heimdall:2.5.8 # < the name of the docker image we will use - image: ghcr.io/linuxserver/heimdall:2.5.8 # < the name of the docker image we will use
name: heimdall # < name of container name: heimdall # < name of container
@ -42,3 +45,5 @@ spec:
volumeMounts: # < the volume mount in the container. Look at the relation volumelabel->pvc->pv volumeMounts: # < the volume mount in the container. Look at the relation volumelabel->pvc->pv
- mountPath: /config # < mount location in the container - mountPath: /config # < mount location in the container
name: heimdall-storage # < volumelabel configured earlier in the yaml file name: heimdall-storage # < volumelabel configured earlier in the yaml file
- mountPath: /config.new # < mount location in the container
name: heimdall-storage-new