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) 2019-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: |
Jack Lucas | 8d8c9b9 | 2020-03-30 15:56:46 -0400 | [diff] [blame] | 29 | initContainers: |
| 30 | # apps run as uid 1000, gid 1000 |
| 31 | # the volume is mounted with root permissions |
| 32 | # this initContainer changes ownership to uid 1000 gid 1000 |
| 33 | # (tried using a securityContext in the pod spec, but it didn't seem to work) |
| 34 | - name: set-permissions |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 35 | image: {{ include "repositoryGenerator.image.busybox" . }} |
Jack Lucas | 8d8c9b9 | 2020-03-30 15:56:46 -0400 | [diff] [blame] | 36 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 37 | command: |
| 38 | - sh |
| 39 | - -c |
| 40 | - chown -R 1000:1000 /genprocessor-data |
| 41 | volumeMounts: |
| 42 | - mountPath: /genprocessor-data |
| 43 | name: genprocessor-data |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 44 | containers: |
| 45 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 46 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 47 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 48 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 49 | {{- if eq .Values.liveness.enabled true }} |
| 50 | livenessProbe: |
| 51 | tcpSocket: |
| 52 | port: {{ .Values.liveness.port }} |
| 53 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 54 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 55 | {{ end }} |
| 56 | readinessProbe: |
| 57 | tcpSocket: |
| 58 | port: {{ .Values.readiness.port }} |
| 59 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 60 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 61 | env: |
| 62 | - name: GENPROC_ONBOARDING_API_HOST |
| 63 | value: {{ .Values.config.onboardingAPIURL }} |
| 64 | volumeMounts: |
| 65 | - mountPath: /work/ |
| 66 | name: genprocessor-data |
| 67 | resources: {{ include "common.resources" . | nindent 12 }} |
| 68 | - name: {{ include "common.name" . }}-http |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame] | 69 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.httpImage }} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 70 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 71 | volumeMounts: |
| 72 | - mountPath: /www/data |
| 73 | name: genprocessor-data |
| 74 | readOnly: true |
farida azmy | 5093301 | 2021-09-12 12:56:40 +0200 | [diff] [blame] | 75 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 76 | volumes: |
| 77 | - name: genprocessor-data |
| 78 | persistentVolumeClaim: |
| 79 | claimName: {{ include "common.fullname" . }} |
| 80 | imagePullSecrets: |
| 81 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |