118 lines
3.7 KiB
YAML
118 lines
3.7 KiB
YAML
# Node Service
|
|
kind: DaemonSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: efs-csi-node
|
|
namespace: kube-system
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: efs-csi-node
|
|
app.kubernetes.io/name: {{ include "aws-efs-csi-driver.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: efs-csi-node
|
|
app.kubernetes.io/name: {{ include "aws-efs-csi-driver.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- if .Values.node.podAnnotations }}
|
|
annotations: {{ toYaml .Values.node.podAnnotations | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
nodeSelector:
|
|
beta.kubernetes.io/os: linux
|
|
{{- with .Values.nodeSelector }}
|
|
{{- . | toYaml | nindent 8 }}
|
|
{{- end }}
|
|
hostNetwork: true
|
|
priorityClassName: system-node-critical
|
|
tolerations:
|
|
- operator: Exists
|
|
{{- with .Values.node.tolerations }}
|
|
{{- . | toYaml | nindent 8 }}
|
|
{{- end }}
|
|
containers:
|
|
- name: efs-plugin
|
|
securityContext:
|
|
privileged: true
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
args:
|
|
- --endpoint=$(CSI_ENDPOINT)
|
|
- --logtostderr
|
|
- --v=5
|
|
env:
|
|
- name: CSI_ENDPOINT
|
|
value: unix:/csi/csi.sock
|
|
volumeMounts:
|
|
- name: kubelet-dir
|
|
mountPath: /var/lib/kubelet
|
|
mountPropagation: "Bidirectional"
|
|
- name: plugin-dir
|
|
mountPath: /csi
|
|
- name: efs-state-dir
|
|
mountPath: /var/run/efs
|
|
- name: efs-utils-config
|
|
mountPath: /etc/amazon/efs
|
|
ports:
|
|
- name: healthz
|
|
containerPort: 9809
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: healthz
|
|
initialDelaySeconds: 10
|
|
timeoutSeconds: 3
|
|
periodSeconds: 2
|
|
failureThreshold: 5
|
|
- name: cs-driver-registrar
|
|
image: {{ printf "%s:%s" .Values.sidecars.nodeDriverRegistrarImage.repository .Values.sidecars.nodeDriverRegistrarImage.tag }}
|
|
args:
|
|
- --csi-address=$(ADDRESS)
|
|
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
|
|
- --v=5
|
|
env:
|
|
- name: ADDRESS
|
|
value: /csi/csi.sock
|
|
- name: DRIVER_REG_SOCK_PATH
|
|
value: /var/lib/kubelet/plugins/efs.csi.aws.com/csi.sock
|
|
- name: KUBE_NODE_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: spec.nodeName
|
|
volumeMounts:
|
|
- name: plugin-dir
|
|
mountPath: /csi
|
|
- name: registration-dir
|
|
mountPath: /registration
|
|
- name: liveness-probe
|
|
image: {{ printf "%s:%s" .Values.sidecars.livenessProbeImage.repository .Values.sidecars.livenessProbeImage.tag }}
|
|
args:
|
|
- --csi-address=/csi/csi.sock
|
|
- --health-port=9809
|
|
volumeMounts:
|
|
- name: plugin-dir
|
|
mountPath: /csi
|
|
volumes:
|
|
- name: kubelet-dir
|
|
hostPath:
|
|
path: /var/lib/kubelet
|
|
type: Directory
|
|
- name: plugin-dir
|
|
hostPath:
|
|
path: /var/lib/kubelet/plugins/efs.csi.aws.com/
|
|
type: DirectoryOrCreate
|
|
- name: registration-dir
|
|
hostPath:
|
|
path: /var/lib/kubelet/plugins_registry/
|
|
type: Directory
|
|
- name: efs-state-dir
|
|
hostPath:
|
|
path: /var/run/efs
|
|
type: DirectoryOrCreate
|
|
- name: efs-utils-config
|
|
hostPath:
|
|
path: /etc/amazon/efs
|
|
type: DirectoryOrCreate
|