[POLICY] frankfurt RC2 images
[oom.git] / kubernetes / policy / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2020 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   envsubstImage: dibi/envsubst
26   ubuntuImage: ubuntu:16.04
27   pdp:
28     nameOverride: pdp
29   pap:
30     nameOverride: pap
31   drools:
32     nameOverride: drools
33   brmwgw:
34     nameOverride: brmsgw
35   nexus:
36     nameOverride: nexus
37   mariadb:
38     # '&mariadbConfig' means we "store" the values for  later use in the file
39     # with '*mariadbConfig' pointer.
40     config: &mariadbConfig
41       mysqlDatabase: policyadmin
42     service: &mariadbService
43       name: policy-mariadb
44       portName: mysql-policy
45       internalPort: 3306
46
47 #################################################################
48 # Secrets metaconfig
49 #################################################################
50 secrets:
51   - uid: db-root-password
52     name: &dbRootPassSecretName '{{ include "common.release" . }}-policy-db-root-password'
53     type: password
54     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "mariadbRootPasswordExternalSecret")) .) (hasSuffix "policy-db-root-password" (index .Values "mariadb-galera" "config" "mariadbRootPasswordExternalSecret"))}}'
55     password: '{{ (index .Values "mariadb-galera" "config" "mariadbRootPassword") }}'
56     policy: generate
57   - uid: db-secret
58     name: &dbSecretName '{{ include "common.release" . }}-policy-db-secret'
59     type: basicAuth
60     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret")) .) (hasSuffix "policy-db-secret" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret"))}}'
61     login: '{{ index .Values "mariadb-galera" "config" "userName" }}'
62     password: '{{ index .Values "mariadb-galera" "config" "userPassword" }}'
63     passwordPolicy: generate
64
65 #################################################################
66 # Application configuration defaults.
67 #################################################################
68 # application image
69 repository: nexus3.onap.org:10001
70 image: onap/policy-pe:1.6.4
71 mariadb_image: library/mariadb:10
72 pullPolicy: Always
73
74 subChartsOnly:
75   enabled: true
76
77 db: &dbSecretsHook
78   credsExternalSecret: *dbSecretName
79
80 pap:
81   nameOverride: pap
82   db: *dbSecretsHook
83 pdp:
84   nameOverride: pdp
85   db: *dbSecretsHook
86 drools:
87   nameOverride: drools
88   db: *dbSecretsHook
89 brmsgw:
90   nameOverride: brmsgw
91   db: *dbSecretsHook
92 policy-api:
93   db: *dbSecretsHook
94 policy-xacml-pdp:
95   db: *dbSecretsHook
96
97 nexus:
98   nameOverride: nexus
99
100 # flag to enable debugging - application support required
101 debugEnabled: false
102
103 # application configuration
104 config:
105   preloadPolicies: false
106   pdpPort: 8081
107
108 # default number of instances
109 replicaCount: 1
110
111 nodeSelector: {}
112
113 affinity: {}
114
115 # probe configuration parameters
116 liveness:
117   initialDelaySeconds: 10
118   periodSeconds: 10
119   # necessary to disable liveness probe when setting breakpoints
120   # in debugger so K8s doesn't restart unresponsive container
121   enabled: true
122
123 readiness:
124   initialDelaySeconds: 10
125   periodSeconds: 10
126
127 service:
128   type: NodePort
129   name: pap
130   portName: pap
131   internalPort: 8443
132   externalPort: 8443
133   nodePort: 19
134   internalPort2: 9091
135   externalPort2: 9091
136   nodePort2: 18
137
138 ingress:
139   enabled: false
140   service:
141     - baseaddr: "policy.api"
142       name: "pap"
143       port: 8443
144   config:
145     ssl: "redirect"
146
147 mariadb-galera:
148   # mariadb-galera.config and global.mariadb.config must be equals
149   config:
150     <<: *mariadbConfig
151     userName: policy_user
152     mariadbRootPasswordExternalSecret: *dbRootPassSecretName
153     userCredentialsExternalSecret: *dbSecretName
154   nameOverride: policy-mariadb
155   # mariadb-galera.service and global.mariadb.service must be equals
156   service: *mariadbService
157   replicaCount: 1
158   persistence:
159     enabled: true
160     mountSubPath: policy/maria/data
161   externalConfig: |-
162     [mysqld]
163     lower_case_table_names = 1
164
165 # Resource Limit flavor -By Default using small
166 flavor: small
167 # Segregation for Different environment (Small and Large)
168 resources:
169   small:
170     limits:
171       cpu: 1
172       memory: 4Gi
173     requests:
174       cpu: 10m
175       memory: 1Gi
176   large:
177     limits:
178       cpu: 2
179       memory: 8Gi
180     requests:
181       cpu: 20m
182       memory: 2Gi
183   unlimited: {}