[COMMON][CASSANDRA] Uses new tpls for repos / images
[oom.git] / kubernetes / cds / charts / cds-ui / values.yaml
1 # 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 #################################################################
19 global:
20   nodePortPrefixExt: 304
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23
24 subChartsOnly:
25   enabled: true
26
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/ccsdk-cds-ui-server:1.0.1
30 pullPolicy: Always
31
32 # application configuration
33 config:
34   app:
35     action:
36       deployBlueprint:
37         grpcEnabled: true
38   api:
39     controller:
40       http:
41        baseUrl: http://cds-blueprints-processor-http:8081/api/v1
42        authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
43     processor:
44       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==
51
52 # default number of instances
53 replicaCount: 1
54
55 nodeSelector: {}
56
57 affinity: {}
58
59 # probe configuration parameters
60 liveness:
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
70 readiness:
71   httpGet:
72     path: /ping
73     port: 3000
74   initialDelaySeconds: 30
75   periodSeconds: 10
76
77 service:
78   type: NodePort
79   portName: cds-ui
80   name: cds-ui
81   nodePort: 97
82   internalPort: 3000
83
84 ingress:
85   enabled: false
86   service:
87     - baseaddr: "cdsui"
88       name: "cds-ui"
89       port: 3000
90   config:
91     ssl: "redirect"
92
93 # Resource Limit flavor -By Default using small
94 flavor: small
95 # Segregation for Different environment (Small and Large)
96 resources:
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: {}