Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 1 | {{/* |
egernug | 2757833 | 2020-03-26 10:27:55 +0000 | [diff] [blame] | 2 | # Copyright © 2020 Samsung Electronics |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 3 | # Copyright © 2017 Amdocs, Bell Canada |
| 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. |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 16 | */}} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 17 | |
Grzegorz-Lis | 1318a77 | 2020-07-23 15:08:43 +0200 | [diff] [blame] | 18 | apiVersion: apps/v1 |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 19 | kind: StatefulSet |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 20 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 21 | spec: |
Grzegorz-Lis | 1318a77 | 2020-07-23 15:08:43 +0200 | [diff] [blame] | 22 | selector: |
| 23 | matchLabels: |
| 24 | app: {{ include "common.name" . }} |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 25 | serviceName: {{ include "common.servicename" . }}-cluster |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 26 | replicas: {{ .Values.replicaCount }} |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 27 | selector: {{- include "common.selectors" . | nindent 4 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 28 | podManagementPolicy: Parallel |
| 29 | template: |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 30 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 31 | spec: |
| 32 | initContainers: |
| 33 | - command: |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 34 | - sh |
| 35 | args: |
| 36 | - -c |
| 37 | - "cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 38 | env: |
| 39 | - name: AAI_CLIENT_NAME |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 40 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "aai-user-creds" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 41 | - name: AAI_CLIENT_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 42 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "aai-user-creds" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 43 | - name: MODELSERVICE_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 44 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-user-creds" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 45 | - name: MODELSERVICE_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 46 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "modeling-user-creds" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 47 | - name: RESTCONF_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 48 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 49 | - name: RESTCONF_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 50 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restconf-creds" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 51 | - name: ANSIBLE_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 52 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ansible-creds" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 53 | - name: ANSIBLE_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 54 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "ansible-creds" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 55 | - name: SCALEOUT_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 56 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "scaleout-creds" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 57 | - name: SCALEOUT_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 58 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "scaleout-creds" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 59 | - name: NETBOX_APIKEY |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 60 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "netbox-apikey" "key" "password") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 61 | - name: SDNC_DB_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 62 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 63 | - name: SDNC_DB_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 64 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }} |
Alexander Dehn | 2ae954d | 2020-10-20 15:57:42 +0000 | [diff] [blame] | 65 | - name: ODL_ADMIN_USERNAME |
| 66 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "login") | indent 10 }} |
| 67 | - name: ODL_ADMIN_PASSWORD |
| 68 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "password") | indent 10 }} |
| 69 | |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 70 | volumeMounts: |
| 71 | - mountPath: /config-input |
| 72 | name: config-input |
| 73 | - mountPath: /config |
| 74 | name: properties |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 75 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 76 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 77 | name: {{ include "common.name" . }}-update-config |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 78 | {{ if .Values.dgbuilder.enabled -}} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 79 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 80 | - /app/ready.py |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 81 | args: |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 82 | {{ if or .Values.dgbuilder.enabled .Values.config.sdnr.enabled -}} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 83 | - --container-name |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 84 | - {{ include "common.mariadbService" . }} |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 85 | {{ end -}} |
| 86 | {{ if .Values.config.sdnr.enabled -}} |
| 87 | - --container-name |
| 88 | - {{ include "common.name" . }}-sdnrdb-init-job |
| 89 | {{ end -}} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 90 | env: |
| 91 | - name: NAMESPACE |
| 92 | valueFrom: |
| 93 | fieldRef: |
| 94 | apiVersion: v1 |
| 95 | fieldPath: metadata.namespace |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 96 | image: {{ include "repositoryGenerator.image.readiness" . }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 97 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 98 | name: {{ include "common.name" . }}-readiness |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 99 | {{ end -}} |
Krzysztof Opasiak | 8ab4547 | 2020-05-12 12:53:50 +0200 | [diff] [blame] | 100 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
| 101 | |
egernug | 2757833 | 2020-03-26 10:27:55 +0000 | [diff] [blame] | 102 | {{ if .Values.global.cmpv2Enabled }} |
| 103 | - name: certs-init |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 104 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.global.platform.certServiceClient.image }} |
egernug | 2757833 | 2020-03-26 10:27:55 +0000 | [diff] [blame] | 105 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 106 | env: |
| 107 | - name: REQUEST_URL |
| 108 | value: {{ .Values.global.platform.certServiceClient.envVariables.requestURL }} |
| 109 | - name: REQUEST_TIMEOUT |
| 110 | value: "30000" |
| 111 | - name: OUTPUT_PATH |
| 112 | value: {{ .Values.global.platform.certServiceClient.envVariables.cert_path }} |
| 113 | - name: CA_NAME |
| 114 | value: {{ .Values.global.platform.certServiceClient.envVariables.caName }} |
| 115 | - name: COMMON_NAME |
| 116 | value: {{ .Values.global.platform.certServiceClient.envVariables.common_name }} |
| 117 | - name: ORGANIZATION |
| 118 | value: {{ .Values.global.platform.certServiceClient.envVariables.cmpv2Organization }} |
| 119 | - name: ORGANIZATION_UNIT |
| 120 | value: {{ .Values.global.platform.certServiceClient.envVariables.cmpv2OrganizationalUnit }} |
| 121 | - name: LOCATION |
| 122 | value: {{ .Values.global.platform.certServiceClient.envVariables.cmpv2Location }} |
| 123 | - name: STATE |
| 124 | value: {{ .Values.global.platform.certServiceClient.envVariables.cmpv2State }} |
| 125 | - name: COUNTRY |
| 126 | value: {{ .Values.global.platform.certServiceClient.envVariables.cmpv2Country }} |
| 127 | - name: KEYSTORE_PATH |
| 128 | value: {{ .Values.global.platform.certServiceClient.envVariables.keystorePath }} |
| 129 | - name: KEYSTORE_PASSWORD |
| 130 | value: {{ .Values.global.platform.certServiceClient.envVariables.keystorePassword }} |
| 131 | - name: TRUSTSTORE_PATH |
| 132 | value: {{ .Values.global.platform.certServiceClient.envVariables.truststorePath }} |
| 133 | - name: TRUSTSTORE_PASSWORD |
| 134 | value: {{ .Values.global.platform.certServiceClient.envVariables.truststorePassword }} |
| 135 | terminationMessagePath: /dev/termination-log |
| 136 | terminationMessagePolicy: File |
| 137 | volumeMounts: |
| 138 | - mountPath: {{ .Values.global.platform.certServiceClient.envVariables.cert_path }} |
| 139 | name: certs |
| 140 | - mountPath: {{ .Values.global.platform.certServiceClient.secret.mountPath }} |
| 141 | name: certservice-tls-volume |
| 142 | {{ end }} |
| 143 | |
Timoney, Dan (dt5972) | ba4d2eb | 2019-05-07 13:32:42 -0400 | [diff] [blame] | 144 | - name: {{ include "common.name" . }}-chown |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 145 | image: {{ include "repositoryGenerator.image.busybox" . }} |
Lucjan Bryndza | 5c63e93 | 2020-06-25 08:43:23 +0000 | [diff] [blame] | 146 | command: |
| 147 | - sh |
| 148 | args: |
| 149 | - -c |
| 150 | - chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.persistence.mdsalPath }} |
| 151 | {{- if .Values.global.aafEnabled }} |
| 152 | - chown -R {{ .Values.config.odlUid }}:{{ .Values.config.odlGid}} {{ .Values.certInitializer.credsPath }} |
| 153 | {{- end }} |
Timoney, Dan (dt5972) | ba4d2eb | 2019-05-07 13:32:42 -0400 | [diff] [blame] | 154 | volumeMounts: |
Krzysztof Opasiak | 8ab4547 | 2020-05-12 12:53:50 +0200 | [diff] [blame] | 155 | {{ include "common.certInitializer.volumeMount" . | indent 10 }} |
Timoney, Dan (dt5972) | ba4d2eb | 2019-05-07 13:32:42 -0400 | [diff] [blame] | 156 | - mountPath: {{ .Values.persistence.mdsalPath }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 157 | name: {{ include "common.fullname" . }}-data |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 158 | containers: |
| 159 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 160 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 161 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 162 | command: ["/bin/bash"] |
Dan Timoney | 830b85f | 2020-05-27 16:00:05 -0400 | [diff] [blame] | 163 | args: ["-c", "/opt/onap/sdnc/bin/startODL.sh"] |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 164 | ports: |
| 165 | - containerPort: {{ .Values.service.internalPort }} |
| 166 | - containerPort: {{ .Values.service.internalPort2 }} |
| 167 | - containerPort: {{ .Values.service.internalPort3 }} |
| 168 | - containerPort: {{ .Values.service.clusterPort }} |
| 169 | readinessProbe: |
| 170 | tcpSocket: |
| 171 | port: {{ .Values.service.internalPort }} |
| 172 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 173 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 174 | env: |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 175 | - name: MYSQL_ROOT_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 176 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-password" "key" "password") | indent 12 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 177 | - name: ODL_ADMIN_USERNAME |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 178 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "login") | indent 12 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 179 | - name: ODL_ADMIN_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 180 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "odl-creds" "key" "password") | indent 12 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 181 | - name: SDNC_DB_USER |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 182 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 12 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 183 | - name: SDNC_DB_PASSWORD |
Krzysztof Opasiak | ab7a6bb | 2020-03-24 03:30:51 +0100 | [diff] [blame] | 184 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 12 }} |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 185 | - name: SDNC_CONFIG_DIR |
| 186 | value: "{{ .Values.config.configDir }}" |
| 187 | - name: ENABLE_ODL_CLUSTER |
| 188 | value: "{{ .Values.config.enableClustering }}" |
| 189 | - name: MY_ODL_CLUSTER |
| 190 | value: "{{ .Values.config.myODLCluster }}" |
| 191 | - name: PEER_ODL_CLUSTER |
| 192 | value: "{{ .Values.config.peerODLCluster }}" |
| 193 | - name: IS_PRIMARY_CLUSTER |
| 194 | value: "{{ .Values.config.isPrimaryCluster }}" |
| 195 | - name: GEO_ENABLED |
| 196 | value: "{{ .Values.config.geoEnabled}}" |
| 197 | - name: SDNC_AAF_ENABLED |
| 198 | value: "{{ .Values.global.aafEnabled}}" |
| 199 | - name: SDNC_REPLICAS |
| 200 | value: "{{ .Values.replicaCount }}" |
| 201 | - name: MYSQL_HOST |
| 202 | value: {{ include "common.mariadbService" . }} |
| 203 | - name: JAVA_HOME |
| 204 | value: "{{ .Values.config.javaHome}}" |
Dan Timoney | a98765b | 2020-09-14 11:57:55 -0400 | [diff] [blame] | 205 | - name: JAVA_OPTS |
| 206 | value: "-Xms{{.Values.config.odl.javaOptions.minMemory}} -Xmx{{.Values.config.odl.javaOptions.maxMemory}}" |
Sylvain Desbureaux | bcf7251 | 2020-07-22 10:45:18 +0200 | [diff] [blame] | 207 | - name: KARAF_CONSOLE_LOG_LEVEL |
| 208 | value: "{{ include "common.log.level" . }}" |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 209 | - name: SDNRWT |
| 210 | value: "{{ .Values.config.sdnr.enabled | default "false"}}" |
| 211 | {{- if eq .Values.config.sdnr.mode "web" }} |
| 212 | - name: SDNRDM |
| 213 | value: "true" |
| 214 | {{- end }} |
| 215 | - name: SDNRONLY |
| 216 | value: "{{ .Values.config.sdnr.sdnronly | default "false" }}" |
| 217 | - name: SDNRDBURL |
| 218 | {{- $prefix := ternary "https" "http" .Values.global.aafEnabled}} |
| 219 | value: "{{$prefix}}://{{ .Values.elasticsearch.service.name | default "sdnrdb"}}.{{.Release.Namespace}}:{{.Values.elasticsearch.service.port | default "9200"}}" |
| 220 | {{- if .Values.config.sdnr.sdnrdbTrustAllCerts }} |
| 221 | - name: SDNRDBTRUSTALLCERTS |
| 222 | value: "true" |
| 223 | {{ end }} |
| 224 | |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 225 | volumeMounts: |
Krzysztof Opasiak | 8ab4547 | 2020-05-12 12:53:50 +0200 | [diff] [blame] | 226 | {{ include "common.certInitializer.volumeMount" . | indent 10 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 227 | - mountPath: /etc/localtime |
| 228 | name: localtime |
| 229 | readOnly: true |
| 230 | - mountPath: /opt/opendaylight/current/etc/org.ops4j.pax.logging.cfg |
| 231 | name: sdnc-logging-cfg-config |
| 232 | subPath: org.ops4j.pax.logging.cfg |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 233 | - mountPath: {{ .Values.config.binDir }}/installSdncDb.sh |
| 234 | name: bin |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 235 | subPath: installSdncDb.sh |
Konrad Bańka | 5ea1db3 | 2020-04-06 14:32:46 +0200 | [diff] [blame] | 236 | - mountPath: {{ .Values.config.ccsdkConfigDir }}/aaiclient.properties |
| 237 | name: properties |
| 238 | subPath: aaiclient.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 239 | - mountPath: {{ .Values.config.configDir }}/aaiclient.properties |
| 240 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 241 | subPath: aaiclient.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 242 | - mountPath: {{ .Values.config.configDir }}/dblib.properties |
| 243 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 244 | subPath: dblib.properties |
jmac | 7c43467 | 2018-05-11 20:14:17 +0000 | [diff] [blame] | 245 | - mountPath: {{ .Values.config.configDir }}/lcm-dg.properties |
| 246 | name: properties |
| 247 | subPath: lcm-dg.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 248 | - mountPath: {{ .Values.config.configDir }}/svclogic.properties |
| 249 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 250 | subPath: svclogic.properties |
| 251 | - mountPath: /opt/onap/sdnc/svclogic/config/svclogic.properties |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 252 | name: properties |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 253 | subPath: svclogic.properties |
Alexis de Talhouët | 43c67e0 | 2018-09-20 16:49:16 -0400 | [diff] [blame] | 254 | - mountPath: {{ .Values.config.configDir }}/netbox.properties |
| 255 | name: properties |
| 256 | subPath: netbox.properties |
| 257 | - mountPath: {{ .Values.config.configDir }}/blueprints-processor-adaptor.properties |
| 258 | name: properties |
| 259 | subPath: blueprints-processor-adaptor.properties |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 260 | - mountPath: {{ .Values.persistence.mdsalPath }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 261 | name: {{ include "common.fullname" . }}-data |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 262 | - mountPath: /var/log/onap |
| 263 | name: logs |
Timoney, Dan (dt5972) | 5877477 | 2019-08-21 16:50:54 -0400 | [diff] [blame] | 264 | - mountPath: {{ .Values.config.odl.salConfigDir }}/{{ .Values.config.odl.salConfigVersion}}/sal-clustering-config-{{ .Values.config.odl.salConfigVersion}}-akkaconf.xml |
| 265 | name: properties |
| 266 | subPath: akka.conf |
| 267 | - mountPath: {{ .Values.config.odl.etcDir }}/org.opendaylight.controller.cluster.datastore.cfg |
| 268 | name: properties |
| 269 | subPath: org.opendaylight.controller.cluster.datastore.cfg |
| 270 | - mountPath: {{ .Values.config.odl.binDir }}/setenv |
| 271 | name: properties |
| 272 | subPath: setenv |
Alexander Dehn | 9b797d6 | 2020-04-21 09:53:50 +0000 | [diff] [blame] | 273 | - mountPath: {{ .Values.config.odl.etcDir }}/mountpoint-registrar.properties |
| 274 | name: properties |
| 275 | subPath: mountpoint-registrar.properties |
| 276 | - mountPath: {{ .Values.config.odl.etcDir }}/mountpoint-state-provider.properties |
| 277 | name: properties |
| 278 | subPath: mountpoint-state-provider.properties |
egernug | b8f8807 | 2020-10-08 11:05:20 +0100 | [diff] [blame] | 279 | {{ if .Values.global.cmpv2Enabled }} |
egernug | 2757833 | 2020-03-26 10:27:55 +0000 | [diff] [blame] | 280 | - mountPath: {{ .Values.global.platform.certServiceClient.envVariables.cert_path }} |
| 281 | name: certs |
egernug | b8f8807 | 2020-10-08 11:05:20 +0100 | [diff] [blame] | 282 | {{- end }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 283 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 284 | {{ include "common.resources" . | indent 12 }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 285 | {{- if .Values.nodeSelector }} |
| 286 | nodeSelector: |
| 287 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 288 | {{- end -}} |
| 289 | {{- if .Values.affinity }} |
| 290 | affinity: |
| 291 | {{ toYaml .Values.affinity | indent 10 }} |
| 292 | {{- end }} |
| 293 | |
| 294 | # side car containers |
| 295 | - name: filebeat-onap |
Sylvain Desbureaux | cbc703c | 2020-11-19 17:52:07 +0100 | [diff] [blame] | 296 | image: {{ include "repositoryGenerator.image.logging" . }} |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 297 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 298 | volumeMounts: |
| 299 | - mountPath: /usr/share/filebeat/filebeat.yml |
| 300 | name: filebeat-conf |
| 301 | subPath: filebeat.yml |
| 302 | - mountPath: /var/log/onap |
| 303 | name: logs |
| 304 | - mountPath: /usr/share/filebeat/data |
| 305 | name: data-filebeat |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 306 | imagePullSecrets: |
| 307 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 308 | volumes: |
| 309 | - name: localtime |
| 310 | hostPath: |
| 311 | path: /etc/localtime |
| 312 | - name: logs |
| 313 | emptyDir: {} |
| 314 | - name: data-filebeat |
| 315 | emptyDir: {} |
| 316 | - name: filebeat-conf |
| 317 | configMap: |
| 318 | name: {{ include "common.fullname" . }}-filebeat-configmap |
| 319 | - name: sdnc-logging-cfg-config |
| 320 | configMap: |
| 321 | name: {{ include "common.fullname" . }}-log-configmap |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 322 | - name: bin |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 323 | configMap: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 324 | name: {{ include "common.fullname" . }}-bin |
| 325 | defaultMode: 0755 |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 326 | - name: config-input |
jmac | 065e2ce | 2018-03-29 01:18:02 +0000 | [diff] [blame] | 327 | configMap: |
jmac | a68f4cb | 2018-05-10 22:44:19 +0000 | [diff] [blame] | 328 | name: {{ include "common.fullname" . }}-properties |
| 329 | defaultMode: 0644 |
Krzysztof Opasiak | cc97c73 | 2020-02-25 23:31:20 +0100 | [diff] [blame] | 330 | - name: properties |
| 331 | emptyDir: |
| 332 | medium: Memory |
egernug | b8f8807 | 2020-10-08 11:05:20 +0100 | [diff] [blame] | 333 | {{ if .Values.global.cmpv2Enabled }} |
egernug | 2757833 | 2020-03-26 10:27:55 +0000 | [diff] [blame] | 334 | - name: certs |
| 335 | emptyDir: |
| 336 | medium: Memory |
| 337 | - name: certservice-tls-volume |
| 338 | secret: |
| 339 | secretName: {{ .Values.global.platform.certServiceClient.secret.name }} |
egernug | b8f8807 | 2020-10-08 11:05:20 +0100 | [diff] [blame] | 340 | {{- end }} |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 341 | {{ if not .Values.persistence.enabled }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 342 | - name: {{ include "common.fullname" . }}-data |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 343 | emptyDir: {} |
| 344 | {{ else }} |
Krzysztof Opasiak | 8ab4547 | 2020-05-12 12:53:50 +0200 | [diff] [blame] | 345 | {{ include "common.certInitializer.volumes" . | nindent 8 }} |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 346 | volumeClaimTemplates: |
| 347 | - metadata: |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 348 | name: {{ include "common.fullname" . }}-data |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 349 | labels: |
| 350 | name: {{ include "common.fullname" . }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 351 | chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 352 | release: "{{ include "common.release" . }}" |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 353 | heritage: "{{ .Release.Service }}" |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 354 | spec: |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 355 | accessModes: |
| 356 | - {{ .Values.persistence.accessMode }} |
| 357 | storageClassName: {{ include "common.storageClass" . }} |
jmac | 8d6dc96 | 2018-04-26 14:26:55 +0000 | [diff] [blame] | 358 | resources: |
| 359 | requests: |
| 360 | storage: {{ .Values.persistence.size }} |
Sylvain Desbureaux | 25e01d5 | 2019-12-09 11:06:39 +0100 | [diff] [blame] | 361 | {{- end }} |