yuryn | fcef994 | 2017-10-26 17:10:50 +0300 | [diff] [blame] | 1 | #{{ if not .Values.disableMsbMsbDiscovery }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 2 | apiVersion: extensions/v1beta1 |
| 3 | kind: Deployment |
| 4 | metadata: |
| 5 | name: msb-discovery |
HuabingZhao | 3f1a25e | 2017-09-02 14:45:28 +0800 | [diff] [blame] | 6 | namespace: "{{ .Values.nsPrefix }}-msb" |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 7 | spec: |
HuabingZhao | 77d44cd | 2017-08-30 09:30:03 +0800 | [diff] [blame] | 8 | replicas: {{ .Values.discoveryReplicas }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 9 | selector: |
| 10 | matchLabels: |
| 11 | app: msb-discovery |
| 12 | template: |
| 13 | metadata: |
| 14 | labels: |
| 15 | app: msb-discovery |
| 16 | name: msb-discovery |
| 17 | spec: |
| 18 | hostname: msb-discovery |
Huabing Zhao | 097f681 | 2018-02-09 08:21:38 +0000 | [diff] [blame^] | 19 | initContainers: |
| 20 | - command: |
| 21 | - /root/ready.py |
| 22 | args: |
| 23 | - --container-name |
| 24 | - msb-consul |
| 25 | env: |
| 26 | - name: NAMESPACE |
| 27 | valueFrom: |
| 28 | fieldRef: |
| 29 | apiVersion: v1 |
| 30 | fieldPath: metadata.namespace |
| 31 | image: {{ .Values.image.readiness }} |
| 32 | imagePullPolicy: {{ .Values.pullPolicy }} |
| 33 | name: msb-discovery-readiness |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 34 | containers: |
| 35 | - args: |
HuabingZhao | 14391b4 | 2017-09-02 14:38:07 +0800 | [diff] [blame] | 36 | image: {{ .Values.image.discovery }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 37 | name: "msb-discovery" |
| 38 | env: |
| 39 | - name: CONSUL_IP |
HuabingZhao | aac1c92 | 2017-09-09 15:59:00 +0800 | [diff] [blame] | 40 | value: msb-consul.{{ .Values.nsPrefix }}-msb |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 41 | ports: |
HuabingZhao | 4ea0655 | 2017-08-29 15:30:10 +0800 | [diff] [blame] | 42 | - containerPort: {{ .Values.discoveryPort }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 43 | name: msb-discovery |
| 44 | readinessProbe: |
| 45 | tcpSocket: |
HuabingZhao | 4ea0655 | 2017-08-29 15:30:10 +0800 | [diff] [blame] | 46 | port: {{ .Values.discoveryPort }} |
HuabingZhao | c2b4fcf | 2017-08-29 10:48:25 +0800 | [diff] [blame] | 47 | initialDelaySeconds: 5 |
| 48 | periodSeconds: 10 |
HuabingZhao | 14391b4 | 2017-09-02 14:38:07 +0800 | [diff] [blame] | 49 | imagePullPolicy: {{ .Values.pullPolicy }} |
HuabingZhao | ba8f349 | 2017-09-09 10:17:20 +0800 | [diff] [blame] | 50 | imagePullSecrets: |
| 51 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |
Huabing Zhao | 097f681 | 2018-02-09 08:21:38 +0000 | [diff] [blame^] | 52 | #{{ end }} |