blob: 39f9a91f9ec456f4926df75bc9b41fc22b024191 [file] [log] [blame]
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +01001# ===========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
18global:
19 pullPolicy: Always
20
Tomasz Wrobel4982ac32022-02-22 15:39:40 +010021image: onap/sdc-helm-validator:1.3.1
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010022containerPort: &svc_port 8080
23
24config:
25 loggingLevel: INFO
26
27service:
28 type: ClusterIP
29 ports:
30 - name: &port http
31 port: *svc_port
32
AndrewLambb304a322023-04-11 17:05:54 +010033serviceMesh:
34 authorizationPolicy:
35 authorizedPrincipals:
36 - serviceAccount: sdc-be-read
37
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010038liveness:
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020039 initialDelaySeconds: 1
40 periodSeconds: 10
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010041 path: /actuator/health
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020042 successThreshold: 1
43 failureThreshold: 3
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010044 port: *port
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
Sylvain Desbureaux8c9416b2021-05-05 11:12:48 +020049startup:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52 path: /actuator/health
53 successThreshold: 1
54 failureThreshold: 12
55 port: *port
56
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010057flavor: small
58resources:
59 small:
60 limits:
61 cpu: 1
Andreas Geissler79f46842023-06-15 17:00:50 +020062 memory: 0.5Gi
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010063 requests:
Andreas Geissler79f46842023-06-15 17:00:50 +020064 cpu: 0.5
65 memory: 0.5Gi
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010066 large:
67 limits:
68 cpu: 2
69 memory: 1Gi
70 requests:
71 cpu: 1
Andreas Geissler79f46842023-06-15 17:00:50 +020072 memory: 1Gi
Remigiusz Janeczekdccdd2b2021-03-24 12:31:00 +010073 unlimited: {}