2020-03-25 20:10:25 +00:00
|
|
|
---
|
|
|
|
kind: Deployment
|
|
|
|
apiVersion: apps/v1
|
|
|
|
metadata:
|
|
|
|
name: ebs-csi-controller
|
|
|
|
namespace: kube-system
|
|
|
|
spec:
|
|
|
|
replicas: {{ aws_ebs_csi_controller_replicas }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: ebs-csi-controller
|
|
|
|
app.kubernetes.io/name: aws-ebs-csi-driver
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: ebs-csi-controller
|
|
|
|
app.kubernetes.io/name: aws-ebs-csi-driver
|
2022-05-20 22:00:00 +00:00
|
|
|
{% if aws_ebs_csi_annotations is defined %}
|
|
|
|
annotations:
|
|
|
|
{% for annotation in aws_ebs_csi_annotations %}
|
|
|
|
{{ annotation.key }}: {{ annotation.value }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2020-03-25 20:10:25 +00:00
|
|
|
spec:
|
|
|
|
nodeSelector:
|
2020-04-17 12:51:06 +00:00
|
|
|
kubernetes.io/os: linux
|
2021-12-10 18:49:11 +00:00
|
|
|
serviceAccountName: ebs-csi-controller-sa
|
2020-03-25 20:10:25 +00:00
|
|
|
priorityClassName: system-cluster-critical
|
|
|
|
containers:
|
|
|
|
- name: ebs-plugin
|
|
|
|
image: {{ aws_ebs_csi_plugin_image_repo }}:{{ aws_ebs_csi_plugin_image_tag }}
|
|
|
|
args:
|
|
|
|
- --endpoint=$(CSI_ENDPOINT)
|
2020-09-26 17:50:48 +00:00
|
|
|
{% if aws_ebs_csi_extra_volume_tags is defined %}
|
|
|
|
- --extra-volume-tags={{ aws_ebs_csi_extra_volume_tags }}
|
|
|
|
{% endif %}
|
2020-03-25 20:10:25 +00:00
|
|
|
- --logtostderr
|
|
|
|
- --v=5
|
|
|
|
env:
|
|
|
|
- name: CSI_ENDPOINT
|
|
|
|
value: unix:///var/lib/csi/sockets/pluginproxy/csi.sock
|
|
|
|
- name: AWS_ACCESS_KEY_ID
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: aws-secret
|
|
|
|
key: key_id
|
|
|
|
optional: true
|
|
|
|
- name: AWS_SECRET_ACCESS_KEY
|
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: aws-secret
|
|
|
|
key: access_key
|
|
|
|
optional: true
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/csi/sockets/pluginproxy/
|
|
|
|
ports:
|
|
|
|
- name: healthz
|
|
|
|
containerPort: 9808
|
|
|
|
protocol: TCP
|
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /healthz
|
|
|
|
port: healthz
|
|
|
|
initialDelaySeconds: 10
|
|
|
|
timeoutSeconds: 3
|
|
|
|
periodSeconds: 10
|
|
|
|
failureThreshold: 5
|
|
|
|
- name: csi-provisioner
|
|
|
|
image: {{ csi_provisioner_image_repo }}:{{ csi_provisioner_image_tag }}
|
|
|
|
args:
|
|
|
|
- --csi-address=$(ADDRESS)
|
|
|
|
- --v=5
|
|
|
|
{% if aws_ebs_csi_enable_volume_scheduling %}
|
|
|
|
- --feature-gates=Topology=true
|
|
|
|
{% endif %}
|
2021-12-10 18:49:11 +00:00
|
|
|
- --leader-election=true
|
2020-03-25 20:10:25 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: /var/lib/csi/sockets/pluginproxy/csi.sock
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/csi/sockets/pluginproxy/
|
|
|
|
- name: csi-attacher
|
|
|
|
image: {{ csi_attacher_image_repo }}:{{ csi_attacher_image_tag }}
|
|
|
|
args:
|
|
|
|
- --csi-address=$(ADDRESS)
|
|
|
|
- --v=5
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: /var/lib/csi/sockets/pluginproxy/csi.sock
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/csi/sockets/pluginproxy/
|
|
|
|
{% if aws_ebs_csi_enable_volume_snapshot %}
|
|
|
|
- name: csi-snapshotter
|
|
|
|
image: {{ csi_snapshotter_image_repo }}:{{ csi_snapshotter_image_tag }}
|
|
|
|
args:
|
|
|
|
- --csi-address=$(ADDRESS)
|
2020-10-06 13:44:21 +00:00
|
|
|
- --timeout=15s
|
2020-03-25 20:10:25 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: /var/lib/csi/sockets/pluginproxy/csi.sock
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/csi/sockets/pluginproxy/
|
|
|
|
{% endif %}
|
|
|
|
{% if aws_ebs_csi_enable_volume_resizing %}
|
|
|
|
- name: csi-resizer
|
|
|
|
image: {{ csi_resizer_image_repo }}:{{ csi_resizer_image_tag }}
|
2020-05-10 18:37:50 +00:00
|
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
2020-03-25 20:10:25 +00:00
|
|
|
args:
|
|
|
|
- --csi-address=$(ADDRESS)
|
|
|
|
- --v=5
|
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: /var/lib/csi/sockets/pluginproxy/csi.sock
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /var/lib/csi/sockets/pluginproxy/
|
|
|
|
{% endif %}
|
|
|
|
- name: liveness-probe
|
|
|
|
image: {{ csi_livenessprobe_image_repo }}:{{ csi_livenessprobe_image_tag }}
|
|
|
|
args:
|
|
|
|
- --csi-address=/csi/csi.sock
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
volumes:
|
|
|
|
- name: socket-dir
|
|
|
|
emptyDir: {}
|
|
|
|
|