Add standardized helm chart for log
[oom.git] / kubernetes / onap / values.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: Always
36
37   # default mount path root directory referenced
38   # by persistent volumes and log files
39   persistence:
40     mountPath: /dockerdata-nfs
41
42   # flag to enable debugging - application support required
43   debugEnabled: false
44
45
46 #################################################################
47 # Enable/disable and configure helm charts (ie. applications)
48 # to customize the ONAP deployment.
49 #################################################################
50 aaf:
51   enabled: true
52 aai:
53   enabled: true
54 appc:
55   enabled: true
56 clamp:
57   enabled: true
58 cli:
59   enabled: true
60 consul: # Consul Health Check Monitoring
61   enabled: true
62 dcaegen2:
63   enabled: true
64 esr:
65   enabled: true
66 log: # ONAP Logging ElasticStack
67   enabled: true
68 message-router:
69   enabled: true
70 mock:
71   enabled: true
72 msb:
73   enabled: true
74 multicloud:
75   enabled: true
76 policy:
77   enabled: true
78 portal:
79   enabled: true
80 robot: # Robot Health Check
81   enabled: true
82 sdc:
83   enabled: true
84 sdnc:
85   enabled: true
86 so: # Service Orchestrator
87   enabled: true
88
89   replicaCount: 1
90
91   liveness:
92     # necessary to disable liveness probe when setting breakpoints
93     # in debugger so K8s doesn't restart unresponsive container
94     enabled: true
95
96   # so server configuration
97   config:
98     # message router configuration
99     dmaapTopic: "AUTO"
100     # openstack configuration
101     openStackUserName: "vnf_user"
102     openStackRegion: "RegionOne"
103     openStackKeyStoneUrl: "http://1.2.3.4:5000"
104     openStackServiceTenantName: "service"
105     openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
106
107   # configure embedded mariadb
108   mariadb:
109     config:
110       mariadbRootPassword: password
111 uui:
112   enabled: true
113 vfc:
114   enabled: true
115 vid:
116   enabled: true
117 vnfsdk:
118   enabled: true