mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Jorge Hernandez | aa5ba98 | 2019-03-25 19:13:39 -0500 | [diff] [blame] | 2 | # Modifications Copyright © 2018-2019 AT&T |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
mayankg2703 | c798546 | 2018-03-29 14:24:23 +0000 | [diff] [blame] | 16 | apiVersion: apps/v1beta1 |
| 17 | kind: StatefulSet |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 18 | metadata: |
| 19 | name: {{ include "common.fullname" . }} |
| 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
| 22 | app: {{ include "common.name" . }} |
| 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 24 | release: {{ .Release.Name }} |
| 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
Mahendra Raghuwanshi | c1395ec | 2018-04-26 03:19:03 +0000 | [diff] [blame] | 27 | serviceName: {{ include "common.servicename" . }} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 28 | replicas: {{ .Values.replicaCount }} |
mayankg2703 | c798546 | 2018-03-29 14:24:23 +0000 | [diff] [blame] | 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 32 | template: |
| 33 | metadata: |
| 34 | labels: |
| 35 | app: {{ include "common.name" . }} |
| 36 | release: {{ .Release.Name }} |
| 37 | spec: |
| 38 | initContainers: |
| 39 | - command: |
| 40 | - /root/ready.py |
| 41 | args: |
| 42 | - --container-name |
| 43 | - {{ .Values.global.mariadb.nameOverride }} |
| 44 | - --container-name |
| 45 | - {{ .Values.global.nexus.nameOverride }} |
| 46 | env: |
| 47 | - name: NAMESPACE |
| 48 | valueFrom: |
| 49 | fieldRef: |
| 50 | apiVersion: v1 |
| 51 | fieldPath: metadata.namespace |
| 52 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 53 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 54 | name: {{ include "common.name" . }}-readiness |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 55 | containers: |
| 56 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 57 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 58 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 59 | ports: |
| 60 | - containerPort: {{ .Values.service.externalPort }} |
| 61 | - containerPort: {{ .Values.service.externalPort2 }} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 62 | {{- if eq .Values.liveness.enabled true }} |
| 63 | livenessProbe: |
| 64 | tcpSocket: |
| 65 | port: {{ .Values.service.externalPort }} |
| 66 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 67 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 68 | {{- end }} |
| 69 | readinessProbe: |
| 70 | tcpSocket: |
| 71 | port: {{ .Values.service.externalPort }} |
| 72 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 73 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 74 | env: |
| 75 | - name: REPLICAS |
| 76 | value: "{{ .Values.replicaCount }}" |
| 77 | volumeMounts: |
| 78 | - mountPath: /etc/localtime |
| 79 | name: localtime |
| 80 | readOnly: true |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 81 | - mountPath: /tmp/policy-install/config/feature-healthcheck.conf |
| 82 | name: drools-secret |
| 83 | subPath: feature-healthcheck.conf |
Jorge Hernandez | 328eadb | 2018-05-15 07:52:21 -0500 | [diff] [blame] | 84 | - mountPath: /tmp/policy-install/config/feature-pooling-dmaap.conf |
| 85 | name: drools-config |
| 86 | subPath: feature-pooling-dmaap.conf |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 87 | - mountPath: /tmp/policy-install/config/base.conf |
| 88 | name: drools-config |
| 89 | subPath: base.conf |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 90 | - mountPath: /var/log/onap |
| 91 | name: policy-logs |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 92 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 93 | {{ include "common.resources" . | indent 12 }} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 94 | {{- if .Values.nodeSelector }} |
| 95 | - image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.loggingImage }}" |
dkamdocs | 6ad3a1c | 2018-12-21 09:25:53 +0000 | [diff] [blame] | 96 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 97 | name: filebeat-onap |
| 98 | volumeMounts: |
| 99 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 100 | name: filebeat-conf |
| 101 | subPath: filebeat.yml |
| 102 | - mountPath: /var/log/onap |
| 103 | name: policy-logs |
| 104 | - mountPath: /usr/share/filebeat/data |
| 105 | name: policy-data-filebeat |
| 106 | nodeSelector: |
| 107 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 108 | {{- end -}} |
| 109 | {{- if .Values.affinity }} |
| 110 | affinity: |
| 111 | {{ toYaml .Values.affinity | indent 10 }} |
| 112 | {{- end }} |
| 113 | volumes: |
| 114 | - name: localtime |
| 115 | hostPath: |
| 116 | path: /etc/localtime |
| 117 | - name: filebeat-conf |
| 118 | configMap: |
| 119 | name: {{ .Release.Name }}-filebeat-configmap |
| 120 | - name: policy-logs |
| 121 | emptyDir: {} |
| 122 | - name: policy-data-filebeat |
| 123 | emptyDir: {} |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 124 | - name: drools-config |
| 125 | configMap: |
| 126 | name: {{ include "common.fullname" . }}-configmap |
| 127 | items: |
| 128 | - key: base.conf |
| 129 | path: base.conf |
| 130 | mode: 0755 |
Jorge Hernandez | 328eadb | 2018-05-15 07:52:21 -0500 | [diff] [blame] | 131 | - key: feature-pooling-dmaap.conf |
| 132 | path: feature-pooling-dmaap.conf |
| 133 | mode: 0755 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 134 | - name: drools-secret |
| 135 | secret: |
| 136 | secretName: {{ include "common.fullname" . }}-secret |
| 137 | items: |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 138 | - key: feature-healthcheck.conf |
| 139 | path: feature-healthcheck.conf |
| 140 | mode: 0644 |
mayankg2703 | ced8514 | 2018-03-20 05:42:53 +0000 | [diff] [blame] | 141 | imagePullSecrets: |
| 142 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |