maopengzhang | 799cc59 | 2017-09-01 09:37:48 +0800 | [diff] [blame^] | 1 | apiVersion: extensions/v1beta1 |
| 2 | kind: Deployment |
| 3 | metadata: |
| 4 | name: vfc-catalog |
| 5 | namespace: "{{ .Values.nsPrefix }}-{{ .Chart.Name }}" |
| 6 | spec: |
| 7 | replicas: {{ .Values.catalog.replicas }} |
| 8 | selector: |
| 9 | matchLabels: |
| 10 | app: vfc-catalog |
| 11 | template: |
| 12 | metadata: |
| 13 | labels: |
| 14 | app: vfc-catalog |
| 15 | name: vfc-catalog |
| 16 | spec: |
| 17 | hostname: vfc-catalog |
| 18 | containers: |
| 19 | - args: |
| 20 | image: {{.Values.catalog.image}} |
| 21 | name: "vfc-catalog" |
| 22 | env: |
| 23 | - name: MSB_ADDR |
| 24 | value: {{ .Values.msbaddr }} |
| 25 | ports: |
| 26 | - containerPort: {{ .Values.catalog.port }} |
| 27 | readinessProbe: |
| 28 | tcpSocket: |
| 29 | port: {{ .Values.catalog.port }} |
| 30 | initialDelaySeconds: 5 |
| 31 | periodSeconds: 10 |
| 32 | imagePullPolicy: "{{ .Values.pullPolicy }}" |
| 33 | imagePullSecrets: |
| 34 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |