blob: 9c0d90649f32a09b44a9470143fd7f8b47ce6184 [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
21image: onap/org.onap.sdc.sdc-helm-validator:1.2.0
22containerPort: &svc_port 8080
23
24config:
25 loggingLevel: INFO
26
27service:
28 type: ClusterIP
29 ports:
30 - name: &port http
31 port: *svc_port
32
33liveness:
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
42flavor: small
43resources:
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: {}