fix url #2
This commit is contained in:
@@ -8,4 +8,5 @@ parameters:
|
||||
protocol: nvmf
|
||||
repl: "3"
|
||||
provisioner: io.openebs.csi-mayastor
|
||||
reclaimPolicy: Retain
|
||||
reclaimPolicy: Retain
|
||||
allowVolumeExpansion: true
|
||||
29
transfer/transfer-pod.yaml
Normal file
29
transfer/transfer-pod.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: uptime-kuma-pvc
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
storageClassName: openebs-3-replicas
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: nfs-transfer-pod
|
||||
spec:
|
||||
containers:
|
||||
- name: busybox
|
||||
image: busybox
|
||||
command: [ "sleep", "3600" ] # Damit der Pod nicht sofort beendet wird
|
||||
volumeMounts:
|
||||
- mountPath: /mnt/nas
|
||||
name: transfer
|
||||
volumes:
|
||||
- name: transfer
|
||||
persistentVolumeClaim:
|
||||
claimName: uptime-kuma-pvc
|
||||
@@ -3658,7 +3658,7 @@ spec:
|
||||
config:
|
||||
region: nas
|
||||
s3ForcePathStyle: "true"
|
||||
s3Url: http://192.168.10.1:9001
|
||||
s3Url: http://192.168.10.1:9000
|
||||
credential:
|
||||
key: nas-s3
|
||||
name: secret-s3
|
||||
|
||||
Reference in New Issue
Block a user