Jack Lucas | d41dbdb | 2021-02-16 11:07:28 -0500 | [diff] [blame^] | 1 | {{/* |
| 2 | #============LICENSE_START======================================================== |
| 3 | # ================================================================================ |
| 4 | # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved. |
| 5 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
| 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | */}} |
| 20 | |
| 21 | apiVersion: apps/v1 |
| 22 | kind: Deployment |
| 23 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 24 | spec: |
| 25 | replicas: 1 |
| 26 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 27 | template: |
| 28 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 29 | spec: |
| 30 | containers: |
| 31 | - name: {{ include "common.name" . }} |
| 32 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
| 33 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 34 | resources: |
| 35 | {{ include "common.resources" . | indent 12 }} |
| 36 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 37 | # disable liveness probe when breakpoints set in debugger |
| 38 | # so K8s doesn't restart unresponsive container |
| 39 | {{- if eq .Values.liveness.enabled true }} |
| 40 | livenessProbe: |
| 41 | tcpSocket: |
| 42 | port: {{ include "common.getPort" (dict "global" . "name" "http") }} |
| 43 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 44 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 45 | {{ end -}} |
| 46 | readinessProbe: |
| 47 | tcpSocket: |
| 48 | port: {{ include "common.getPort" (dict "global" . "name" "http") }} |
| 49 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 50 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 51 | volumeMounts: |
| 52 | - mountPath: /opt/app/expected-components.json |
| 53 | subPath: expected-components.json |
| 54 | name: {{ include "common.fullname" .}}-expected-components |
| 55 | env: |
| 56 | - name: DCAE_NAMESPACE |
| 57 | value: {{ include "common.namespace" . }} |
| 58 | - name: ONAP_NAMESPACE |
| 59 | value: {{ include "common.namespace" . }} |
| 60 | - name: HELM_RELEASE |
| 61 | value: {{ include "common.release" . }} |
| 62 | volumes: |
| 63 | - name: {{ include "common.fullname" . }}-expected-components |
| 64 | configMap: |
| 65 | name: {{ include "common.release" . }}-dcae-expected-microservices |
| 66 | imagePullSecrets: |
| 67 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |