blob: da8bf8c87152a8e90ed71ea16f873cfa1ab6673a [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 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24subChartsOnly:
25 enabled: true
26
27# application image
28repository: nexus3.onap.org:10001
Dan Timoneydfe1ee02020-07-07 09:26:39 -040029image: onap/ccsdk-cds-ui-server:0.7.5
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040030pullPolicy: Always
31
32# application configuration
33config:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040034 app:
35 action:
36 deployBlueprint:
37 grpcEnabled: true
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040038 api:
39 controller:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040040 http:
Abdelmuhaimen Seaudieb727eb2019-11-14 15:02:38 +000041 baseUrl: http://cds-blueprints-processor-http:8081/api/v1
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040042 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040043 processor:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040044 http:
45 baseUrl: http://cds-blueprints-processor-http:8080/api/v1
46 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
47 grpc:
48 host: cds-blueprints-processor-grpc
49 port: 9111
50 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040051
52# default number of instances
53replicaCount: 1
54
55nodeSelector: {}
56
57affinity: {}
58
59# probe configuration parameters
60liveness:
61 httpGet:
62 path: /
63 port: 3000
64 initialDelaySeconds: 30
65 periodSeconds: 10
66 # necessary to disable liveness probe when setting breakpoints
67 # in debugger so K8s doesn't restart unresponsive container
68 enabled: true
69
70readiness:
71 httpGet:
72 path: /ping
73 port: 3000
74 initialDelaySeconds: 30
75 periodSeconds: 10
76
77service:
78 type: NodePort
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040079 portName: cds-ui
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040080 name: cds-ui
81 nodePort: 97
82 internalPort: 3000
83
84ingress:
85 enabled: false
Lucjan Bryndza33315d42019-11-27 14:07:58 +010086 service:
87 - baseaddr: "cdsui"
88 name: "cds-ui"
Sylvain Desbureauxe2e9f072020-05-06 15:19:52 +020089 port: 3000
90 config:
91 ssl: "redirect"
Lucjan Bryndza33315d42019-11-27 14:07:58 +010092
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040093# Resource Limit flavor -By Default using small
94flavor: small
95# Segregation for Different environment (Small and Large)
96resources:
97 small:
98 limits:
99 cpu: 1
100 memory: 1Gi
101 requests:
102 cpu: 10m
103 memory: 100Mi
104 large:
105 limits:
106 cpu: 2
107 memory: 2Gi
108 requests:
109 cpu: 200m
110 memory: 200Mi
111 unlimited: {}