fix url #2
This commit is contained in:
@@ -8,4 +8,5 @@ parameters:
|
|||||||
protocol: nvmf
|
protocol: nvmf
|
||||||
repl: "3"
|
repl: "3"
|
||||||
provisioner: io.openebs.csi-mayastor
|
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:
|
config:
|
||||||
region: nas
|
region: nas
|
||||||
s3ForcePathStyle: "true"
|
s3ForcePathStyle: "true"
|
||||||
s3Url: http://192.168.10.1:9001
|
s3Url: http://192.168.10.1:9000
|
||||||
credential:
|
credential:
|
||||||
key: nas-s3
|
key: nas-s3
|
||||||
name: secret-s3
|
name: secret-s3
|
||||||
|
|||||||
Reference in New Issue
Block a user