122 lines
2.7 KiB
Plaintext
122 lines
2.7 KiB
Plaintext
cat <<EOF > csi-config-map.yaml
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
data:
|
|
config.json: |-
|
|
[
|
|
{
|
|
"clusterID": "004ee854-86cc-4ddc-b7d6-75e4fe962296",
|
|
"monitors": [
|
|
"72.20.1.33:6789",
|
|
"72.20.1.34:6789",
|
|
"72.20.1.35:6789"
|
|
]
|
|
}
|
|
]
|
|
metadata:
|
|
name: ceph-csi-config
|
|
EOF
|
|
kubectl apply -f csi-config-map.yaml
|
|
|
|
|
|
cat <<EOF > csi-kms-config-map.yaml
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
data:
|
|
config.json: |-
|
|
{}
|
|
metadata:
|
|
name: ceph-csi-encryption-kms-config
|
|
EOF
|
|
kubectl apply -f csi-kms-config-map.yaml
|
|
|
|
|
|
cat <<EOF > ceph-config-map.yaml
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
data:
|
|
ceph.conf: |
|
|
[global]
|
|
auth_cluster_required = cephx
|
|
auth_service_required = cephx
|
|
auth_client_required = cephx
|
|
# keyring is a required key and its value should be empty
|
|
keyring: |
|
|
metadata:
|
|
name: ceph-config
|
|
EOF
|
|
kubectl apply -f ceph-config-map.yaml
|
|
|
|
|
|
|
|
cat <<EOF > csi-rbd-secret.yaml
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: csi-rbd-secret
|
|
namespace: default
|
|
stringData:
|
|
userID: kubernetes
|
|
userKey: AQD2zo5pm8aZIRAAPzWS+dROeX7iJtv5EukfKA==
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kubectl apply -f https://raw.githubusercontent.com/ceph/ceph-csi/master/deploy/rbd/kubernetes/csi-provisioner-rbac.yaml
|
|
kubectl apply -f https://raw.githubusercontent.com/ceph/ceph-csi/master/deploy/rbd/kubernetes/csi-nodeplugin-rbac.yaml
|
|
|
|
wget https://raw.githubusercontent.com/ceph/ceph-csi/master/deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml
|
|
kubectl apply -f csi-rbdplugin-provisioner.yaml
|
|
wget https://raw.githubusercontent.com/ceph/ceph-csi/master/deploy/rbd/kubernetes/csi-rbdplugin.yaml
|
|
kubectl apply -f csi-rbdplugin.yaml
|
|
|
|
------- TEST-----
|
|
|
|
cat <<EOF > csi-rbd-sc.yaml
|
|
---
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: csi-rbd-sc
|
|
provisioner: rbd.csi.ceph.com
|
|
parameters:
|
|
clusterID: 004ee854-86cc-4ddc-b7d6-75e4fe962296
|
|
pool: k8s-rbd
|
|
imageFeatures: layering
|
|
csi.storage.k8s.io/provisioner-secret-name: csi-rbd-secret
|
|
csi.storage.k8s.io/provisioner-secret-namespace: default
|
|
csi.storage.k8s.io/controller-expand-secret-name: csi-rbd-secret
|
|
csi.storage.k8s.io/controller-expand-secret-namespace: default
|
|
csi.storage.k8s.io/node-stage-secret-name: csi-rbd-secret
|
|
csi.storage.k8s.io/node-stage-secret-namespace: default
|
|
reclaimPolicy: Delete
|
|
allowVolumeExpansion: true
|
|
mountOptions:
|
|
- discard
|
|
EOF
|
|
kubectl apply -f csi-rbd-sc.yaml
|
|
|
|
|
|
cat <<EOF > raw-block-pvc.yaml
|
|
---
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: raw-block-pvc
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
volumeMode: Block
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
storageClassName: csi-rbd-sc
|
|
EOF
|
|
kubectl apply -f raw-block-pvc.yaml |