[MARIADB] Make the MariaDB service Operator aware
[oom.git] / kubernetes / common / network-name-gen / values.yaml
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
24   # image pull policy
25   pullPolicy: IfNotPresent
26
27   mariadbGalera: &mariadbGalera
28     #This flag allows SO to instantiate its own mariadb-galera cluster
29     #When changing it to "true", also set "globalCluster: false"
30     #as the dependency check will not work otherwise (Chart.yaml)
31     localCluster: false
32     globalCluster: true
33     service: mariadb-galera
34     internalPort: 3306
35     nameOverride: mariadb-galera
36
37 #################################################################
38 # Secrets metaconfig
39 #################################################################
40 secrets:
41   - uid: neng-db-secret
42     name: &dbUserSecretName '{{ include "common.release" . }}-neng-db-secret'
43     type: basicAuth
44     externalSecret: '{{ tpl (default "" .Values.config.db.externalSecret) . }}'
45     login: '{{ .Values.config.db.userName }}'
46     password: '{{ .Values.config.db.userPassword }}'
47   - uid: pol-basic-auth-secret
48     name: '{{ include "common.release" . }}-pol-basic-auth-secret'
49     type: basicAuth
50     externalSecret: '{{ tpl (default "" .Values.config.polBasicAuthSecret) . }}'
51     login: '{{ .Values.config.polBasicAuthUser }}'
52     password: '{{ .Values.config.polBasicAuthPassword }}'
53
54 # sub-chart config
55 mariadb-galera:
56   db:
57     user: sdnctl
58     # password:
59     externalSecret: *dbUserSecretName
60     name: &mysqlDbName nengdb
61   nameOverride: nengdb
62   service:
63     name: nengdb
64     portName: nengdbport
65   replicaCount: 1
66   mariadbOperator:
67     galera:
68       enabled: false
69
70   persistence:
71     enabled: true
72     mountSubPath: network-name-gen/data
73
74 mariadb-init:
75   config:
76     userCredentialsExternalSecret: *dbUserSecretName
77     mysqlDatabase: *mysqlDbName
78   nameOverride: nengdb-init
79   serviceAccount:
80     nameOverride: nengdb-init
81
82 #################################################################
83 # Application configuration defaults.
84 #################################################################
85 # application image
86 image: onap/ccsdk-apps-ms-neng:1.4.0
87 pullPolicy: IfNotPresent
88
89 # application configuration
90 config:
91   db:
92     userName: nenguser
93     # userPassword: password
94     # userCredentialsExternalSecret: some-secret
95   springProfile: live
96   polClientAuth: cHl0aG9uOnRlc3Q=
97   polBasicAuthUser: healthcheck
98   polBasicAuthPassword: zb!XztG34
99   polUrl:
100     https: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision
101     http: http://policy-xacml-pdp:6969/policy/pdpx/v1/decision
102   polEnv: TEST
103   polReqId: xx
104   disableHostVerification: true
105   aaiCertPass: changeit
106   aaiCertPath: /opt/etc/config/aai_keystore
107   aaiAuth: QUFJOkFBSQ==
108   aaiUri:
109     https: https://aai:8443/aai/v14/
110     http: http://aai:80/aai/v14/
111
112 # default number of instances
113 replicaCount: 1
114
115 nodeSelector: {}
116
117 affinity: {}
118
119 # probe configuration parameters
120 liveness:
121   initialDelaySeconds: 10
122   periodSeconds: 10
123   # necessary to disable liveness probe when setting breakpoints
124   # in debugger so K8s doesn't restart unresponsive container
125   enabled: false
126
127 readiness:
128   initialDelaySeconds: 10
129   periodSeconds: 10
130
131 service:
132   type: ClusterIP
133   name: neng-serv
134   portName: http
135   internalPort: 8080
136   externalPort: 8080
137
138 ingress:
139   enabled: false
140
141 resources: {}
142
143 #Pods Service Account
144 serviceAccount:
145   nameOverride: network-name-gen
146   roles:
147     - read