[COMMON] Harmonize resource settings
[oom.git] / kubernetes / policy / components / policy-clamp-ac-k8s-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   nodePortPrefixExt: 304
24   persistence: {}
25   #Strimzi Kafka properties
26   useStrimziKafka: set-via-parent-chart-global-value
27   kafkaTopics:
28     acRuntimeTopic:
29       name: &acRuntimeTopic policy.clamp-runtime-acm
30
31 #################################################################
32 # Secrets metaconfig
33 #################################################################
34 secrets:
35   - uid: restserver-secret
36     type: basicAuth
37     externalSecret: '{{ tpl (default "" .Values.restServer.credsExternalSecret) . }}'
38     login: '{{ .Values.restServer.user }}'
39     password: '{{ .Values.restServer.password }}'
40     passwordPolicy: required
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45 # application image
46 image: onap/policy-clamp-ac-k8s-ppnt:7.0.3
47 pullPolicy: Always
48
49 componentName: &componentName policy-clamp-ac-k8s-ppnt
50
51 # flag to enable debugging - application support required
52 debugEnabled: false
53
54 # application configuration
55 restServer:
56   user: participantUser
57   password: zb!XztG34
58
59 # default number of instances
60 replicaCount: 1
61
62 nodeSelector: {}
63
64 affinity: {}
65 # probe configuration parameters
66 liveness:
67   initialDelaySeconds: 60
68   periodSeconds: 10
69   # necessary to disable liveness probe when setting breakpoints
70   # in debugger so K8s doesn't restart unresponsive container
71   enabled: true
72   port: http-api
73
74 readiness:
75   initialDelaySeconds: 60
76   periodSeconds: 10
77   port: http-api
78
79 service:
80   type: ClusterIP
81   name: *componentName
82   ports:
83   - name: http-api
84     port: 8083
85
86 ingress:
87   enabled: false
88
89 serviceMesh:
90   authorizationPolicy:
91     authorizedPrincipals:
92       - serviceAccount: message-router-read
93
94 flavor: small
95 resources:
96   small:
97     limits:
98       cpu: "1"
99       memory: "1Gi"
100     requests:
101       cpu: "0.5"
102       memory: "1Gi"
103   large:
104     limits:
105       cpu: "2"
106       memory: "2Gi"
107     requests:
108       cpu: "1"
109       memory: "2Gi"
110   unlimited: {}
111
112 #Pods Service Account
113 serviceAccount:
114   nameOverride: *componentName
115   roles:
116     - create
117 # Update the config here for permitting repositories and protocols
118 repoList:
119   helm:
120     repos:
121       -
122         repoName: kong
123         address: https://charts.konghq.com
124       -
125         repoName: bitnami
126         address: https://charts.bitnami.com/bitnami
127
128     protocols:
129       - http
130       - https
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