jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | apiVersion: apps/v1beta1 |
| 16 | kind: StatefulSet |
| 17 | metadata: |
| 18 | name: {{ include "common.fullname" . }} |
| 19 | namespace: {{ include "common.namespace" . }} |
| 20 | labels: |
| 21 | app: {{ include "common.name" . }} |
| 22 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 23 | release: {{ .Release.Name }} |
| 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 26 | serviceName: {{ include "common.servicename" . }}-cluster |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 27 | replicas: {{ .Values.replicaCount }} |
| 28 | podManagementPolicy: Parallel |
| 29 | template: |
| 30 | metadata: |
| 31 | labels: |
| 32 | app: {{ include "common.name" . }} |
| 33 | release: {{ .Release.Name }} |
| 34 | spec: |
| 35 | initContainers: |
| 36 | - command: |
| 37 | - /root/ready.py |
| 38 | args: |
| 39 | - --container-name |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame^] | 40 | - {{ .Values.config.mariadbGalera.chartName }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 41 | env: |
| 42 | - name: NAMESPACE |
| 43 | valueFrom: |
| 44 | fieldRef: |
| 45 | apiVersion: v1 |
| 46 | fieldPath: metadata.namespace |
| 47 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 48 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 49 | name: {{ include "common.name" . }}-readiness |
| 50 | containers: |
| 51 | - name: {{ include "common.name" . }} |
BorislavG | df11cd5 | 2018-05-06 12:55:20 +0000 | [diff] [blame] | 52 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 53 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 54 | command: ["/bin/bash"] |
| 55 | args: ["-c", "/opt/sdnc/bin/startODL.sh"] |
| 56 | ports: |
| 57 | - containerPort: {{ .Values.service.internalPort }} |
| 58 | - containerPort: {{ .Values.service.internalPort2 }} |
| 59 | - containerPort: {{ .Values.service.internalPort3 }} |
| 60 | - containerPort: {{ .Values.service.clusterPort }} |
| 61 | readinessProbe: |
| 62 | tcpSocket: |
| 63 | port: {{ .Values.service.internalPort }} |
| 64 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 65 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 66 | env: |
| 67 | - name: MYSQL_ROOT_PASSWORD |
| 68 | valueFrom: |
| 69 | secretKeyRef: |
| 70 | name: {{ template "common.fullname" . }} |
| 71 | key: db-root-password |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 72 | - name: ODL_ADMIN_PASSWORD |
| 73 | valueFrom: |
| 74 | secretKeyRef: |
| 75 | name: {{ template "common.fullname" . }}-odl |
| 76 | key: odl-password |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 77 | - name: SDNC_DB_PASSWORD |
| 78 | valueFrom: |
| 79 | secretKeyRef: |
| 80 | name: {{ template "common.fullname" . }}-sdnctl |
| 81 | key: db-sdnctl-password |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 82 | - name: SDNC_CONFIG_DIR |
| 83 | value: "{{ .Values.config.configDir }}" |
| 84 | - name: ENABLE_ODL_CLUSTER |
| 85 | value: "{{ .Values.config.enableClustering }}" |
Trevor Tait | 567ff1e | 2018-05-01 16:20:54 -0400 | [diff] [blame] | 86 | - name: MY_ODL_CLUSTER |
| 87 | value: "{{ .Values.config.myODLCluster }}" |
| 88 | - name: PEER_ODL_CLUSTER |
| 89 | value: "{{ .Values.config.peerODLCluster }}" |
| 90 | - name: IS_PRIMARY_CLUSTER |
| 91 | value: "{{ .Values.config.isPrimaryCluster }}" |
| 92 | - name: GEO_ENABLED |
| 93 | value: "{{ .Values.config.geoEnabled}}" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 94 | - name: SDNC_REPLICAS |
| 95 | value: "{{ .Values.replicaCount }}" |
| 96 | - name: MYSQL_HOST |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame^] | 97 | value: "{{.Values.config.mariadbGalera.serviceName}}.{{.Release.Namespace}}" |
Timoney, Dan (dt5972) | 6819bc9 | 2019-02-12 13:30:49 -0500 | [diff] [blame] | 98 | - name: JAVA_HOME |
| 99 | value: "{{ .Values.config.javaHome}}" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 100 | volumeMounts: |
| 101 | - mountPath: /etc/localtime |
| 102 | name: localtime |
| 103 | readOnly: true |
| 104 | - mountPath: /opt/opendaylight/current/etc/org.ops4j.pax.logging.cfg |
| 105 | name: sdnc-logging-cfg-config |
| 106 | subPath: org.ops4j.pax.logging.cfg |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 107 | - mountPath: {{ .Values.config.binDir }}/startODL.sh |
| 108 | name: bin |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 109 | subPath: startODL.sh |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 110 | - mountPath: {{ .Values.config.binDir }}/installSdncDb.sh |
| 111 | name: bin |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 112 | subPath: installSdncDb.sh |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 113 | - mountPath: {{ .Values.config.configDir }}/aaiclient.properties |
| 114 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 115 | subPath: aaiclient.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 116 | - mountPath: {{ .Values.config.configDir }}/dblib.properties |
| 117 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 118 | subPath: dblib.properties |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 119 | - mountPath: {{ .Values.config.configDir }}/lcm-dg.properties |
| 120 | name: properties |
| 121 | subPath: lcm-dg.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 122 | - mountPath: {{ .Values.config.configDir }}/svclogic.properties |
| 123 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 124 | subPath: svclogic.properties |
| 125 | - mountPath: /opt/onap/sdnc/svclogic/config/svclogic.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 126 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 127 | subPath: svclogic.properties |
Alexis de Talhouët | 43c67e0 | 2018-09-20 16:49:16 -0400 | [diff] [blame] | 128 | - mountPath: {{ .Values.config.configDir }}/netbox.properties |
| 129 | name: properties |
| 130 | subPath: netbox.properties |
| 131 | - mountPath: {{ .Values.config.configDir }}/blueprints-processor-adaptor.properties |
| 132 | name: properties |
| 133 | subPath: blueprints-processor-adaptor.properties |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 134 | - mountPath: {{ .Values.persistence.mdsalPath }} |
Mohammadreza Pasandideh | cffec6d | 2018-05-08 17:42:11 -0400 | [diff] [blame] | 135 | name: {{ include "common.fullname" . }}-mdsal |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 136 | - mountPath: /var/log/onap |
| 137 | name: logs |
Rahul Tyagi | 44cc1ac | 2019-03-02 06:15:35 +0000 | [diff] [blame] | 138 | - mountPath: {{ .Values.certpersistence.certPath }} |
| 139 | name: {{ include "common.fullname" . }}-certs |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 140 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 141 | {{ include "common.resources" . | indent 12 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 142 | {{- if .Values.nodeSelector }} |
| 143 | nodeSelector: |
| 144 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 145 | {{- end -}} |
| 146 | {{- if .Values.affinity }} |
| 147 | affinity: |
| 148 | {{ toYaml .Values.affinity | indent 10 }} |
| 149 | {{- end }} |
| 150 | |
| 151 | # side car containers |
| 152 | - name: filebeat-onap |
| 153 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 154 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 155 | volumeMounts: |
| 156 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 157 | name: filebeat-conf |
| 158 | subPath: filebeat.yml |
| 159 | - mountPath: /var/log/onap |
| 160 | name: logs |
| 161 | - mountPath: /usr/share/filebeat/data |
| 162 | name: data-filebeat |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 163 | imagePullSecrets: |
| 164 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 165 | volumes: |
| 166 | - name: localtime |
| 167 | hostPath: |
| 168 | path: /etc/localtime |
| 169 | - name: logs |
| 170 | emptyDir: {} |
| 171 | - name: data-filebeat |
| 172 | emptyDir: {} |
| 173 | - name: filebeat-conf |
| 174 | configMap: |
| 175 | name: {{ include "common.fullname" . }}-filebeat-configmap |
| 176 | - name: sdnc-logging-cfg-config |
| 177 | configMap: |
| 178 | name: {{ include "common.fullname" . }}-log-configmap |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 179 | - name: bin |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 180 | configMap: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 181 | name: {{ include "common.fullname" . }}-bin |
| 182 | defaultMode: 0755 |
| 183 | - name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 184 | configMap: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 185 | name: {{ include "common.fullname" . }}-properties |
| 186 | defaultMode: 0644 |
Rahul Tyagi | 44cc1ac | 2019-03-02 06:15:35 +0000 | [diff] [blame] | 187 | - name: {{ include "common.fullname" . }}-certs |
| 188 | {{ if .Values.certpersistence.enabled }} |
| 189 | persistentVolumeClaim: |
| 190 | claimName: {{ include "common.fullname" . }}-pvc-certs |
| 191 | {{ else }} |
| 192 | emptyDir: {} |
| 193 | {{ end }} |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 194 | {{ if not .Values.persistence.enabled }} |
Mohammadreza Pasandideh | cffec6d | 2018-05-08 17:42:11 -0400 | [diff] [blame] | 195 | - name: {{ include "common.fullname" . }}-mdsal |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 196 | emptyDir: {} |
| 197 | {{ else }} |
| 198 | volumeClaimTemplates: |
| 199 | - metadata: |
Mohammadreza Pasandideh | cffec6d | 2018-05-08 17:42:11 -0400 | [diff] [blame] | 200 | name: {{ include "common.fullname" . }}-mdsal |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 201 | labels: |
| 202 | name: {{ include "common.fullname" . }} |
| 203 | spec: |
| 204 | accessModes: [ {{ .Values.persistence.accessMode }} ] |
Mohammadreza Pasandideh | cffec6d | 2018-05-08 17:42:11 -0400 | [diff] [blame] | 205 | storageClassName: {{ include "common.fullname" . }}-mdsal |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 206 | resources: |
| 207 | requests: |
| 208 | storage: {{ .Values.persistence.size }} |
Alexis de Talhouët | 634b455 | 2018-10-28 21:56:33 -0400 | [diff] [blame] | 209 | selector: |
| 210 | matchLabels: |
| 211 | name: {{ include "common.fullname" . }} |
Mahendra Raghuwanshi | b76cb28 | 2019-04-09 10:13:07 +0000 | [diff] [blame^] | 212 | {{ end }} |