blob: b3dab719bd5979a173d3215d02b53619406ba7a5 [file] [log] [blame]
Mukul2b4e7532018-08-03 10:41:29 +00001# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
BorislavG12b61582018-03-28 19:31:32 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
BorislavG12b61582018-03-28 19:31:32 +030020
21#################################################################
22# Application configuration defaults.
23#################################################################
GregSulek973bfad2018-09-19 06:48:37 -040024
25flavor: small
26
BorislavG12b61582018-03-28 19:31:32 +030027# application image
Taka Chof9cd2cd2020-05-23 09:27:19 -040028image: onap/appc-cdt-image:1.7.2
BorislavG12b61582018-03-28 19:31:32 +030029pullPolicy: Always
30
31# application configuration
32config: {}
33
34# default number of instances
35replicaCount: 1
36
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
43 initialDelaySeconds: 10
44 periodSeconds: 10
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
49readiness:
50 initialDelaySeconds: 10
51 periodSeconds: 10
52
53service:
54 type: NodePort
55 name: appc-cdt
Taka Cho2fb02612019-03-03 13:09:56 -050056 externalPort: 18080
57 internalPort: 18080
BorislavG12b61582018-03-28 19:31:32 +030058 nodePort: 89
59
60ingress:
61 enabled: false
Lucjan Bryndza684487d2019-12-02 12:20:10 +010062 service:
63 - baseaddr: appccdt
64 name: "appc-cdt"
65 port: 18080
66 config:
Sylvain Desbureaux48a2dd52020-05-06 15:19:03 +020067 ssl: "redirect"
BorislavG12b61582018-03-28 19:31:32 +030068
Mandeep Khinda60d36d42018-09-24 15:15:48 +000069# Configure resource requests and limits
70# ref: http://kubernetes.io/docs/user-guide/compute-resources/
GregSulek973bfad2018-09-19 06:48:37 -040071resources:
72 small:
73 limits:
74 cpu: 1
75 memory: 1Gi
76 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +000077 cpu: 0.5
78 memory: 500Mi
GregSulek973bfad2018-09-19 06:48:37 -040079 large:
80 limits:
81 cpu: 2
82 memory: 2Gi
83 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +000084 cpu: 1
85 memory: 1Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +000086 unlimited: {}