You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.0 KiB
YAML
125 lines
4.0 KiB
YAML
1 year ago
|
apiVersion: apps/v1
|
||
4 months ago
|
kind: Deployment
|
||
1 year ago
|
metadata:
|
||
4 months ago
|
name: webdav-csi-controller
|
||
|
namespace: {{ .Release.Namespace }}
|
||
1 year ago
|
spec:
|
||
4 months ago
|
replicas: {{ .Values.controller.replicas }}
|
||
1 year ago
|
selector:
|
||
|
matchLabels:
|
||
4 months ago
|
app: webdav-csi-controller
|
||
1 year ago
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
4 months ago
|
app: webdav-csi-controller
|
||
1 year ago
|
spec:
|
||
4 months ago
|
hostNetwork: true
|
||
|
dnsPolicy: ClusterFirstWithHostNet
|
||
1 year ago
|
serviceAccountName: webdav-csi-sa
|
||
|
nodeSelector:
|
||
4 months ago
|
kubernetes.io/os: linux
|
||
1 year ago
|
priorityClassName: system-cluster-critical
|
||
|
securityContext:
|
||
|
seccompProfile:
|
||
|
type: RuntimeDefault
|
||
|
tolerations:
|
||
|
- key: "node-role.kubernetes.io/master"
|
||
|
operator: "Exists"
|
||
|
effect: "NoSchedule"
|
||
|
- key: "node-role.kubernetes.io/controlplane"
|
||
|
operator: "Exists"
|
||
|
effect: "NoSchedule"
|
||
|
- key: "node-role.kubernetes.io/control-plane"
|
||
|
operator: "Exists"
|
||
|
effect: "NoSchedule"
|
||
|
containers:
|
||
|
- name: csi-provisioner
|
||
4 months ago
|
image: {{ .Values.csiProvisioner.image.name }}:{{ .Values.csiProvisioner.image.tag }}
|
||
|
imagePullPolicy: {{ .Values.csiProvisioner.image.pullPolicy }}
|
||
1 year ago
|
args:
|
||
|
- "-v=2"
|
||
|
- "--csi-address=$(ADDRESS)"
|
||
|
- "--leader-election"
|
||
|
- "--leader-election-namespace=kube-system"
|
||
|
- "--extra-create-metadata=true"
|
||
|
- "--timeout=1200s"
|
||
|
env:
|
||
|
- name: ADDRESS
|
||
|
value: /csi/csi.sock
|
||
|
volumeMounts:
|
||
|
- mountPath: /csi
|
||
|
name: socket-dir
|
||
|
resources:
|
||
|
limits:
|
||
4 months ago
|
memory: {{ .Values.controller.resources.limits.memory }}
|
||
1 year ago
|
requests:
|
||
4 months ago
|
cpu: {{ .Values.controller.resources.requests.cpu }}
|
||
|
memory: {{ .Values.controller.resources.requests.memory }}
|
||
1 year ago
|
- name: liveness-probe
|
||
4 months ago
|
image: {{ .Values.livenessProbe.image.name }}:{{ .Values.livenessProbe.image.tag }}
|
||
|
imagePullPolicy: {{ .Values.livenessProbe.image.pullPolicy }}
|
||
1 year ago
|
args:
|
||
|
- --csi-address=/csi/csi.sock
|
||
|
- --probe-timeout=3s
|
||
|
- --health-port=29652
|
||
|
- --v=2
|
||
|
volumeMounts:
|
||
|
- name: socket-dir
|
||
|
mountPath: /csi
|
||
|
resources:
|
||
|
limits:
|
||
|
memory: 100Mi
|
||
|
requests:
|
||
|
cpu: 10m
|
||
|
memory: 20Mi
|
||
|
- name: webdav
|
||
4 months ago
|
image: {{ .Values.controller.image.name }}:{{ .Values.controller.image.tag }}
|
||
|
imagePullPolicy: {{ .Values.controller.image.pullPolicy }}
|
||
1 year ago
|
securityContext:
|
||
|
privileged: true
|
||
|
capabilities:
|
||
1 year ago
|
add: ["SYS_ADMIN"]
|
||
1 year ago
|
allowPrivilegeEscalation: true
|
||
|
args:
|
||
|
- "-v=5"
|
||
|
- "--nodeid=$(NODE_ID)"
|
||
|
- "--endpoint=$(CSI_ENDPOINT)"
|
||
|
env:
|
||
|
- name: NODE_ID
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: spec.nodeName
|
||
|
- name: CSI_ENDPOINT
|
||
|
value: unix:///csi/csi.sock
|
||
|
ports:
|
||
|
- containerPort: 29652
|
||
|
name: healthz
|
||
|
protocol: TCP
|
||
|
livenessProbe:
|
||
|
failureThreshold: 5
|
||
|
httpGet:
|
||
|
path: /healthz
|
||
|
port: healthz
|
||
|
initialDelaySeconds: 30
|
||
|
timeoutSeconds: 10
|
||
|
periodSeconds: 30
|
||
|
volumeMounts:
|
||
|
- name: pods-mount-dir
|
||
|
mountPath: /var/lib/kubelet/pods
|
||
|
mountPropagation: "Bidirectional"
|
||
|
- mountPath: /csi
|
||
|
name: socket-dir
|
||
|
resources:
|
||
|
limits:
|
||
4 months ago
|
memory: {{ .Values.controller.resources.limits.memory }}
|
||
1 year ago
|
requests:
|
||
4 months ago
|
cpu: {{ .Values.controller.resources.requests.cpu }}
|
||
|
memory: {{ .Values.controller.resources.requests.memory }}
|
||
1 year ago
|
volumes:
|
||
|
- name: pods-mount-dir
|
||
|
hostPath:
|
||
|
path: /var/lib/kubelet/pods
|
||
|
type: Directory
|
||
|
- name: socket-dir
|
||
4 months ago
|
emptyDir: {}
|