2021-03-27 00:09:42 +08:00
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
|
|
|
name: nfs-client-provisioner
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
---
|
|
|
|
kind: ClusterRole
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
name: nfs-client-provisioner-runner
|
|
|
|
rules:
|
2022-01-05 12:43:03 +08:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["nodes"]
|
|
|
|
verbs: ["get", "list", "watch"]
|
2021-03-27 00:09:42 +08:00
|
|
|
- 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
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
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
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
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
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
|
|
|
name: nfs-client-provisioner
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
roleRef:
|
|
|
|
kind: Role
|
|
|
|
name: leader-locking-nfs-client-provisioner
|
|
|
|
apiGroup: rbac.authorization.k8s.io
|
|
|
|
|
|
|
|
---
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: nfs-client-provisioner
|
|
|
|
labels:
|
|
|
|
app: nfs-client-provisioner
|
|
|
|
# replace with namespace where provisioner is deployed
|
|
|
|
namespace: {{ nfs_provisioner_namespace }}
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
strategy:
|
|
|
|
type: Recreate
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: nfs-client-provisioner
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: nfs-client-provisioner
|
|
|
|
spec:
|
|
|
|
serviceAccountName: nfs-client-provisioner
|
|
|
|
containers:
|
|
|
|
- name: nfs-client-provisioner
|
|
|
|
#image: gcr.io/k8s-staging-sig-storage/nfs-subdir-external-provisioner:v4.0.1
|
2022-06-10 06:53:28 +08:00
|
|
|
image: easzlab.io.local:5000/easzlab/nfs-subdir-external-provisioner:{{ nfs_provisioner_ver }}
|
2021-03-27 00:09:42 +08:00
|
|
|
volumeMounts:
|
|
|
|
- name: nfs-client-root
|
|
|
|
mountPath: /persistentvolumes
|
|
|
|
env:
|
|
|
|
- name: PROVISIONER_NAME
|
|
|
|
value: k8s-sigs.io/nfs-subdir-external-provisioner
|
|
|
|
- name: NFS_SERVER
|
|
|
|
value: {{ nfs_server }}
|
|
|
|
- name: NFS_PATH
|
|
|
|
value: {{ nfs_path }}
|
|
|
|
volumes:
|
|
|
|
- name: nfs-client-root
|
|
|
|
nfs:
|
|
|
|
server: {{ nfs_server }}
|
|
|
|
path: {{ nfs_path }}
|
|
|
|
|
|
|
|
---
|
|
|
|
apiVersion: storage.k8s.io/v1
|
|
|
|
kind: StorageClass
|
|
|
|
metadata:
|
|
|
|
name: {{ nfs_storage_class }}
|
|
|
|
provisioner: k8s-sigs.io/nfs-subdir-external-provisioner
|
|
|
|
parameters:
|
|
|
|
archiveOnDelete: "false"
|