Jakub Latusek | 7dbe0f5 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [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 | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 19 | |
| 20 | apiVersion: apps/v1 |
| 21 | kind: Deployment |
| 22 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 23 | spec: |
| 24 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 25 | replicas: 1 |
| 26 | template: |
| 27 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 28 | spec: |
| 29 | containers: |
| 30 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 99baf8e | 2020-11-21 22:19:29 +0100 | [diff] [blame^] | 31 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 32 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 33 | resources: |
| 34 | {{ include "common.resources" . | indent 12 }} |
| 35 | ports: {{ include "common.containerPorts" . | nindent 10 }} |
| 36 | # disable liveness probe when breakpoints set in debugger |
| 37 | # so K8s doesn't restart unresponsive container |
| 38 | {{- if eq .Values.liveness.enabled true }} |
| 39 | livenessProbe: |
| 40 | tcpSocket: |
Krzysztof Opasiak | 28d372a | 2020-09-09 13:14:27 +0200 | [diff] [blame] | 41 | port: {{ include "common.getPort" (dict "global" . "name" "http") }} |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 42 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 43 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 44 | {{ end -}} |
| 45 | readinessProbe: |
| 46 | tcpSocket: |
Krzysztof Opasiak | 28d372a | 2020-09-09 13:14:27 +0200 | [diff] [blame] | 47 | port: {{ include "common.getPort" (dict "global" . "name" "http") }} |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 48 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 49 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 50 | volumeMounts: |
| 51 | - mountPath: /opt/app/expected-components.json |
| 52 | subPath: expected-components.json |
| 53 | name: {{ include "common.fullname" .}}-expected-components |
| 54 | env: |
| 55 | - name: DCAE_NAMESPACE |
| 56 | value: {{ .Values.dcae_ns }} |
| 57 | - name: ONAP_NAMESPACE |
| 58 | value: {{ include "common.namespace" . }} |
| 59 | - name: HELM_RELEASE |
| 60 | value: {{ include "common.release" . }} |
| 61 | volumes: |
| 62 | - name: {{ include "common.fullname" . }}-expected-components |
| 63 | configMap: |
| 64 | name: {{ include "common.release" . }}-dcaemod-expected-components |
| 65 | imagePullSecrets: |
| 66 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |