Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 1 | # Copyright (C) 2018 AT&T Intellectual Property. |
| 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 | # Global configuration default values that can be inherited by |
| 16 | # all subcharts. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | |
| 20 | # Change to an unused port prefix range to prevent port conflicts |
| 21 | # with other instances running within the same k8s cluster |
| 22 | nodePortPrefix: 302 |
| 23 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 24 | # image pull policy |
| 25 | pullPolicy: IfNotPresent |
| 26 | |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 27 | mariadbGalera: &mariadbGalera |
Andreas Geissler | 2c1ba29 | 2024-01-10 22:20:05 +0100 | [diff] [blame] | 28 | # flag to enable the DB creation via mariadb-operator |
| 29 | useOperator: true |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 30 | #This flag allows SO to instantiate its own mariadb-galera cluster |
Andreas Geissler | f51bbef | 2023-03-31 12:07:23 +0200 | [diff] [blame] | 31 | #When changing it to "true", also set "globalCluster: false" |
| 32 | #as the dependency check will not work otherwise (Chart.yaml) |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 33 | localCluster: false |
Andreas Geissler | f51bbef | 2023-03-31 12:07:23 +0200 | [diff] [blame] | 34 | globalCluster: true |
Andreas Geissler | 576de2d | 2023-10-24 15:38:01 +0200 | [diff] [blame] | 35 | service: mariadb-galera |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 36 | internalPort: 3306 |
| 37 | nameOverride: mariadb-galera |
| 38 | |
Krzysztof Opasiak | 5b51881 | 2020-01-22 00:08:05 +0100 | [diff] [blame] | 39 | ################################################################# |
| 40 | # Secrets metaconfig |
| 41 | ################################################################# |
| 42 | secrets: |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 43 | - uid: neng-db-secret |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 44 | name: &dbUserSecretName '{{ include "common.release" . }}-neng-db-secret' |
Krzysztof Opasiak | 5b51881 | 2020-01-22 00:08:05 +0100 | [diff] [blame] | 45 | type: basicAuth |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 46 | externalSecret: '{{ tpl (default "" .Values.config.db.externalSecret) . }}' |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 47 | login: '{{ .Values.config.db.userName }}' |
| 48 | password: '{{ .Values.config.db.userPassword }}' |
bt2983 | 91566f0 | 2020-05-10 17:06:09 -0600 | [diff] [blame] | 49 | - uid: pol-basic-auth-secret |
| 50 | name: '{{ include "common.release" . }}-pol-basic-auth-secret' |
| 51 | type: basicAuth |
| 52 | externalSecret: '{{ tpl (default "" .Values.config.polBasicAuthSecret) . }}' |
| 53 | login: '{{ .Values.config.polBasicAuthUser }}' |
| 54 | password: '{{ .Values.config.polBasicAuthPassword }}' |
Krzysztof Opasiak | 5b51881 | 2020-01-22 00:08:05 +0100 | [diff] [blame] | 55 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 56 | # sub-chart config |
| 57 | mariadb-galera: |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 58 | db: |
| 59 | user: sdnctl |
| 60 | # password: |
| 61 | externalSecret: *dbUserSecretName |
| 62 | name: &mysqlDbName nengdb |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 63 | nameOverride: nengdb |
| 64 | service: |
| 65 | name: nengdb |
| 66 | portName: nengdbport |
| 67 | replicaCount: 1 |
Andreas Geissler | cfd8434 | 2023-08-16 17:18:49 +0200 | [diff] [blame] | 68 | mariadbOperator: |
| 69 | galera: |
| 70 | enabled: false |
| 71 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 72 | persistence: |
| 73 | enabled: true |
| 74 | mountSubPath: network-name-gen/data |
| 75 | |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 76 | mariadb-init: |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 77 | config: |
| 78 | userCredentialsExternalSecret: *dbUserSecretName |
| 79 | mysqlDatabase: *mysqlDbName |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 80 | nameOverride: nengdb-init |
vladimir turok | d804418 | 2023-07-27 16:28:36 +0200 | [diff] [blame] | 81 | serviceAccount: |
| 82 | nameOverride: nengdb-init |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 83 | |
| 84 | ################################################################# |
| 85 | # Application configuration defaults. |
| 86 | ################################################################# |
| 87 | # application image |
Timoney, Dan (dt5972) | 51c00d6 | 2022-09-28 09:42:07 -0400 | [diff] [blame] | 88 | image: onap/ccsdk-apps-ms-neng:1.4.0 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 89 | pullPolicy: IfNotPresent |
| 90 | |
| 91 | # application configuration |
| 92 | config: |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 93 | db: |
| 94 | userName: nenguser |
| 95 | # userPassword: password |
| 96 | # userCredentialsExternalSecret: some-secret |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 97 | springProfile: live |
Alexis de Talhouët | db36b42 | 2018-09-27 22:43:18 +0200 | [diff] [blame] | 98 | polClientAuth: cHl0aG9uOnRlc3Q= |
bt2983 | 91566f0 | 2020-05-10 17:06:09 -0600 | [diff] [blame] | 99 | polBasicAuthUser: healthcheck |
| 100 | polBasicAuthPassword: zb!XztG34 |
Radoslaw Chmiel | 96397bc | 2022-06-02 19:28:13 +0200 | [diff] [blame] | 101 | polUrl: |
| 102 | https: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision |
Andreas Geissler | 0ab0806 | 2023-01-24 10:24:30 +0100 | [diff] [blame] | 103 | http: http://policy-xacml-pdp:6969/policy/pdpx/v1/decision |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 104 | polEnv: TEST |
| 105 | polReqId: xx |
Dan Timoney | 7ec6cb6 | 2021-10-26 10:59:36 -0400 | [diff] [blame] | 106 | disableHostVerification: true |
Alexis de Talhouët | db36b42 | 2018-09-27 22:43:18 +0200 | [diff] [blame] | 107 | aaiCertPass: changeit |
| 108 | aaiCertPath: /opt/etc/config/aai_keystore |
| 109 | aaiAuth: QUFJOkFBSQ== |
Radoslaw Chmiel | 96397bc | 2022-06-02 19:28:13 +0200 | [diff] [blame] | 110 | aaiUri: |
| 111 | https: https://aai:8443/aai/v14/ |
Andreas Geissler | 0ab0806 | 2023-01-24 10:24:30 +0100 | [diff] [blame] | 112 | http: http://aai:80/aai/v14/ |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 113 | |
| 114 | # default number of instances |
| 115 | replicaCount: 1 |
| 116 | |
| 117 | nodeSelector: {} |
| 118 | |
| 119 | affinity: {} |
| 120 | |
| 121 | # probe configuration parameters |
| 122 | liveness: |
| 123 | initialDelaySeconds: 10 |
| 124 | periodSeconds: 10 |
| 125 | # necessary to disable liveness probe when setting breakpoints |
| 126 | # in debugger so K8s doesn't restart unresponsive container |
| 127 | enabled: false |
| 128 | |
| 129 | readiness: |
| 130 | initialDelaySeconds: 10 |
| 131 | periodSeconds: 10 |
| 132 | |
| 133 | service: |
| 134 | type: ClusterIP |
| 135 | name: neng-serv |
Radoslaw Chmiel | 96397bc | 2022-06-02 19:28:13 +0200 | [diff] [blame] | 136 | portName: http |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 137 | internalPort: 8080 |
| 138 | externalPort: 8080 |
| 139 | |
| 140 | ingress: |
| 141 | enabled: false |
| 142 | |
| 143 | resources: {} |
Andreas Geissler | 6212653 | 2023-08-08 12:57:52 +0200 | [diff] [blame] | 144 | |
| 145 | #Pods Service Account |
| 146 | serviceAccount: |
| 147 | nameOverride: network-name-gen |
| 148 | roles: |
| 149 | - read |