[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / policy / components / policy-api / values.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
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 #  SPDX-License-Identifier: Apache-2.0
17 #  ============LICENSE_END=========================================================
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 304
24   persistence: {}
25   envsubstImage: dibi/envsubst
26   aafEnabled: true
27   readinessImage: onap/oom/readiness:3.0.1
28
29 #################################################################
30 # Secrets metaconfig
31 #################################################################
32 secrets:
33   - uid: db-creds
34     type: basicAuth
35     externalSecret: '{{ tpl (default "" .Values.db.credsExternalSecret) . }}'
36     login: '{{ .Values.db.user }}'
37     password: '{{ .Values.db.password }}'
38     passwordPolicy: required
39   - uid: restserver-creds
40     type: basicAuth
41     externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}'
42     login: '{{ .Values.restServer.user }}'
43     password: '{{ .Values.restServer.password }}'
44     passwordPolicy: required
45   - uid: keystore-password
46     type: password
47     externalSecret: '{{ tpl (default "" .Values.certStores.keyStorePasswordExternalSecret) . }}'
48     password: '{{ .Values.certStores.keyStorePassword }}'
49     passwordPolicy: required
50   - uid: truststore-password
51     type: password
52     externalSecret: '{{ tpl (default "" .Values.certStores.trustStorePasswordExternalSecret) . }}'
53     password: '{{ .Values.certStores.trustStorePassword }}'
54     passwordPolicy: required
55
56 certStores:
57   keyStorePassword: Pol1cy_0nap
58   trustStorePassword: Pol1cy_0nap
59
60 certInitializer:
61   nameOverride: policy-api-cert-initializer
62   aafDeployFqi: deployer@people.osaaf.org
63   aafDeployPass: demo123456!
64   fqdn: policy
65   fqi: policy@policy.onap.org
66   public_fqdn: policy.onap.org
67   cadi_latitude: "0.0"
68   cadi_longitude: "0.0"
69   credsPath: /opt/app/osaaf/local
70   app_ns: org.osaaf.aaf
71   uid: 100
72   gid: 101
73   aaf_add_config: >
74     /opt/app/aaf_config/bin/agent.sh;
75     export $(/opt/app/aaf_config/bin/agent.sh local showpass
76     {{ .Values.fqi }} {{ .Values.fqdn }} | grep "^cadi_keystore_password_p12");
77     echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" > {{ .Values.credsPath }}/.ci;
78     echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci;
79     chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }});
80
81
82 #################################################################
83 # Application configuration defaults.
84 #################################################################
85 # application image
86 repository: nexus3.onap.org:10001
87 image: onap/policy-api:2.3.0
88 pullPolicy: Always
89
90 # flag to enable debugging - application support required
91 debugEnabled: false
92
93 # application configuration
94 db:
95   user: policy_user
96   password: policy_user
97   service:
98     name: policy-mariadb
99     internalPort: 3306
100
101 restServer:
102   user: healthcheck
103   password: zb!XztG34
104
105 # default number of instances
106 replicaCount: 1
107
108 nodeSelector: {}
109
110 affinity: {}
111
112 # probe configuration parameters
113 liveness:
114   initialDelaySeconds: 20
115   periodSeconds: 10
116   # necessary to disable liveness probe when setting breakpoints
117   # in debugger so K8s doesn't restart unresponsive container
118   enabled: true
119
120 readiness:
121   initialDelaySeconds: 20
122   periodSeconds: 10
123
124 service:
125   type: ClusterIP
126   name: policy-api
127   portName: policy-api
128   externalPort: 6969
129   internalPort: 6969
130   nodePort: 40
131
132 ingress:
133   enabled: false
134
135 flavor: small
136 resources:
137   small:
138     limits:
139       cpu: 1
140       memory: 4Gi
141     requests:
142       cpu: 100m
143       memory: 1Gi
144   large:
145     limits:
146       cpu: 2
147       memory: 8Gi
148     requests:
149       cpu: 200m
150       memory: 2Gi
151   unlimited: {}
152