Add manual (static) provisioning example
This commit is contained in:
parent
1f29b29459
commit
426a9623b6
3 changed files with 48 additions and 1 deletions
45
deploy/kubernetes/examples/pvc-manual.yaml
Normal file
45
deploy/kubernetes/examples/pvc-manual.yaml
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Statically provisioned PVC:
|
||||||
|
# An existing bucket or path inside bucket manually created
|
||||||
|
# by the administrator beforehand will be bound to the PVC,
|
||||||
|
# and it won't be removed when you remove the PV
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolume
|
||||||
|
metadata:
|
||||||
|
name: manualbucket/path
|
||||||
|
spec:
|
||||||
|
storageClassName: csi-s3
|
||||||
|
capacity:
|
||||||
|
storage: 10Gi
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
claimRef:
|
||||||
|
namespace: default
|
||||||
|
name: manualclaim
|
||||||
|
csi:
|
||||||
|
driver: ch.ctrox.csi.s3-driver
|
||||||
|
controllerPublishSecretRef:
|
||||||
|
name: csi-s3-secret
|
||||||
|
namespace: kube-system
|
||||||
|
nodePublishSecretRef:
|
||||||
|
name: csi-s3-secret
|
||||||
|
namespace: kube-system
|
||||||
|
nodeStageSecretRef:
|
||||||
|
name: csi-s3-secret
|
||||||
|
namespace: kube-system
|
||||||
|
volumeAttributes:
|
||||||
|
capacity: 10Gi
|
||||||
|
mounter: geesefs
|
||||||
|
volumeHandle: manualbucket/path
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: csi-s3-pvc
|
||||||
|
spec:
|
||||||
|
# Empty storage class disables dynamic provisioning
|
||||||
|
storageClassName: ""
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 10Gi
|
|
@ -1,3 +1,6 @@
|
||||||
|
# Dynamically provisioned PVC:
|
||||||
|
# A bucket or path inside bucket will be created automatically
|
||||||
|
# for the PV and removed when the PV will be removed
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -125,7 +125,6 @@ func (cs *controllerServer) DeleteVolume(ctx context.Context, req *csi.DeleteVol
|
||||||
return nil, fmt.Errorf("failed to initialize S3 client: %s", err)
|
return nil, fmt.Errorf("failed to initialize S3 client: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME Don't delete the bucket if it existed initially
|
|
||||||
var deleteErr error
|
var deleteErr error
|
||||||
if prefix == "" {
|
if prefix == "" {
|
||||||
// prefix is empty, we delete the whole bucket
|
// prefix is empty, we delete the whole bucket
|
||||||
|
|
Loading…
Reference in a new issue