kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 1 | {{/* |
| 2 | # Copyright © 2017 Amdocs, Bell Canada |
Nishukumar | 376ba1e | 2018-08-03 09:17:23 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | */}} |
| 17 | |
kwasiel | d74d38f | 2020-07-23 10:09:57 +0000 | [diff] [blame^] | 18 | apiVersion: apps/v1 |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 19 | kind: Deployment |
| 20 | metadata: |
| 21 | name: {{ include "common.fullname" . }} |
| 22 | namespace: {{ include "common.namespace" . }} |
| 23 | labels: |
| 24 | app: {{ include "common.name" . }} |
| 25 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 29 | replicas: {{ .Values.replicaCount }} |
| 30 | selector: |
| 31 | matchLabels: |
kwasiel | d74d38f | 2020-07-23 10:09:57 +0000 | [diff] [blame^] | 32 | app: {{ include "common.name" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 33 | template: |
| 34 | metadata: |
| 35 | labels: |
| 36 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 38 | name: {{ include "common.name" . }} |
Huabing Zhao | 8957780 | 2018-07-30 09:41:17 +0000 | [diff] [blame] | 39 | annotations: |
| 40 | sidecar.istio.io/inject: "{{.Values.istioSidecar}}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 41 | spec: |
| 42 | containers: |
| 43 | - env: |
| 44 | - name: MSB_ADDR |
| 45 | value: "{{ .Values.config.msbgateway }}" |
| 46 | - name: MSB_PORT |
| 47 | value: "{{ .Values.config.msbPort }}.{{ include "common.namespace" . }}" |
| 48 | - name: AAI_ADDR |
| 49 | value: aai.{{ include "common.namespace" . }} |
| 50 | - name: AAI_PORT |
| 51 | value: "{{ .Values.config.aai.port }}" |
| 52 | - name: AAI_SCHEMA_VERSION |
| 53 | value: "{{ .Values.config.aai.schemaVersion }}" |
| 54 | - name: AAI_USERNAME |
| 55 | value: "{{ .Values.config.aai.username }}" |
| 56 | - name: AAI_PASSWORD |
| 57 | value: "{{ .Values.config.aai.password }}" |
| 58 | name: {{ include "common.name" . }} |
| 59 | volumeMounts: |
| 60 | - mountPath: /var/log/onap |
| 61 | name: vio-log |
| 62 | - mountPath: /opt/vio/vio/pub/config/log.yml |
| 63 | name: vio-logconfig |
| 64 | subPath: log.yml |
Mukul | 62927a1 | 2018-09-11 11:42:00 +0000 | [diff] [blame] | 65 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 66 | {{ include "common.resources" . | indent 12 }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 67 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 68 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 69 | ports: |
| 70 | - containerPort: {{ .Values.service.internalPort }} |
Huabing Zhao | 69eec44 | 2018-08-03 07:31:22 +0000 | [diff] [blame] | 71 | # disable liveness probe when breakpoints set in debugger |
| 72 | # so K8s doesn't restart unresponsive container |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 73 | {{- if eq .Values.liveness.enabled true }} |
| 74 | livenessProbe: |
| 75 | httpGet: |
| 76 | path: /api/multicloud-vio/v0/swagger.json |
| 77 | port: {{ .Values.service.internalPort }} |
| 78 | scheme: HTTP |
| 79 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 80 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 81 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
| 82 | successThreshold: {{ .Values.liveness.successThreshold }} |
| 83 | failureThreshold: {{ .Values.liveness.failureThreshold }} |
| 84 | {{ end -}} |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 85 | # side car containers |
| 86 | - image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 87 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 88 | name: filebeat-onap |
| 89 | volumeMounts: |
| 90 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 91 | name: filebeat-conf |
| 92 | subPath: filebeat.yml |
| 93 | - mountPath: /var/log/onap |
| 94 | name: vio-log |
| 95 | - mountPath: /usr/share/filebeat/data |
| 96 | name: vio-data-filebeat |
kj | 41ef22e | 2018-04-02 13:34:07 +0300 | [diff] [blame] | 97 | volumes: |
| 98 | - name: vio-log |
| 99 | emptyDir: {} |
| 100 | - name: vio-data-filebeat |
| 101 | emptyDir: {} |
| 102 | - name: filebeat-conf |
| 103 | configMap: |
| 104 | name: multicloud-filebeat-configmap |
| 105 | - name: vio-logconfig |
| 106 | configMap: |
| 107 | name: {{ include "common.fullname" . }}-log-configmap |
| 108 | imagePullSecrets: |
| 109 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 110 | restartPolicy: Always |