blob: 697602f209b4b6e4f624385dc307e7f6bed82f2e [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
Sylvain Desbureaux1d7647e2021-02-08 15:29:05 +010025#################################################################
26# AAF part
27#################################################################
28certInitializer:
29 nameOverride: cds-cert-initializer
30 aafDeployFqi: deployer@people.osaaf.org
31 aafDeployPass: demo123456!
32 # aafDeployCredsExternalSecret: some secret
33 fqdn: sdnc-cds
34 fqi: sdnc-cds@sdnc-cds.onap.org
35 public_fqdn: sdnc-cds.onap.org
36 cadi_longitude: "0.0"
37 cadi_latitude: "0.0"
38 app_ns: org.osaaf.aaf
39 credsPath: /opt/app/osaaf/local
40 fqi_namespace: org.onap.sdnc-cds
41 aaf_add_config: >
42 /opt/app/aaf_config/bin/agent.sh;
43 /opt/app/aaf_config/bin/agent.sh local showpass
44 {{.Values.fqi}} {{ .Values.fqdn }} > {{ .Values.credsPath }}/mycreds.prop
45
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040046# application image
Jozsef Csongvai08515b72021-04-28 17:04:57 -040047image: onap/ccsdk-cds-ui-server:1.1.4
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040048pullPolicy: Always
49
50# application configuration
51config:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040052 app:
53 action:
54 deployBlueprint:
55 grpcEnabled: true
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040056 api:
57 controller:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040058 http:
Abdelmuhaimen Seaudieb727eb2019-11-14 15:02:38 +000059 baseUrl: http://cds-blueprints-processor-http:8081/api/v1
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040060 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040061 processor:
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040062 http:
63 baseUrl: http://cds-blueprints-processor-http:8080/api/v1
64 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
65 grpc:
66 host: cds-blueprints-processor-grpc
67 port: 9111
68 authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040069
70# default number of instances
71replicaCount: 1
72
73nodeSelector: {}
74
75affinity: {}
76
77# probe configuration parameters
78liveness:
79 httpGet:
80 path: /
81 port: 3000
82 initialDelaySeconds: 30
83 periodSeconds: 10
84 # necessary to disable liveness probe when setting breakpoints
85 # in debugger so K8s doesn't restart unresponsive container
86 enabled: true
87
88readiness:
89 httpGet:
90 path: /ping
91 port: 3000
92 initialDelaySeconds: 30
93 periodSeconds: 10
94
95service:
96 type: NodePort
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040097 portName: cds-ui
Alexis de Talhouët108e28f2019-04-14 18:54:56 -040098 name: cds-ui
99 nodePort: 97
100 internalPort: 3000
101
102ingress:
103 enabled: false
Lucjan Bryndza33315d42019-11-27 14:07:58 +0100104 service:
105 - baseaddr: "cdsui"
106 name: "cds-ui"
Sylvain Desbureauxe2e9f072020-05-06 15:19:52 +0200107 port: 3000
108 config:
109 ssl: "redirect"
Lucjan Bryndza33315d42019-11-27 14:07:58 +0100110
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400111# Resource Limit flavor -By Default using small
112flavor: small
113# Segregation for Different environment (Small and Large)
114resources:
115 small:
116 limits:
117 cpu: 1
118 memory: 1Gi
119 requests:
120 cpu: 10m
121 memory: 100Mi
122 large:
123 limits:
124 cpu: 2
125 memory: 2Gi
126 requests:
127 cpu: 200m
128 memory: 200Mi
129 unlimited: {}