[CDS] Update hardcoded certificates
[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
25 #################################################################
26 # Secrets metaconfig
27 #################################################################
28 secrets:
29   - uid: cds-certs-pass
30     type: password
31     externalSecret: '{{ tpl (default "" .Values.certs.certsExternalSecret) . }}'
32     password: '{{ .Values.certs.password }}'
33
34 certs:
35   password: "DG*HkOIe5W^F}XYI6o!2sD(6"
36   #certsExternalSecret:
37
38 subChartsOnly:
39   enabled: true
40
41 # application image
42 repository: nexus3.onap.org:10001
43 image: onap/ccsdk-cds-ui-server:1.0.3
44 pullPolicy: Always
45
46 # application configuration
47 config:
48   app:
49     action:
50       deployBlueprint:
51         grpcEnabled: true
52   api:
53     controller:
54       http:
55        baseUrl: http://cds-blueprints-processor-http:8081/api/v1
56        authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
57     processor:
58       http:
59        baseUrl: http://cds-blueprints-processor-http:8080/api/v1
60        authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
61       grpc:
62         host: cds-blueprints-processor-grpc
63         port: 9111
64         authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
65
66 # default number of instances
67 replicaCount: 1
68
69 nodeSelector: {}
70
71 affinity: {}
72
73 # probe configuration parameters
74 liveness:
75   httpGet:
76     path: /
77     port: 3000
78   initialDelaySeconds: 30
79   periodSeconds: 10
80   # necessary to disable liveness probe when setting breakpoints
81   # in debugger so K8s doesn't restart unresponsive container
82   enabled: true
83
84 readiness:
85   httpGet:
86     path: /ping
87     port: 3000
88   initialDelaySeconds: 30
89   periodSeconds: 10
90
91 service:
92   type: NodePort
93   portName: cds-ui
94   name: cds-ui
95   nodePort: 97
96   internalPort: 3000
97
98 ingress:
99   enabled: false
100   service:
101     - baseaddr: "cdsui"
102       name: "cds-ui"
103       port: 3000
104   config:
105     ssl: "redirect"
106
107 # Resource Limit flavor -By Default using small
108 flavor: small
109 # Segregation for Different environment (Small and Large)
110 resources:
111   small:
112     limits:
113       cpu: 1
114       memory: 1Gi
115     requests:
116       cpu: 10m
117       memory: 100Mi
118   large:
119     limits:
120       cpu: 2
121       memory: 2Gi
122     requests:
123       cpu: 200m
124       memory: 200Mi
125   unlimited: {}