blob: 2ef8736c0caf1b98917ea985ceb596553c7beb4d [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
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:1.1.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26subChartsOnly:
27 enabled: true
28
29# application image
30repository: nexus3.onap.org:10001
Timoney, Dan (dt5972)c153af02019-05-28 11:39:06 -040031image: onap/ccsdk-cds-ui-server:0.4.3
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040032pullPolicy: Always
33
34# application configuration
35config:
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040036 api:
37 controller:
38 baseUrl: http://cds-controller-blueprints:8080/api/v1
39 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
40 processor:
Nirvan Ramjuttunded4cee2019-05-09 16:50:53 -040041 baseUrl: http://cds-blueprints-processor-http:8080/api/v1
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040042 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040043
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 httpGet:
54 path: /
55 port: 3000
56 initialDelaySeconds: 30
57 periodSeconds: 10
58 # necessary to disable liveness probe when setting breakpoints
59 # in debugger so K8s doesn't restart unresponsive container
60 enabled: true
61
62readiness:
63 httpGet:
64 path: /ping
65 port: 3000
66 initialDelaySeconds: 30
67 periodSeconds: 10
68
69service:
70 type: NodePort
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040071 portName: cds-ui
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040072 name: cds-ui
73 nodePort: 97
74 internalPort: 3000
75
76ingress:
77 enabled: false
78# Resource Limit flavor -By Default using small
79flavor: small
80# Segregation for Different environment (Small and Large)
81resources:
82 small:
83 limits:
84 cpu: 1
85 memory: 1Gi
86 requests:
87 cpu: 10m
88 memory: 100Mi
89 large:
90 limits:
91 cpu: 2
92 memory: 2Gi
93 requests:
94 cpu: 200m
95 memory: 200Mi
96 unlimited: {}