sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # Modifications Copyright © 2018 AT&T |
| 3 | # |
| 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 | |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 16 | apiVersion: apps/v1 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 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 "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
| 27 | replicas: {{ .Values.replicaCount }} |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 28 | selector: |
| 29 | matchLabels: |
| 30 | app: {{ include "common.name" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 35 | release: {{ include "common.release" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 36 | spec: |
| 37 | initContainers: |
| 38 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 39 | - /app/ready.py |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 40 | args: |
| 41 | - --container-name |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 42 | - clamp-mariadb |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 43 | env: |
| 44 | - name: NAMESPACE |
| 45 | valueFrom: |
| 46 | fieldRef: |
| 47 | apiVersion: v1 |
| 48 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 49 | image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}" |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 50 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 51 | name: {{ include "common.name" . }}-readiness |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 52 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 53 | containers: |
| 54 | # side car containers |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 55 | {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }} |
| 56 | # main container |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 57 | - name: {{ include "common.name" . }} |
| 58 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 59 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 60 | {{- if .Values.global.aafEnabled }} |
| 61 | command: |
| 62 | - sh |
| 63 | workingDir: "/opt/clamp/" |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 64 | args: |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 65 | - -c |
| 66 | - | |
| 67 | export $(grep '^cadi_' {{ .Values.certInitializer.credsPath }}/org.onap.clamp.cred.props | xargs -0) |
sebdet | 5a13fbf | 2020-10-13 09:37:19 +0200 | [diff] [blame] | 68 | java -Djava.security.egd=file:/dev/./urandom -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=75 -jar ./app.jar |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 69 | {{- else }} |
| 70 | args: |
| 71 | - "" |
| 72 | {{- end }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 73 | ports: |
| 74 | - containerPort: {{ .Values.service.internalPort }} |
| 75 | # disable liveness probe when breakpoints set in debugger |
| 76 | # so K8s doesn't restart unresponsive container |
| 77 | {{- if eq .Values.liveness.enabled true }} |
| 78 | livenessProbe: |
| 79 | tcpSocket: |
| 80 | port: {{ .Values.service.internalPort }} |
| 81 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 82 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 83 | {{ end -}} |
| 84 | readinessProbe: |
| 85 | tcpSocket: |
| 86 | port: {{ .Values.service.internalPort }} |
| 87 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 88 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 89 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }} |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 90 | - name: logs |
| 91 | mountPath: {{ .Values.log.path }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 92 | - mountPath: /opt/clamp/sdc-controllers-config.json |
| 93 | name: {{ include "common.fullname" . }}-config |
| 94 | subPath: sdc-controllers-config.json |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 95 | - mountPath: /opt/clamp/application.properties |
| 96 | name: {{ include "common.fullname" . }}-config |
| 97 | subPath: application.properties |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 98 | env: |
JulienBe | 26df320 | 2020-04-10 16:50:08 +0200 | [diff] [blame] | 99 | - name: MYSQL_USER |
| 100 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }} |
| 101 | - name: MYSQL_PASSWORD |
| 102 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }} |
| 103 | - name: MYSQL_DATABASE |
| 104 | value: {{ tpl .Values.db.databaseName .}} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 105 | resources: |
| 106 | {{ include "common.resources" . | indent 12 }} |
| 107 | {{- if .Values.nodeSelector }} |
| 108 | nodeSelector: |
| 109 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 110 | {{- end -}} |
| 111 | {{- if .Values.affinity }} |
| 112 | affinity: |
| 113 | {{ toYaml .Values.affinity | indent 10 }} |
| 114 | {{- end }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 115 | volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 116 | - name: {{ include "common.fullname" . }}-config |
| 117 | configMap: |
| 118 | name: {{ include "common.fullname" . }} |
| 119 | items: |
| 120 | - key: sdc-controllers-config.json |
| 121 | path: sdc-controllers-config.json |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 122 | - key: application.properties |
| 123 | path: application.properties |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 124 | - name: logs |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 125 | emptyDir: {} |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 126 | {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 127 | imagePullSecrets: |
| 128 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |