blob: 1c7f628b2c4ba8e31299f3ffe333ed94e6aec538 [file] [log] [blame]
Alexis de Talhouët108e28f2019-04-14 18:54:56 -04001# Copyright © 2018 Orange
2# Modifications Copyright © 2018 Amdocs, Bell Canada
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#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefixExt: 304
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040021
22subChartsOnly:
23 enabled: true
24
25# application image
Dan Timoneyc100dc52020-11-19 08:08:42 -050026image: onap/ccsdk-cds-ui-server:1.0.3
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040027pullPolicy: Always
28
29# application configuration
30config:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040031 app:
32 action:
33 deployBlueprint:
34 grpcEnabled: true
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040035 api:
36 controller:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040037 http:
Abdelmuhaimen Seaudieb727eb2019-11-14 15:02:38 +000038 baseUrl: http://cds-blueprints-processor-http:8081/api/v1
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040039 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040040 processor:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040041 http:
42 baseUrl: http://cds-blueprints-processor-http:8080/api/v1
43 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
44 grpc:
45 host: cds-blueprints-processor-grpc
46 port: 9111
47 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040048
49# default number of instances
50replicaCount: 1
51
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
58 httpGet:
59 path: /
60 port: 3000
61 initialDelaySeconds: 30
62 periodSeconds: 10
63 # necessary to disable liveness probe when setting breakpoints
64 # in debugger so K8s doesn't restart unresponsive container
65 enabled: true
66
67readiness:
68 httpGet:
69 path: /ping
70 port: 3000
71 initialDelaySeconds: 30
72 periodSeconds: 10
73
74service:
75 type: NodePort
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040076 portName: cds-ui
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040077 name: cds-ui
78 nodePort: 97
79 internalPort: 3000
80
81ingress:
82 enabled: false
Lucjan Bryndza33315d42019-11-27 14:07:58 +010083 service:
84 - baseaddr: "cdsui"
85 name: "cds-ui"
Sylvain Desbureauxe2e9f072020-05-06 15:19:52 +020086 port: 3000
87 config:
88 ssl: "redirect"
Lucjan Bryndza33315d42019-11-27 14:07:58 +010089
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040090# Resource Limit flavor -By Default using small
91flavor: small
92# Segregation for Different environment (Small and Large)
93resources:
94 small:
95 limits:
96 cpu: 1
97 memory: 1Gi
98 requests:
99 cpu: 10m
100 memory: 100Mi
101 large:
102 limits:
103 cpu: 2
104 memory: 2Gi
105 requests:
106 cpu: 200m
107 memory: 200Mi
108 unlimited: {}