Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
| 3 | # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. |
| 4 | # ================================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # ============LICENSE_END========================================================= |
| 17 | |
| 18 | apiVersion: extensions/v1beta1 |
| 19 | kind: Deployment |
| 20 | metadata: |
| 21 | name: {{ include "common.fullname" . }} |
| 22 | namespace: {{ include "common.namespace" . }} |
| 23 | labels: |
| 24 | app: {{ include "common.name" . }} |
| 25 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 26 | release: {{ .Release.Name }} |
| 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 29 | replicas: 1 |
| 30 | template: |
| 31 | metadata: |
| 32 | labels: |
| 33 | app: {{ include "common.name" . }} |
| 34 | release: {{ .Release.Name }} |
| 35 | spec: |
| 36 | initContainers: |
| 37 | - name: {{ include "common.name" . }}-readiness |
| 38 | image: {{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }} |
| 39 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 40 | command: |
| 41 | - /root/ready.py |
| 42 | args: |
| 43 | - --container-name |
| 44 | - dcae-deployment-handler |
| 45 | - --container-name |
| 46 | - consul-server |
| 47 | - --container-name |
| 48 | - pdp |
| 49 | - "-t" |
| 50 | - "45" |
| 51 | env: |
| 52 | - name: NAMESPACE |
| 53 | valueFrom: |
| 54 | fieldRef: |
| 55 | apiVersion: v1 |
| 56 | fieldPath: metadata.namespace |
| 57 | - name: init-tls |
| 58 | env: |
| 59 | - name: POD_IP |
| 60 | valueFrom: |
| 61 | fieldRef: |
| 62 | apiVersion: v1 |
| 63 | fieldPath: status.podIP |
| 64 | image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }} |
| 65 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 66 | resources: {} |
| 67 | volumeMounts: |
| 68 | - mountPath: /opt/tls/shared |
| 69 | name: tls-info |
| 70 | - name: init-consul |
| 71 | image: {{ .Values.global.consulLoaderRepository }}/{{ .Values.global.consulLoaderImage }} |
| 72 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 73 | args: |
| 74 | - --key |
| 75 | - policy_handler|/phconfig/config.json |
| 76 | resources: {} |
| 77 | volumeMounts: |
| 78 | - mountPath: /phconfig |
| 79 | name: ph-config |
| 80 | containers: |
| 81 | - name: {{ include "common.name" . }} |
| 82 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 83 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 84 | resources: |
| 85 | {{ include "common.resources" . | indent 12 }} |
| 86 | ports: |
| 87 | - containerPort: {{ .Values.service.internalPort }} |
| 88 | # disable liveness probe when breakpoints set in debugger |
| 89 | # so K8s doesn't restart unresponsive container |
| 90 | {{- if eq .Values.liveness.enabled true }} |
| 91 | livenessProbe: |
| 92 | tcpSocket: |
| 93 | port: {{ .Values.service.internalPort }} |
| 94 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 95 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 96 | {{ end }} |
| 97 | readinessProbe: |
| 98 | httpGet: |
| 99 | path: {{ .Values.readiness.path }} |
| 100 | port: {{ .Values.service.internalPort }} |
| 101 | scheme: {{ .Values.readiness.scheme }} |
| 102 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 103 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 104 | volumeMounts: |
| 105 | - mountPath: /opt/app/policy_handler/logs |
| 106 | name: component-log |
| 107 | - mountPath: /opt/app/policy_handler/etc/tls/certs/ |
| 108 | name: tls-info |
| 109 | env: |
| 110 | - name: CONSUL_HOST |
| 111 | value: consul-server.{{ include "common.namespace" . }} |
| 112 | - name: CLOUDIFY_USER |
| 113 | value: admin |
| 114 | - name: CLOUDIFY_PASSWORD |
| 115 | value: admin |
| 116 | - name: CONFIG_BINDING_SERVICE |
| 117 | value: config-binding-service |
| 118 | - name: POD_IP |
| 119 | valueFrom: |
| 120 | fieldRef: |
| 121 | apiVersion: v1 |
| 122 | fieldPath: status.podIP |
| 123 | - name: {{ include "common.name" . }}-filebeat |
| 124 | env: |
| 125 | - name: POD_IP |
| 126 | valueFrom: |
| 127 | fieldRef: |
| 128 | apiVersion: v1 |
| 129 | fieldPath: status.podIP |
| 130 | image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }} |
| 131 | imagePullPolicy: IfNotPresent |
| 132 | resources: {} |
| 133 | volumeMounts: |
Jack Lucas | 128c0ad | 2019-09-04 15:44:33 -0400 | [diff] [blame^] | 134 | - mountPath: /var/log/onap/policy-handler |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 135 | name: component-log |
| 136 | - mountPath: /usr/share/filebeat/data |
| 137 | name: filebeat-data |
| 138 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 139 | name: filebeat-conf |
| 140 | subPath: filebeat.yml |
| 141 | volumes: |
| 142 | - emptyDir: {} |
| 143 | name: component-log |
| 144 | - emptyDir: {} |
| 145 | name: filebeat-data |
| 146 | - configMap: |
| 147 | defaultMode: 420 |
| 148 | name: {{ include "common.fullname" . }}-filebeat-configmap |
| 149 | name: filebeat-conf |
| 150 | - emptyDir: {} |
| 151 | name: tls-info |
| 152 | - configMap: |
| 153 | defaultMode: 422 |
| 154 | name: {{ include "common.fullname" . }}-configmap |
| 155 | name: ph-config |
| 156 | imagePullSecrets: |
| 157 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |