| #{{ if not .Values.disableMessageRouterZookeeper }} |
| apiVersion: extensions/v1beta1 |
| kind: Deployment |
| metadata: |
| name: zookeeper |
| namespace: "{{ .Values.nsPrefix }}-message-router" |
| spec: |
| selector: |
| matchLabels: |
| app: zookeeper |
| template: |
| metadata: |
| labels: |
| app: zookeeper |
| name: zookeeper |
| spec: |
| containers: |
| - image: {{ .Values.image.zookeeper }} |
| imagePullPolicy: {{ .Values.pullPolicy }} |
| name: zookeeper |
| ports: |
| - containerPort: 2181 |
| readinessProbe: |
| tcpSocket: |
| port: 2181 |
| initialDelaySeconds: 5 |
| periodSeconds: 10 |
| volumeMounts: |
| - mountPath: /etc/localtime |
| name: localtime |
| readOnly: true |
| - mountPath: /opt/zookeeper-3.4.9/data |
| name: zookeeper-data |
| restartPolicy: Always |
| volumes: |
| - name: localtime |
| hostPath: |
| path: /etc/localtime |
| - name: zookeeper-data |
| persistentVolumeClaim: |
| claimName: message-router-zookeeper |
| imagePullSecrets: |
| - name: "{{ .Values.nsPrefix }}-docker-registry-key" |
| #{{ end }} |