Jakub Latusek | 7dbe0f5 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 2 | #============LICENSE_START======================================================== |
| 3 | # ================================================================================ |
| 4 | # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved. |
| 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # ============LICENSE_END========================================================= |
Jakub Latusek | 7dbe0f5 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 18 | */}} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 19 | |
| 20 | apiVersion: apps/v1 |
| 21 | kind: Deployment |
| 22 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 23 | spec: |
| 24 | replicas: 1 |
| 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 26 | template: |
| 27 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 28 | spec: |
| 29 | initContainers: |
| 30 | - name: {{ include "common.name" . }}-readiness |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 31 | image: {{ include "repositoryGenerator.image.readiness" . }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 32 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 33 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 34 | - /app/ready.py |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 35 | args: |
| 36 | - --container-name |
| 37 | - {{ .Values.postgres.nameOverride }} |
| 38 | - "-t" |
| 39 | - "15" |
| 40 | env: |
| 41 | - name: NAMESPACE |
| 42 | valueFrom: |
| 43 | fieldRef: |
| 44 | apiVersion: v1 |
| 45 | fieldPath: metadata.namespace |
| 46 | containers: |
| 47 | - name: {{ include "common.name" . }} |
| 48 | command: |
| 49 | - sh |
| 50 | args: |
| 51 | - -c |
| 52 | - 'PG_CONN=postgresql://${PG_USER}:${PG_PASSWORD}@${PG_ADDR}:${PG_PORT}/${PG_DB_NAME} ./start.sh' |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 53 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 54 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 55 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 56 | {{- if eq .Values.liveness.enabled true }} |
| 57 | livenessProbe: |
| 58 | tcpSocket: |
| 59 | port: {{ .Values.liveness.port }} |
| 60 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 61 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 62 | {{ end }} |
| 63 | readinessProbe: |
| 64 | tcpSocket: |
| 65 | port: {{ .Values.readiness.port }} |
| 66 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 67 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 68 | resources: {{ include "common.resources" . | nindent 12 }} |
| 69 | env: |
| 70 | - name: PG_ADDR |
| 71 | value: {{ .Values.postgres.service.name2 }} |
| 72 | # This should be kept in secret but it needs a fix in postgres common chart |
| 73 | - name: PG_USER |
| 74 | value: postgres |
| 75 | - name: PG_PASSWORD |
Krzysztof Opasiak | 1e3ae55 | 2020-03-24 03:27:13 +0100 | [diff] [blame] | 76 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-pass" "key" "password") | indent 14 }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 77 | - name: PG_PORT |
| 78 | value: "5432" |
| 79 | - name: PG_DB_NAME |
| 80 | value: dcae_onboarding_db |
| 81 | imagePullSecrets: |
| 82 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |