k8s-csi-s3/deploy/kubernetes/provisioner.yaml

108 lines
2.8 KiB
YAML
Raw Normal View History

2018-07-14 08:48:22 +00:00
apiVersion: v1
kind: ServiceAccount
metadata:
name: csi-provisioner-sa
2019-05-18 09:43:12 +00:00
namespace: kube-system
2018-07-14 08:48:22 +00:00
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: external-provisioner-runner
rules:
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list"]
- 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: csi-provisioner-role
subjects:
- kind: ServiceAccount
name: csi-provisioner-sa
namespace: kube-system
2018-07-14 08:48:22 +00:00
roleRef:
kind: ClusterRole
name: external-provisioner-runner
apiGroup: rbac.authorization.k8s.io
---
kind: Service
apiVersion: v1
metadata:
name: csi-provisioner-s3
2019-05-18 09:43:12 +00:00
namespace: kube-system
2018-07-14 08:48:22 +00:00
labels:
app: csi-provisioner-s3
spec:
selector:
app: csi-provisioner-s3
ports:
- name: csi-s3-dummy
port: 65535
2018-07-14 08:48:22 +00:00
---
kind: StatefulSet
apiVersion: apps/v1
2018-07-14 08:48:22 +00:00
metadata:
name: csi-provisioner-s3
2019-05-18 09:43:12 +00:00
namespace: kube-system
2018-07-14 08:48:22 +00:00
spec:
serviceName: "csi-provisioner-s3"
replicas: 1
selector:
matchLabels:
app: csi-provisioner-s3
2018-07-14 08:48:22 +00:00
template:
metadata:
labels:
app: csi-provisioner-s3
spec:
serviceAccount: csi-provisioner-sa
tolerations:
- key: node-role.kubernetes.io/master
operator: "Exists"
2018-07-14 08:48:22 +00:00
containers:
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v2.1.0
2018-07-14 08:48:22 +00:00
args:
- "--csi-address=$(ADDRESS)"
- "--v=4"
env:
- name: ADDRESS
2021-07-27 10:05:32 +00:00
value: /var/lib/kubelet/plugins/ru.yandex.s3.csi/csi.sock
2018-07-14 08:48:22 +00:00
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: socket-dir
2021-07-27 10:05:32 +00:00
mountPath: /var/lib/kubelet/plugins/ru.yandex.s3.csi
2018-07-29 12:49:35 +00:00
- name: csi-s3
image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.26.2
2021-07-19 12:59:56 +00:00
imagePullPolicy: IfNotPresent
2018-07-14 08:48:22 +00:00
args:
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(NODE_ID)"
- "--v=4"
env:
- name: CSI_ENDPOINT
2021-07-27 10:05:32 +00:00
value: unix:///var/lib/kubelet/plugins/ru.yandex.s3.csi/csi.sock
2018-07-14 08:48:22 +00:00
- name: NODE_ID
valueFrom:
fieldRef:
fieldPath: spec.nodeName
volumeMounts:
- name: socket-dir
2021-07-27 10:05:32 +00:00
mountPath: /var/lib/kubelet/plugins/ru.yandex.s3.csi
2018-07-14 08:48:22 +00:00
volumes:
- name: socket-dir
emptyDir: {}