1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- apiVersion: apps/v1
- kind: StatefulSet
- metadata:
- name: {{ include "canal-server.fullname" . }}
- labels:
- {{- include "canal-server.labels" . | nindent 4 }}
- spec:
- serviceName: {{ printf "%s-headless" (include "canal-server.fullname" .) | trunc 63 | trimSuffix "-" }}
- replicas: {{ .Values.replicaCount }}
- selector:
- matchLabels:
- {{- include "canal-server.selectorLabels" . | nindent 6 }}
- template:
- metadata:
- {{- with .Values.podAnnotations }}
- annotations:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- labels:
- {{- include "canal-server.labels" . | nindent 8 }}
- {{- with .Values.podLabels }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- spec:
- {{- with .Values.imagePullSecrets }}
- imagePullSecrets:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- serviceAccountName: {{ include "canal-server.serviceAccountName" . }}
- securityContext:
- {{- toYaml .Values.podSecurityContext | nindent 8 }}
- containers:
- - name: {{ .Chart.Name }}
- securityContext:
- {{- toYaml .Values.securityContext | nindent 12 }}
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
- imagePullPolicy: {{ .Values.image.pullPolicy }}
- ports:
- - name: admin
- containerPort: {{ .Values.service.ports.admin }}
- protocol: TCP
- - name: tcp
- containerPort: {{ .Values.service.ports.tcp }}
- protocol: TCP
- - name: metric
- containerPort: {{ .Values.service.ports.metric }}
- protocol: TCP
- livenessProbe:
- {{- toYaml .Values.livenessProbe | nindent 12 }}
- readinessProbe:
- {{- toYaml .Values.readinessProbe | nindent 12 }}
- resources:
- {{- toYaml .Values.resources | nindent 12 }}
- volumeMounts:
- - mountPath: /home/admin/canal-server/conf/canal.properties
- name: secret
- subPath: canal.properties
- {{- with .Values.volumeMounts }}
- {{- toYaml . | nindent 12 }}
- {{- end }}
- volumes:
- - name: secret
- secret:
- defaultMode: 420
- secretName: {{ include "canal-server.fullname" . }}
- {{- with .Values.volumes }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.nodeSelector }}
- nodeSelector:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.affinity }}
- affinity:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.tolerations }}
- tolerations:
- {{- toYaml . | nindent 8 }}
- {{- end }}
|