[POLICY] Upgrade image versions
[oom.git] / kubernetes / policy / components / policy-clamp-ac-http-ppnt / values.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2021-2022 Nordix Foundation.
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   persistence: {}
24   aafEnabled: true
25
26 #################################################################
27 # Secrets metaconfig
28 #################################################################
29 secrets:
30   - uid: restserver-secret
31     type: basicAuth
32     externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}'
33     login: '{{ .Values.restServer.user }}'
34     password: '{{ .Values.restServer.password }}'
35     passwordPolicy: required
36   - uid: keystore-password
37     type: password
38     externalSecret: '{{ tpl (default "" .Values.certStores.keyStorePasswordExternalSecret) . }}'
39     password: '{{ .Values.certStores.keyStorePassword }}'
40     passwordPolicy: required
41   - uid: truststore-password
42     type: password
43     externalSecret: '{{ tpl (default "" .Values.certStores.trustStorePasswordExternalSecret) . }}'
44     password: '{{ .Values.certStores.trustStorePassword }}'
45     passwordPolicy: required
46
47 certStores:
48   keyStorePassword: Pol1cy_0nap
49   trustStorePassword: Pol1cy_0nap
50
51 certInitializer:
52   nameOverride: policy-clamp-ac-http-ppnt-cert-initializer
53   aafDeployFqi: deployer@people.osaaf.org
54   aafDeployPass: demo123456!
55   fqdn: policy
56   fqi: policy@policy.onap.org
57   public_fqdn: policy.onap.org
58   cadi_latitude: "0.0"
59   cadi_longitude: "0.0"
60   credsPath: /opt/app/osaaf/local
61   app_ns: org.osaaf.aaf
62   uid: 100
63   gid: 101
64   aaf_add_config: >
65     echo "export KEYSTORE='{{ .Values.credsPath }}/org.onap.policy.p12'" > {{ .Values.credsPath }}/.ci;
66     echo "export KEYSTORE_PASSWD='${cadi_keystore_password_p12}'" >> {{ .Values.credsPath }}/.ci;
67     chown -R {{ .Values.uid }}:{{ .Values.gid }} $(dirname {{ .Values.credsPath }});
68
69
70 #################################################################
71 # Application configuration defaults.
72 #################################################################
73 # application image
74 image: onap/policy-clamp-ac-http-ppnt:6.2.3
75 pullPolicy: Always
76
77 # application configuration
78 restServer:
79   user: participantUser
80   password: zb!XztG34
81
82 # flag to enable debugging - application support required
83 debugEnabled: false
84
85 # default number of instances
86 replicaCount: 1
87
88 nodeSelector: {}
89
90 affinity: {}
91 ingress:
92   enabled: false
93
94 # probe configuration parameters
95 liveness:
96   initialDelaySeconds: 20
97   periodSeconds: 10
98   # necessary to disable liveness probe when setting breakpoints
99   # in debugger so K8s doesn't restart unresponsive container
100   enabled: true
101   port: http-api
102
103 readiness:
104   initialDelaySeconds: 20
105   periodSeconds: 10
106   port: http-api
107
108 service:
109   type: ClusterIP
110   name: policy-clamp-ac-http-ppnt
111   useNodePortExt: true
112   ports:
113     - name: http-api
114       port: 8084
115       nodePort: 42
116
117
118 flavor: small
119 resources:
120   small:
121     limits:
122       cpu: 1
123       memory: 4Gi
124     requests:
125       cpu: 100m
126       memory: 1Gi
127   large:
128     limits:
129       cpu: 2
130       memory: 8Gi
131     requests:
132       cpu: 200m
133       memory: 2Gi
134   unlimited: {}
135 #Pods Service Account
136 serviceAccount:
137   nameOverride: policy-clamp-ac-http-ppnt
138   roles:
139     - read