Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 1 | # Copyright © 2018 Orange |
| 2 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
Steve Alphonse Siani | e20fd5e | 2019-01-25 16:16:29 -0500 | [diff] [blame] | 3 | # |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | apiVersion: extensions/v1beta1 |
| 17 | kind: Deployment |
| 18 | metadata: |
| 19 | name: {{ include "common.fullname" . }} |
| 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
| 22 | app: {{ include "common.name" . }} |
| 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 24 | release: {{ .Release.Name }} |
| 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
| 27 | replicas: {{ .Values.replicaCount }} |
| 28 | template: |
| 29 | metadata: |
| 30 | labels: |
| 31 | app: {{ include "common.name" . }} |
| 32 | release: {{ .Release.Name }} |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 33 | name: {{ include "common.fullname" . }} |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 34 | spec: |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 35 | containers: |
| 36 | - name: {{ include "common.name" . }} |
| 37 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 38 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 39 | ports: |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 40 | - containerPort: {{ .Values.service.internalPort }} |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 41 | # disable liveness probe when breakpoints set in debugger |
| 42 | # so K8s doesn't restart unresponsive container |
| 43 | {{ if .Values.liveness.enabled }} |
| 44 | livenessProbe: |
| 45 | tcpSocket: |
| 46 | port: {{ .Values.service.internalPort }} |
| 47 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 48 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 49 | {{ end }} |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 50 | env: |
| 51 | - name: HOST |
| 52 | value: 0.0.0.0 |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 53 | - name: APP_ACTION_DEPLOY_BLUEPRINT_GRPC_ENABLED |
Timoney, Dan (dt5972) | 6c65631 | 2019-07-11 14:54:28 -0400 | [diff] [blame] | 54 | value: "{{ .Values.config.app.action.deployBlueprint.grpcEnabled }}" |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 55 | - name: API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL |
| 56 | value: {{ .Values.config.api.controller.http.baseUrl }} |
| 57 | - name: API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN |
| 58 | value: {{ .Values.config.api.controller.http.authToken }} |
| 59 | - name: API_BLUEPRINT_PROCESSOR_HHTP_BASE_URL |
| 60 | value: {{ .Values.config.api.processor.http.baseUrl }} |
| 61 | - name: API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN |
| 62 | value: {{ .Values.config.api.processor.http.authToken }} |
| 63 | - name: API_BLUEPRINT_PROCESSOR_GRPC_HOST |
| 64 | value: {{ .Values.config.api.processor.grpc.host }} |
| 65 | - name: API_BLUEPRINT_PROCESSOR_GRPC_PORT |
Timoney, Dan (dt5972) | 6c65631 | 2019-07-11 14:54:28 -0400 | [diff] [blame] | 66 | value: "{{ .Values.config.api.processor.grpc.port }}" |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 67 | - name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN |
| 68 | value: {{ .Values.config.api.processor.grpc.authToken }} |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 69 | readinessProbe: |
| 70 | tcpSocket: |
| 71 | port: {{ .Values.service.internalPort }} |
| 72 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 73 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 74 | volumeMounts: |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 75 | - mountPath: /etc/localtime |
| 76 | name: localtime |
| 77 | readOnly: true |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 78 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 79 | {{ include "common.resources" . | indent 12 }} |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 80 | {{- if .Values.nodeSelector }} |
| 81 | nodeSelector: |
| 82 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 83 | {{- end -}} |
| 84 | {{- if .Values.affinity }} |
| 85 | affinity: |
| 86 | {{ toYaml .Values.affinity | indent 10 }} |
| 87 | {{- end }} |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 88 | # side car containers |
| 89 | # - name: filebeat-onap |
| 90 | # image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 91 | # imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 92 | # volumeMounts: |
| 93 | # - mountPath: /usr/share/filebeat/filebeat.yml |
| 94 | # name: filebeat-conf |
| 95 | # subPath: filebeat.yml |
| 96 | # - mountPath: /home/esr/works/logs |
| 97 | # name: esr-server-logs |
| 98 | # - mountPath: /usr/share/filebeat/data |
| 99 | # name: esr-server-filebeat |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 100 | volumes: |
| 101 | - name: localtime |
| 102 | hostPath: |
| 103 | path: /etc/localtime |
Sylvain Desbureaux | 7acab56 | 2019-03-01 09:26:13 +0100 | [diff] [blame] | 104 | # - name: filebeat-conf |
| 105 | # configMap: |
| 106 | # name: {{ include "common.fullname" . }}-esr-filebeat |
| 107 | # - name: esr-server-logs |
| 108 | # emptyDir: {} |
| 109 | # - name: esr-server-filebeat |
| 110 | # emptyDir: {} |
| 111 | # - name: esrserver-log |
| 112 | # configMap: |
| 113 | # name: {{ include "common.fullname" . }}-esr-esrserver-log |
Mike Elliott | 37cae25 | 2018-09-12 14:45:40 -0400 | [diff] [blame] | 114 | imagePullSecrets: |
| 115 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |