mirror of https://github.com/easzlab/kubeasz.git
82 lines
2.0 KiB
YAML
82 lines
2.0 KiB
YAML
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: nfs-client-provisioner
|
|
namespace: kube-system
|
|
|
|
---
|
|
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: nfs-client-provisioner-runner
|
|
rules:
|
|
- 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: ["list", "watch", "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: kube-system
|
|
roleRef:
|
|
kind: ClusterRole
|
|
name: nfs-client-provisioner-runner
|
|
apiGroup: rbac.authorization.k8s.io
|
|
|
|
---
|
|
kind: Deployment
|
|
apiVersion: apps/v1beta1
|
|
metadata:
|
|
name: nfs-client-provisioner
|
|
namespace: kube-system
|
|
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: quay.io/external_storage/nfs-client-provisioner:latest
|
|
image: jmgao1983/nfs-client-provisioner:latest
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- name: nfs-client-root
|
|
mountPath: /persistentvolumes
|
|
env:
|
|
- name: PROVISIONER_NAME
|
|
# 此处供应者名字供storageclass调用
|
|
value: nfs-prov-1
|
|
- name: NFS_SERVER
|
|
value: 10.1.241.230
|
|
- name: NFS_PATH
|
|
value: /home/share/k8s-pv
|
|
volumes:
|
|
- name: nfs-client-root
|
|
nfs:
|
|
server: 10.1.241.230
|
|
path: /home/share/k8s-pv
|
|
|
|
---
|