115 lines
2.9 KiB
YAML
115 lines
2.9 KiB
YAML
---
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1
|
|
metadata:
|
|
annotations:
|
|
storageclass.kubernetes.io/is-default-class: "false" # 是否设置为默认sc
|
|
name: nfs-storage
|
|
provisioner: nfs-provisioner
|
|
volumeBindingMode: Immediate
|
|
reclaimPolicy: Delete
|
|
|
|
---
|
|
kind: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: nfs-client-provisioner
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nfs-client-provisioner
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nfs-client-provisioner
|
|
spec:
|
|
serviceAccountName: nfs-client-provisioner
|
|
containers:
|
|
- name: nfs-client-provisioner
|
|
image: registry.cn-beijing.aliyuncs.com/mydlq/nfs-subdir-external-provisioner:v4.0.0 # quay.io/external_storage/nfs-client-provisioner:latest
|
|
volumeMounts:
|
|
- name: nfs-client-root
|
|
mountPath: /persistentvolumes
|
|
env:
|
|
- name: PROVISIONER_NAME
|
|
value: nfs-provisioner # 和Storage中provisioner保持一致便可
|
|
- name: NFS_SERVER
|
|
value: 66.94.121.23 # nfs服务器地址
|
|
- name: NFS_PATH
|
|
value: /opt/data/nfs # 共享存储目录
|
|
volumes:
|
|
- name: nfs-client-root
|
|
nfs:
|
|
server: 66.94.121.23
|
|
path: /opt/data/nfs
|
|
|
|
--- # rbac授权
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: nfs-client-provisioner
|
|
namespace: default
|
|
---
|
|
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: nfs-client-provisioner-runner
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["nodes"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: [""]
|
|
resources: ["persistentvolumes"]
|
|
verbs: ["get", "list", "watch", "create", "delete"]
|
|
- apiGroups: [""]
|
|
resources: ["persistentvolumeclaims"]
|
|
verbs: ["get", "list", "watch", "update"]
|
|
- apiGroups: ["storage.k8s.io"]
|
|
resources: ["storageclasses"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: [""]
|
|
resources: ["events"]
|
|
verbs: ["create", "update", "patch"]
|
|
---
|
|
kind: ClusterRoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: run-nfs-client-provisioner
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: nfs-client-provisioner
|
|
|
|
namespace: default
|
|
roleRef:
|
|
kind: ClusterRole
|
|
name: nfs-client-provisioner-runner
|
|
apiGroup: rbac.authorization.k8s.io
|
|
---
|
|
kind: Role
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: leader-locking-nfs-client-provisioner
|
|
namespace: default
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["endpoints"]
|
|
verbs: ["get", "list", "watch", "create", "update", "patch"]
|
|
---
|
|
kind: RoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: leader-locking-nfs-client-provisioner
|
|
namespace: default
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: nfs-client-provisioner
|
|
|
|
namespace: default
|
|
roleRef:
|
|
kind: Role
|
|
name: leader-locking-nfs-client-provisioner
|
|
apiGroup: rbac.authorization.k8s.io
|