Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 1 | # Copyright (c) 2019 IBM, Bell Canada |
| 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. |
| 14 | |
| 15 | apiVersion: extensions/v1beta1 |
| 16 | kind: Deployment |
| 17 | metadata: |
| 18 | name: {{ include "common.fullname" . }} |
| 19 | namespace: {{ include "common.namespace" . }} |
| 20 | labels: |
| 21 | app: {{ include "common.name" . }} |
| 22 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 23 | release: {{ .Release.Name }} |
| 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
| 26 | replicas: {{ .Values.replicaCount }} |
| 27 | template: |
| 28 | metadata: |
| 29 | labels: |
| 30 | app: {{ include "common.name" . }} |
| 31 | release: {{ .Release.Name }} |
| 32 | spec: |
| 33 | initContainers: |
| 34 | - command: |
| 35 | - /root/ready.py |
| 36 | args: |
| 37 | - --container-name |
Alexis de Talhouët | 63df163 | 2019-03-20 08:17:58 -0400 | [diff] [blame] | 38 | - cds-db |
Prathamesh Morde | 93da127 | 2019-06-24 10:36:15 -0400 | [diff] [blame] | 39 | {{- if .Values.dmaapEnabled }} |
| 40 | - --container-name |
| 41 | - message-router |
| 42 | {{ end }} |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 43 | env: |
| 44 | - name: NAMESPACE |
| 45 | valueFrom: |
| 46 | fieldRef: |
| 47 | apiVersion: v1 |
| 48 | fieldPath: metadata.namespace |
| 49 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 50 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 51 | name: {{ include "common.name" . }}-readiness |
| 52 | containers: |
| 53 | - name: {{ include "common.name" . }} |
| 54 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 55 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 56 | env: |
| 57 | - name: APP_CONFIG_HOME |
| 58 | value: {{ .Values.config.appConfigDir }} |
| 59 | ports: |
| 60 | - containerPort: {{ .Values.service.http.internalPort }} |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 61 | - containerPort: {{ .Values.service.grpc.internalPort }} |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 62 | # disable liveness probe when breakpoints set in debugger |
| 63 | # so K8s doesn't restart unresponsive container |
| 64 | {{ if .Values.liveness.enabled }} |
| 65 | livenessProbe: |
| 66 | httpGet: |
Alexis de Talhouët | 892564f | 2019-07-17 08:15:07 -0400 | [diff] [blame] | 67 | path: /api/v1/execution-service/health-check |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 68 | port: {{ .Values.service.http.internalPort }} |
Munir Ahmad | 597db66 | 2019-03-26 08:17:11 -0400 | [diff] [blame] | 69 | httpHeaders: |
| 70 | - name: Authorization |
| 71 | value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 72 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 73 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Oleg Mitsura | 3a62118 | 2019-10-09 12:40:11 -0400 | [diff] [blame] | 74 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 75 | {{ end }} |
| 76 | readinessProbe: |
| 77 | httpGet: |
Alexis de Talhouët | 892564f | 2019-07-17 08:15:07 -0400 | [diff] [blame] | 78 | path: /api/v1/execution-service/health-check |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 79 | port: {{ .Values.service.http.internalPort }} |
Munir Ahmad | 597db66 | 2019-03-26 08:17:11 -0400 | [diff] [blame] | 80 | httpHeaders: |
| 81 | - name: Authorization |
| 82 | value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
Oleg Mitsura | bad9934 | 2019-10-28 14:06:42 -0400 | [diff] [blame] | 83 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 84 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 85 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 86 | volumeMounts: |
| 87 | - mountPath: /etc/localtime |
| 88 | name: localtime |
| 89 | readOnly: true |
| 90 | - mountPath: {{ .Values.config.appConfigDir }}/application.properties |
| 91 | name: {{ include "common.fullname" . }}-config |
| 92 | subPath: application.properties |
| 93 | - mountPath: {{ .Values.config.appConfigDir }}/logback.xml |
| 94 | name: {{ include "common.fullname" . }}-config |
| 95 | subPath: logback.xml |
Abdelmuhaimen Seaudi | 204c64e | 2019-07-25 19:04:01 +0000 | [diff] [blame] | 96 | |
| 97 | - mountPath: {{ .Values.config.appConfigDir }}/ONAP_RootCA.cer |
| 98 | name: {{ include "common.fullname" . }}-config |
| 99 | subPath: ONAP_RootCA.cer |
| 100 | |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 101 | - mountPath: {{ .Values.persistence.deployedBlueprint }} |
| 102 | name: {{ include "common.fullname" . }}-blueprints |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 103 | resources: |
| 104 | {{ include "common.resources" . | indent 12 }} |
| 105 | {{- if .Values.nodeSelector }} |
| 106 | nodeSelector: |
| 107 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 108 | {{- end -}} |
| 109 | {{- if .Values.affinity }} |
| 110 | affinity: |
| 111 | {{ toYaml .Values.affinity | indent 10 }} |
| 112 | {{- end }} |
| 113 | volumes: |
| 114 | - name: localtime |
| 115 | hostPath: |
| 116 | path: /etc/localtime |
| 117 | - name: {{ include "common.fullname" . }}-config |
| 118 | configMap: |
| 119 | name: {{ include "common.fullname" . }}-configmap |
| 120 | items: |
| 121 | - key: application.properties |
| 122 | path: application.properties |
| 123 | - key: logback.xml |
| 124 | path: logback.xml |
Abdelmuhaimen Seaudi | a451fd6 | 2019-09-10 14:21:04 +0000 | [diff] [blame] | 125 | - key: ONAP_RootCA.cer |
| 126 | path: ONAP_RootCA.cer |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 127 | - name: {{ include "common.fullname" . }}-blueprints |
| 128 | persistentVolumeClaim: |
| 129 | claimName: {{ .Release.Name }}-cds-blueprints |
Steve Alphonse Siani | a1b6b0e | 2019-01-25 15:23:58 -0500 | [diff] [blame] | 130 | imagePullSecrets: |
| 131 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |