Merge "[COMMON] Add custom certs into AAF truststore"
[oom.git] / kubernetes / sdc / components / sdc-helm-validator / values.yaml
1 # ===========LICENSE_START========================================================
2 # Copyright (c) 2021 Nokia. 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 # ============LICENSE_END=========================================================
16
17 # Global values
18 global:
19   pullPolicy: Always
20
21 image: onap/org.onap.sdc.sdc-helm-validator:1.2.0
22 containerPort: &svc_port 8080
23
24 config:
25   loggingLevel: INFO
26
27 service:
28   type: ClusterIP
29   ports:
30     - name: &port http
31       port: *svc_port
32
33 liveness:
34   initialDelaySeconds: 30
35   periodSeconds: 30
36   path: /actuator/health
37   port: *port
38   # necessary to disable liveness probe when setting breakpoints
39   # in debugger so K8s doesn't restart unresponsive container
40   enabled: true
41
42 flavor: small
43 resources:
44   small:
45     limits:
46       cpu: 1
47       memory: 256Mi
48     requests:
49       cpu: 1
50       memory: 256Mi
51   large:
52     limits:
53       cpu: 2
54       memory: 1Gi
55     requests:
56       cpu: 1
57       memory: 256Mi
58   unlimited: {}