Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame^] | 1 | # Copyright © 2018 Amdocs, Bell Canada , ZTE |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 14 | apiVersion: extensions/v1beta1 |
| 15 | kind: Deployment |
| 16 | metadata: |
| 17 | name: {{ include "common.fullname" . }} |
| 18 | namespace: {{ include "common.namespace" . }} |
| 19 | labels: |
| 20 | app: {{ include "common.name" . }} |
| 21 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 22 | release: {{ .Release.Name }} |
| 23 | heritage: {{ .Release.Service }} |
| 24 | spec: |
| 25 | replicas: {{ .Values.replicaCount }} |
| 26 | template: |
| 27 | metadata: |
| 28 | labels: |
| 29 | app: {{ include "common.name" . }} |
| 30 | release: {{ .Release.Name }} |
Huabing Zhao | 81b8976 | 2018-07-30 06:33:03 +0000 | [diff] [blame] | 31 | annotations: |
| 32 | sidecar.istio.io/inject: "{{.Values.istioSidecar}}" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 33 | spec: |
Huabing Zhao | 8f7cc81 | 2018-08-08 06:27:37 +0000 | [diff] [blame] | 34 | serviceAccountName: msb |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 35 | initContainers: |
| 36 | - command: |
| 37 | - /root/ready.py |
| 38 | args: |
| 39 | - --container-name |
| 40 | - msb-discovery |
| 41 | env: |
| 42 | - name: NAMESPACE |
| 43 | valueFrom: |
| 44 | fieldRef: |
| 45 | apiVersion: v1 |
| 46 | fieldPath: metadata.namespace |
| 47 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 48 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 49 | name: {{ include "common.name" . }}-readiness |
| 50 | containers: |
| 51 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 52 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 53 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 54 | ports: |
| 55 | - containerPort: {{ .Values.service.internalPort }} |
| 56 | name: {{ .Values.service.name }} |
| 57 | - containerPort: {{ .Values.service.internalPortHttps }} |
| 58 | name: {{ .Values.service.name }}-https |
| 59 | # disable liveness probe when breakpoints set in debugger |
| 60 | # so K8s doesn't restart unresponsive container |
| 61 | {{- if eq .Values.liveness.enabled true }} |
| 62 | livenessProbe: |
| 63 | tcpSocket: |
| 64 | port: {{ .Values.service.internalPort }} |
| 65 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 66 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 67 | {{ end -}} |
| 68 | readinessProbe: |
| 69 | tcpSocket: |
| 70 | port: {{ .Values.service.internalPort }} |
| 71 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 72 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 73 | env: |
| 74 | - name: CONSUL_IP |
BorislavG | 6c7ecf0 | 2018-04-01 13:08:37 +0300 | [diff] [blame] | 75 | value: msb-consul.{{ include "common.namespace" . }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 76 | - name: SDCLIENT_IP |
BorislavG | 6c7ecf0 | 2018-04-01 13:08:37 +0300 | [diff] [blame] | 77 | value: msb-discovery.{{ include "common.namespace" . }} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 78 | - name: ROUTE_LABELS |
| 79 | value: {{ .Values.config.routeLabels }} |
| 80 | volumeMounts: |
| 81 | - mountPath: /etc/localtime |
| 82 | name: localtime |
| 83 | readOnly: true |
LiZi | 4dd8e11 | 2018-04-09 07:34:04 -0400 | [diff] [blame] | 84 | - mountPath: /usr/local/apiroute-works/logs |
Li Zi | c5290dc | 2018-08-06 09:26:27 +0000 | [diff] [blame] | 85 | name: {{ include "common.fullname" . }}-logs |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 86 | resources: |
| 87 | {{ toYaml .Values.resources | indent 12 }} |
| 88 | {{- if .Values.nodeSelector }} |
| 89 | nodeSelector: |
| 90 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 91 | {{- end -}} |
| 92 | {{- if .Values.affinity }} |
| 93 | affinity: |
| 94 | {{ toYaml .Values.affinity | indent 10 }} |
| 95 | {{- end }} |
LiZi | 4dd8e11 | 2018-04-09 07:34:04 -0400 | [diff] [blame] | 96 | # side car containers |
| 97 | - name: filebeat-onap |
| 98 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 99 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 100 | volumeMounts: |
Li Zi | c5290dc | 2018-08-06 09:26:27 +0000 | [diff] [blame] | 101 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 102 | mountPath: /usr/share/filebeat/filebeat.yml |
| 103 | subPath: filebeat.yml |
| 104 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 105 | mountPath: /usr/share/filebeat/data |
| 106 | - name: {{ include "common.fullname" . }}-logs |
| 107 | mountPath: /var/log/onap/msb/msb-iag |
| 108 | - mountPath: /opt/ajsc/etc/config/logback.xml |
| 109 | name: {{ include "common.fullname" . }}-log-conf |
| 110 | subPath: logback.xml |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 111 | volumes: |
Li Zi | c5290dc | 2018-08-06 09:26:27 +0000 | [diff] [blame] | 112 | - name: {{ include "common.fullname" . }}-log-conf |
| 113 | configMap: |
| 114 | name: {{ include "common.fullname" . }}-log |
| 115 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 116 | configMap: |
| 117 | name: {{ .Release.Name }}-msb-filebeat-configmap |
| 118 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 119 | emptyDir: {} |
| 120 | - name: {{ include "common.fullname" . }}-logs |
| 121 | emptyDir: {} |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 122 | - name: localtime |
| 123 | hostPath: |
| 124 | path: /etc/localtime |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 125 | imagePullSecrets: |
| 126 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |