Enable all helm charts by default in parent chart
[oom.git] / kubernetes / onap / resources / environments / dev.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration overrides.
17 #
18 # These overrides will affect all helm charts (ie. applications)
19 # that are listed below and are 'enabled'.
20 #################################################################
21 global:
22   # Change to an unused port prefix range to prevent port conflicts
23   # with other instances running within the same k8s cluster
24   nodePortPrefix: 302
25
26   # image repositories
27   repository: nexus3.onap.org:10001
28   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
29   # readiness check
30   readinessRepository: oomk8s
31   # logging agent
32   loggingRepository: docker.elastic.co
33
34   # image pull policy
35   pullPolicy: IfNotPresent
36
37   # override default mount path root directory
38   # referenced by persistent volumes and log files
39   persistence:
40     mountPath: /dockerdata
41
42   # flag to enable debugging - application support required
43   debugEnabled: true
44
45 #################################################################
46 # Enable/disable and configure helm charts (ie. applications)
47 # to customize the ONAP deployment.
48 #################################################################
49 aaf:
50   enabled: false
51 aai:
52   enabled: false
53 appc:
54   enabled: false
55 clamp:
56   enabled: true
57 cli:
58   enabled: false
59 consul: # Consul Health Check Monitoring
60   enabled: false
61 dcaegen2:
62   enabled: false
63 esr:
64   enabled: false
65 log:
66   enabled: false
67 message-router:
68   enabled: false
69 mock:
70   enabled: false
71 msb:
72   enabled: false
73 multicloud:
74   enabled: false
75 policy:
76   enabled: false
77 portal:
78   enabled: false
79 robot: # Robot Health Check
80   enabled: true
81 sdc:
82   enabled: false
83 sdnc:
84   enabled: false
85 so: # Service Orchestrator
86   enabled: true
87
88   replicaCount: 1
89
90   liveness:
91     # necessary to disable liveness probe when setting breakpoints
92     # in debugger so K8s doesn't restart unresponsive container
93     enabled: true
94
95   # so server configuration
96   config:
97     # message router configuration
98     dmaapTopic: "AUTO"
99     # openstack configuration
100     openStackUserName: "vnf_user"
101     openStackRegion: "RegionOne"
102     openStackKeyStoneUrl: "http://1.2.3.4:5000"
103     openStackServiceTenantName: "service"
104     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
105
106   # configure embedded mariadb
107   mariadb:
108     config:
109       mariadbRootPassword: password
110 uui:
111   enabled: false
112 vfc:
113   enabled: false
114 vid:
115   enabled: false
116 vnfsdk:
117   enabled: false