2019-07-25 06:49:44 +00:00
|
|
|
kind: Deployment
|
2019-06-19 09:05:44 +00:00
|
|
|
apiVersion: apps/v1
|
2019-02-21 04:30:21 +00:00
|
|
|
metadata:
|
|
|
|
name: {{ include "ceph-csi-cephfs.provisioner.fullname" . }}
|
2019-07-29 10:36:24 +00:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2019-02-21 04:30:21 +00:00
|
|
|
labels:
|
|
|
|
app: {{ include "ceph-csi-cephfs.name" . }}
|
|
|
|
chart: {{ include "ceph-csi-cephfs.chart" . }}
|
|
|
|
component: {{ .Values.provisioner.name }}
|
|
|
|
release: {{ .Release.Name }}
|
|
|
|
heritage: {{ .Release.Service }}
|
2022-10-14 14:59:09 +00:00
|
|
|
{{- with .Values.commonLabels }}{{ toYaml . | trim | nindent 4 }}{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
spec:
|
2019-07-29 10:36:24 +00:00
|
|
|
replicas: {{ .Values.provisioner.replicaCount }}
|
2021-08-03 11:14:26 +00:00
|
|
|
strategy:
|
|
|
|
type: {{ .Values.provisioner.strategy.type }}
|
|
|
|
{{- if eq .Values.provisioner.strategy.type "RollingUpdate" }}
|
|
|
|
rollingUpdate:
|
|
|
|
maxUnavailable: {{ .Values.provisioner.strategy.rollingUpdate.maxUnavailable }}
|
|
|
|
{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: {{ include "ceph-csi-cephfs.name" . }}
|
|
|
|
component: {{ .Values.provisioner.name }}
|
|
|
|
release: {{ .Release.Name }}
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: {{ include "ceph-csi-cephfs.name" . }}
|
|
|
|
chart: {{ include "ceph-csi-cephfs.chart" . }}
|
|
|
|
component: {{ .Values.provisioner.name }}
|
|
|
|
release: {{ .Release.Name }}
|
|
|
|
heritage: {{ .Release.Service }}
|
2022-10-14 14:59:09 +00:00
|
|
|
{{- with .Values.commonLabels }}{{ toYaml . | trim | nindent 8 }}{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
spec:
|
2020-09-20 01:00:51 +00:00
|
|
|
{{- if gt (int .Values.provisioner.replicaCount) 1 }}
|
|
|
|
affinity:
|
|
|
|
podAntiAffinity:
|
|
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
|
|
- labelSelector:
|
|
|
|
matchExpressions:
|
|
|
|
- key: app
|
|
|
|
operator: In
|
|
|
|
values:
|
|
|
|
- {{ include "ceph-csi-cephfs.name" . }}
|
|
|
|
- key: component
|
|
|
|
operator: In
|
|
|
|
values:
|
|
|
|
- {{ .Values.provisioner.name }}
|
|
|
|
topologyKey: "kubernetes.io/hostname"
|
2023-04-17 07:45:22 +00:00
|
|
|
{{- if .Values.provisioner.affinity }}
|
|
|
|
{{ toYaml .Values.provisioner.affinity | indent 8 -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- if .Values.provisioner.affinity }}
|
|
|
|
affinity:
|
|
|
|
{{ toYaml .Values.provisioner.affinity | indent 8 -}}
|
|
|
|
{{- end -}}
|
2020-09-20 01:00:51 +00:00
|
|
|
{{- end }}
|
2024-06-05 11:27:49 +00:00
|
|
|
securityContext: {{ toYaml .Values.provisioner.podSecurityContext | nindent 8 }}
|
2019-02-21 04:30:21 +00:00
|
|
|
serviceAccountName: {{ include "ceph-csi-cephfs.serviceAccountName.provisioner" . }}
|
2022-06-13 13:31:38 +00:00
|
|
|
hostNetwork: {{ .Values.provisioner.enableHostNetwork }}
|
2020-05-05 08:28:39 +00:00
|
|
|
{{- if .Values.provisioner.priorityClassName }}
|
|
|
|
priorityClassName: {{ .Values.provisioner.priorityClassName }}
|
2023-06-15 08:32:06 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.provisioner.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{ toYaml .Values.provisioner.imagePullSecrets | indent 8 -}}
|
2020-05-05 08:28:39 +00:00
|
|
|
{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
containers:
|
2024-02-14 12:23:11 +00:00
|
|
|
- name: csi-cephfsplugin
|
|
|
|
image: "{{ .Values.nodeplugin.plugin.image.repository }}:{{ .Values.nodeplugin.plugin.image.tag }}"
|
|
|
|
imagePullPolicy: {{ .Values.nodeplugin.plugin.image.pullPolicy }}
|
|
|
|
args:
|
|
|
|
- "--nodeid=$(NODE_ID)"
|
|
|
|
- "--type=cephfs"
|
|
|
|
- "--controllerserver=true"
|
|
|
|
- "--pidlimit=-1"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
|
|
|
- "--v={{ .Values.logLevel }}"
|
|
|
|
- "--drivername=$(DRIVER_NAME)"
|
2024-06-21 11:37:56 +00:00
|
|
|
{{- if .Values.instanceID }}
|
|
|
|
- "--instanceid={{ .Values.instanceID }}"
|
|
|
|
{{- end }}
|
2024-07-06 05:42:05 +00:00
|
|
|
{{- if .Values.radosNamespaceCephFS }}
|
|
|
|
- "--radosnamespacecephfs={{ .Values.radosNamespaceCephFS }}"
|
|
|
|
{{- end }}
|
2024-02-14 12:23:11 +00:00
|
|
|
{{- if .Values.provisioner.profiling.enabled }}
|
|
|
|
- "--enableprofiling={{ .Values.provisioner.profiling.enabled }}"
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.provisioner.clustername }}
|
|
|
|
- "--clustername={{ .Values.provisioner.clustername }}"
|
|
|
|
{{- end }}
|
|
|
|
- "--setmetadata={{ .Values.provisioner.setmetadata }}"
|
|
|
|
env:
|
|
|
|
- name: POD_IP
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: status.podIP
|
|
|
|
- name: DRIVER_NAME
|
|
|
|
value: {{ .Values.driverName }}
|
|
|
|
- name: NODE_ID
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: spec.nodeName
|
|
|
|
- name: CSI_ENDPOINT
|
|
|
|
value: "unix:///csi/{{ .Values.provisionerSocketFile }}"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
- name: host-sys
|
|
|
|
mountPath: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
mountPath: /lib/modules
|
|
|
|
readOnly: true
|
|
|
|
- name: host-dev
|
|
|
|
mountPath: /dev
|
|
|
|
- name: ceph-config
|
|
|
|
mountPath: /etc/ceph/
|
|
|
|
- name: ceph-csi-config
|
|
|
|
mountPath: /etc/ceph-csi-config/
|
|
|
|
- name: keys-tmp-dir
|
|
|
|
mountPath: /tmp/csi/keys
|
|
|
|
resources:
|
|
|
|
{{ toYaml .Values.nodeplugin.plugin.resources | indent 12 }}
|
2019-02-21 04:30:21 +00:00
|
|
|
- name: csi-provisioner
|
2019-07-29 10:36:24 +00:00
|
|
|
image: "{{ .Values.provisioner.provisioner.image.repository }}:{{ .Values.provisioner.provisioner.image.tag }}"
|
2019-09-26 09:55:12 +00:00
|
|
|
imagePullPolicy: {{ .Values.provisioner.provisioner.image.pullPolicy }}
|
2019-02-21 04:30:21 +00:00
|
|
|
args:
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
2022-07-26 04:52:19 +00:00
|
|
|
- "--v={{ .Values.sidecarLogLevel }}"
|
2019-09-26 09:55:12 +00:00
|
|
|
- "--timeout={{ .Values.provisioner.timeout }}"
|
2020-09-30 04:58:08 +00:00
|
|
|
- "--leader-election=true"
|
Move locks to more granular locking than CPU count based
As detailed in issue #279, current lock scheme has hash
buckets that are count of CPUs. This causes a lot of contention
when parallel requests are made to the CSI plugin. To reduce
lock contention, this commit introduces granular locks per
identifier.
The commit also changes the timeout for gRPC requests to Create
and Delete volumes, as the current timeout is 10s (kubernetes
documentation says 15s but code defaults are 10s). A virtual
setup takes about 12-15s to complete a request at times, that leads
to unwanted retries of the same request, hence the increased
timeout to enable operation completion with minimal retries.
Tests to create PVCs before and after these changes look like so,
Before:
Default master code + sidecar provisioner --timeout option set
to 30 seconds
20 PVCs
Creation: 3 runs, 396/391/400 seconds
Deletion: 3 runs, 218/271/118 seconds
- Once was stalled for more than 8 minutes and cancelled the run
After:
Current commit + sidecar provisioner --timeout option set to 30 sec
20 PVCs
Creation: 3 runs, 42/59/65 seconds
Deletion: 3 runs, 32/32/31 seconds
Fixes: #279
Signed-off-by: ShyamsundarR <srangana@redhat.com>
2019-06-22 16:43:28 +00:00
|
|
|
- "--retry-interval-start=500ms"
|
2020-10-22 05:07:05 +00:00
|
|
|
- "--extra-create-metadata=true"
|
2022-06-15 07:14:49 +00:00
|
|
|
- "--feature-gates=HonorPVReclaimPolicy=true"
|
|
|
|
- "--prevent-volume-mode-conversion=true"
|
2023-01-05 10:59:43 +00:00
|
|
|
{{- range .Values.provisioner.provisioner.extraArgs }}
|
|
|
|
- "--{{ . }}"
|
|
|
|
{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
2019-09-26 09:55:12 +00:00
|
|
|
value: "unix:///csi/{{ .Values.provisionerSocketFile }}"
|
2019-02-21 04:30:21 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2019-09-26 09:55:12 +00:00
|
|
|
mountPath: /csi
|
2019-02-21 04:30:21 +00:00
|
|
|
resources:
|
2019-09-26 09:55:12 +00:00
|
|
|
{{ toYaml .Values.provisioner.provisioner.resources | indent 12 }}
|
2020-08-03 09:48:08 +00:00
|
|
|
- name: csi-snapshotter
|
|
|
|
image: {{ .Values.provisioner.snapshotter.image.repository }}:{{ .Values.provisioner.snapshotter.image.tag }}
|
|
|
|
imagePullPolicy: {{ .Values.provisioner.snapshotter.image.pullPolicy }}
|
|
|
|
args:
|
|
|
|
- "--csi-address=$(ADDRESS)"
|
2022-07-26 04:52:19 +00:00
|
|
|
- "--v={{ .Values.sidecarLogLevel }}"
|
2020-08-03 09:48:08 +00:00
|
|
|
- "--timeout={{ .Values.provisioner.timeout }}"
|
|
|
|
- "--leader-election=true"
|
2022-06-08 07:11:41 +00:00
|
|
|
- "--extra-create-metadata=true"
|
2024-02-20 08:06:27 +00:00
|
|
|
- "--enable-volume-group-snapshots={{.Values.provisioner.snapshotter.args.enableVolumeGroupSnapshots }}"
|
2023-01-05 10:59:43 +00:00
|
|
|
{{- range .Values.provisioner.snapshotter.extraArgs }}
|
|
|
|
- "--{{ . }}"
|
|
|
|
{{- end }}
|
2020-08-03 09:48:08 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: "unix:///csi/{{ .Values.provisionerSocketFile }}"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
resources:
|
|
|
|
{{ toYaml .Values.provisioner.snapshotter.resources | indent 12 }}
|
2019-11-25 11:09:24 +00:00
|
|
|
{{- if .Values.provisioner.resizer.enabled }}
|
|
|
|
- name: csi-resizer
|
|
|
|
image: "{{ .Values.provisioner.resizer.image.repository }}:{{ .Values.provisioner.resizer.image.tag }}"
|
|
|
|
imagePullPolicy: {{ .Values.provisioner.resizer.image.pullPolicy }}
|
|
|
|
args:
|
2022-07-26 04:52:19 +00:00
|
|
|
- "--v={{ .Values.sidecarLogLevel }}"
|
2019-11-25 11:09:24 +00:00
|
|
|
- "--csi-address=$(ADDRESS)"
|
2020-09-30 04:58:08 +00:00
|
|
|
- "--timeout={{ .Values.provisioner.timeout }}"
|
2019-11-25 11:09:24 +00:00
|
|
|
- "--leader-election"
|
2020-05-27 11:02:08 +00:00
|
|
|
- "--retry-interval-start=500ms"
|
2020-09-30 04:58:08 +00:00
|
|
|
- "--handle-volume-inuse-error=false"
|
2022-05-10 09:33:49 +00:00
|
|
|
- "--feature-gates=RecoverVolumeExpansionFailure=true"
|
2023-01-05 10:59:43 +00:00
|
|
|
{{- range .Values.provisioner.resizer.extraArgs }}
|
|
|
|
- "--{{ . }}"
|
|
|
|
{{- end }}
|
2019-11-25 11:09:24 +00:00
|
|
|
env:
|
|
|
|
- name: ADDRESS
|
|
|
|
value: "unix:///csi/{{ .Values.provisionerSocketFile }}"
|
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
|
|
|
mountPath: /csi
|
|
|
|
resources:
|
|
|
|
{{ toYaml .Values.provisioner.resizer.resources | indent 12 }}
|
2019-07-29 10:36:24 +00:00
|
|
|
{{- end }}
|
2019-09-26 09:55:12 +00:00
|
|
|
{{- if .Values.provisioner.httpMetrics.enabled }}
|
2019-08-15 08:00:25 +00:00
|
|
|
- name: liveness-prometheus
|
|
|
|
image: "{{ .Values.nodeplugin.plugin.image.repository }}:{{ .Values.nodeplugin.plugin.image.tag }}"
|
2019-09-26 09:55:12 +00:00
|
|
|
imagePullPolicy: {{ .Values.nodeplugin.plugin.image.pullPolicy }}
|
2019-08-15 08:00:25 +00:00
|
|
|
args:
|
|
|
|
- "--type=liveness"
|
|
|
|
- "--endpoint=$(CSI_ENDPOINT)"
|
2019-09-26 09:55:12 +00:00
|
|
|
- "--metricsport={{ .Values.provisioner.httpMetrics.containerPort }}"
|
2019-08-21 09:28:02 +00:00
|
|
|
- "--metricspath=/metrics"
|
2019-08-15 08:00:25 +00:00
|
|
|
- "--polltime=60s"
|
|
|
|
- "--timeout=3s"
|
|
|
|
env:
|
|
|
|
- name: CSI_ENDPOINT
|
2019-09-26 09:55:12 +00:00
|
|
|
value: "unix:///csi/{{ .Values.provisionerSocketFile }}"
|
2019-08-15 08:00:25 +00:00
|
|
|
- name: POD_IP
|
|
|
|
valueFrom:
|
|
|
|
fieldRef:
|
|
|
|
fieldPath: status.podIP
|
2022-02-04 11:18:59 +00:00
|
|
|
ports:
|
|
|
|
- containerPort: {{ .Values.provisioner.httpMetrics.containerPort }}
|
|
|
|
name: metrics
|
|
|
|
protocol: TCP
|
2019-08-15 08:00:25 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: socket-dir
|
2019-09-26 09:55:12 +00:00
|
|
|
mountPath: /csi
|
2019-08-15 08:00:25 +00:00
|
|
|
resources:
|
2019-02-21 04:30:21 +00:00
|
|
|
{{ toYaml .Values.nodeplugin.plugin.resources | indent 12 }}
|
2019-09-26 09:55:12 +00:00
|
|
|
{{- end }}
|
2019-02-21 04:30:21 +00:00
|
|
|
volumes:
|
|
|
|
- name: socket-dir
|
2020-01-13 04:05:50 +00:00
|
|
|
emptyDir: {
|
|
|
|
medium: "Memory"
|
|
|
|
}
|
2019-09-26 09:55:12 +00:00
|
|
|
- name: host-sys
|
|
|
|
hostPath:
|
|
|
|
path: /sys
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|
|
|
|
- name: host-dev
|
|
|
|
hostPath:
|
|
|
|
path: /dev
|
2021-09-01 14:56:15 +00:00
|
|
|
- name: ceph-config
|
|
|
|
configMap:
|
2022-02-12 17:01:10 +00:00
|
|
|
name: {{ .Values.cephConfConfigMapName | quote }}
|
2019-05-28 19:03:18 +00:00
|
|
|
- name: ceph-csi-config
|
|
|
|
configMap:
|
|
|
|
name: {{ .Values.configMapName | quote }}
|
2020-04-10 15:55:21 +00:00
|
|
|
{{- if .Values.configMapKey }}
|
|
|
|
items:
|
|
|
|
- key: {{ .Values.configMapKey | quote }}
|
|
|
|
path: config.json
|
|
|
|
{{- end }}
|
2019-06-25 19:29:17 +00:00
|
|
|
- name: keys-tmp-dir
|
|
|
|
emptyDir: {
|
|
|
|
medium: "Memory"
|
|
|
|
}
|
2019-07-29 10:36:24 +00:00
|
|
|
{{- if .Values.provisioner.nodeSelector }}
|
2019-02-21 04:30:21 +00:00
|
|
|
nodeSelector:
|
2019-07-29 10:36:24 +00:00
|
|
|
{{ toYaml .Values.provisioner.nodeSelector | indent 8 -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- if .Values.provisioner.tolerations }}
|
2019-02-21 04:30:21 +00:00
|
|
|
tolerations:
|
2019-07-29 10:36:24 +00:00
|
|
|
{{ toYaml .Values.provisioner.tolerations | indent 8 -}}
|
|
|
|
{{- end -}}
|