83839f80bfe8001190696dcf01120f3ba53b088f
[oom.git] / kubernetes / policy / components / policy-clamp-ac-pf-ppnt / values.yaml
1 #  ============LICENSE_START=======================================================
2 #   Copyright (C) 2021-2023 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   #Strimzi Kafka properties
25   useStrimziKafka: set-via-parent-chart-global-value
26   kafkaTopics:
27     acRuntimeTopic:
28       name: &acRuntimeTopic policy.clamp-runtime-acm
29
30 #################################################################
31 # Secrets metaconfig
32 #################################################################
33 secrets:
34   - uid: restserver-secret
35     type: basicAuth
36     externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}'
37     login: '{{ .Values.restServer.participantppnt.user }}'
38     password: '{{ .Values.restServer.participantppnt.password }}'
39     passwordPolicy: required
40   - uid: api-secret
41     type: basicAuth
42     externalSecret: '{{ tpl (default "" .Values.restServer.apiUserExternalSecret) . }}'
43     login: '{{ .Values.restServer.api.user }}'
44     password: '{{ .Values.restServer.api.password }}'
45     passwordPolicy: required
46   - uid: pap-secret
47     type: basicAuth
48     externalSecret: '{{ tpl (default "" .Values.restServer.papUserExternalSecret) . }}'
49     login: '{{ .Values.restServer.pap.user }}'
50     password: '{{ .Values.restServer.pap.password }}'
51     passwordPolicy: required
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56 # application image
57 image: onap/policy-clamp-ac-pf-ppnt:6.4.1
58 pullPolicy: Always
59
60 componentName: &componentName policy-clamp-ac-pf-ppnt
61
62 # flag to enable debugging - application support required
63 debugEnabled: false
64
65 # default number of instances
66 replicaCount: 1
67
68 # application configuration
69 restServer:
70   api:
71     user: policyadmin
72     password: none
73   pap:
74     user: policyadmin
75     password: none
76   participantppnt:
77     user: participantUser
78     password: none
79
80 nodeSelector: {}
81
82 affinity: {}
83
84 ingress:
85   enabled: false
86
87 # probe configuration parameters
88 liveness:
89   initialDelaySeconds: 20
90   periodSeconds: 10
91   # necessary to disable liveness probe when setting breakpoints
92   # in debugger so K8s doesn't restart unresponsive container
93   enabled: true
94   port: http-api
95
96 readiness:
97   initialDelaySeconds: 20
98   periodSeconds: 10
99   port: http-api
100
101 service:
102   type: ClusterIP
103   name: *componentName
104   internalPort: 8085
105   ports:
106     - name: http-api
107       port: 8085
108
109 flavor: small
110 resources:
111   small:
112     limits:
113       cpu: 1
114       memory: 4Gi
115     requests:
116       cpu: 100m
117       memory: 1Gi
118   large:
119     limits:
120       cpu: 2
121       memory: 8Gi
122     requests:
123       cpu: 200m
124       memory: 2Gi
125   unlimited: {}
126 #Pods Service Account
127 serviceAccount:
128   nameOverride: *componentName
129   roles:
130     - read
131
132 config:
133 # Any new property can be added in the env by setting in overrides in the format mentioned below
134 # All the added properties must be in "key: value" format instead of yaml.
135 # additional:
136 #   spring.config.max-size: 200
137 #   spring.config.min-size: 10
138
139 # Strimzi Kafka config
140 kafkaUser:
141   authenticationType: scram-sha-512
142   acls:
143     - name: *componentName
144       type: group
145       operations: [Read]
146     - name: *acRuntimeTopic
147       type: topic
148       operations: [Read, Write]
149
150 readinessCheck:
151   wait_for:
152     - message-router