blob: d38d6e25cdad9daf11cfd14a0b6d8a994cbc798d [file] [log] [blame]
Mandeep Khinda60d36d42018-09-24 15:15:48 +00001# 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#################################################################
18global:
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 Khinda60d36d42018-09-24 15:15:48 +000024 # image pull policy
25 pullPolicy: IfNotPresent
26
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010027 mariadbGalera: &mariadbGalera
28 #This flag allows SO to instantiate its own mariadb-galera cluster
29 localCluster: false
30 service: mariadb-galera
31 internalPort: 3306
32 nameOverride: mariadb-galera
33
Krzysztof Opasiak5b518812020-01-22 00:08:05 +010034#################################################################
35# Secrets metaconfig
36#################################################################
37secrets:
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010038 - uid: neng-db-secret
39 name: '{{ include "common.release" . }}-neng-db-secret'
Krzysztof Opasiak5b518812020-01-22 00:08:05 +010040 type: basicAuth
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010041 externalSecret: '{{ tpl (default "" .Values.config.db.userCredentialsExternalSecret) . }}'
42 login: '{{ .Values.config.db.userName }}'
43 password: '{{ .Values.config.db.userPassword }}'
bt298391566f02020-05-10 17:06:09 -060044 - uid: pol-basic-auth-secret
45 name: '{{ include "common.release" . }}-pol-basic-auth-secret'
46 type: basicAuth
47 externalSecret: '{{ tpl (default "" .Values.config.polBasicAuthSecret) . }}'
48 login: '{{ .Values.config.polBasicAuthUser }}'
49 password: '{{ .Values.config.polBasicAuthPassword }}'
Krzysztof Opasiak5b518812020-01-22 00:08:05 +010050
Mandeep Khinda60d36d42018-09-24 15:15:48 +000051# sub-chart config
52mariadb-galera:
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010053 config: &mariadbConfig
54 userCredentialsExternalSecret: '{{ include "common.release" . }}-neng-db-secret'
55 mysqlDatabase: nengdb
Mandeep Khinda60d36d42018-09-24 15:15:48 +000056 nameOverride: nengdb
57 service:
58 name: nengdb
59 portName: nengdbport
60 replicaCount: 1
61 persistence:
62 enabled: true
63 mountSubPath: network-name-gen/data
64
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010065mariadb-init:
66 config: *mariadbConfig
67 nameOverride: nengdb-init
Mandeep Khinda60d36d42018-09-24 15:15:48 +000068
69#################################################################
70# Application configuration defaults.
71#################################################################
72# application image
Dan Timoneyafa47d02020-11-12 10:33:58 -050073image: onap/ccsdk-apps-ms-neng:1.0.2
Mandeep Khinda60d36d42018-09-24 15:15:48 +000074pullPolicy: IfNotPresent
75
76# application configuration
77config:
Krzysztof Opasiak9df4c552020-02-14 16:45:20 +010078 db:
79 userName: nenguser
80 # userPassword: password
81 # userCredentialsExternalSecret: some-secret
Mandeep Khinda60d36d42018-09-24 15:15:48 +000082 springProfile: live
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020083 polClientAuth: cHl0aG9uOnRlc3Q=
bt298391566f02020-05-10 17:06:09 -060084 polBasicAuthUser: healthcheck
85 polBasicAuthPassword: zb!XztG34
bt298306961eb2020-05-10 15:12:55 -060086 polUrl: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision
Mandeep Khinda60d36d42018-09-24 15:15:48 +000087 polEnv: TEST
88 polReqId: xx
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020089 aaiCertPass: changeit
90 aaiCertPath: /opt/etc/config/aai_keystore
91 aaiAuth: QUFJOkFBSQ==
92 aaiUri: https://aai:8443/aai/v14/
Mandeep Khinda60d36d42018-09-24 15:15:48 +000093
94# default number of instances
95replicaCount: 1
96
97nodeSelector: {}
98
99affinity: {}
100
101# probe configuration parameters
102liveness:
103 initialDelaySeconds: 10
104 periodSeconds: 10
105 # necessary to disable liveness probe when setting breakpoints
106 # in debugger so K8s doesn't restart unresponsive container
107 enabled: false
108
109readiness:
110 initialDelaySeconds: 10
111 periodSeconds: 10
112
113service:
114 type: ClusterIP
115 name: neng-serv
116 portName: neng-serv-port
117 internalPort: 8080
118 externalPort: 8080
119
120ingress:
121 enabled: false
122
123resources: {}