blob: 6606e1765d95a379c2f72fc369a4ccb7d385dc87 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
jmac065e2ce2018-03-29 01:18:02 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 readinessRepository: oomk8s
23 readinessImage: readiness-check:1.1.0
24 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26 persistence:
27 mountPath: /dockerdata-nfs
28
29#################################################################
30# Application configuration defaults.
31#################################################################
32# application images
33repository: nexus3.onap.org:10001
34pullPolicy: Always
35image: onap/sdnc-image:1.3-STAGING-latest
36
37# flag to enable debugging - application support required
38debugEnabled: false
39
40# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030041config:
jmac065e2ce2018-03-29 01:18:02 +000042 dbRootPassword: openECOMP1.0
43 enableClustering: true
44 configDir: /opt/onap/sdnc/data/properties
45 dmaapTopic: SUCCESS
BorislavG5f3b6192018-03-25 18:12:38 +030046 logstashServiceName: log-ls
47 logstashPort: 5044
jmac065e2ce2018-03-29 01:18:02 +000048
49# dependency / sub-chart configuration
50dmaap-listener:
51 nameOverride: sdnc-dmaap-listener
52 config:
53 sdncChartName: sdnc
54 mysqlChartName: sdnc-db
55 configDir: /opt/onap/sdnc/data/properties
56
57ueb-listener:
58 nameOverride: sdnc-ueb-listener
59 config:
60 sdncChartName: sdnc
61 mysqlChartName: sdnc-db
62 configDir: /opt/onap/sdnc/data/properties
63
64sdnc-portal:
65 config:
66 sdncChartName: sdnc
67 mysqlChartName: sdnc-db
68 configDir: /opt/onap/sdnc/data/properties
69 dbRootPassword: openECOMP1.0
70
71mysql:
72 nameOverride: sdnc-db
73 service:
74 name: sdnc-dbhost
75 nfsprovisionerPrefix: sdnc
76 sdnctlPrefix: sdnc
77 persistence:
78 mountSubPath: sdnc/data
79 enabled: true
80 disableNfsProvisioner: false
81 replicaCount: 1
82
83dgbuilder:
84 nameOverride: sdnc-dgbuilder
85 config:
86 dbPodName: sdnc-db
87 dbServiceName: sdnc-dbhost
88 dbRootPassword: openECOMP1.0
89 service:
90 nodePort: "03"
91
92# default number of instances
93replicaCount: 1
94
95nodeSelector: {}
96
97affinity: {}
98
99# probe configuration parameters
100liveness:
101 initialDelaySeconds: 10
102 periodSeconds: 10
103 # necessary to disable liveness probe when setting breakpoints
104 # in debugger so K8s doesn't restart unresponsive container
105 enabled: true
106
107readiness:
108 initialDelaySeconds: 10
109 periodSeconds: 10
110
111service:
112 type: NodePort
113 name: sdnc
114 #targetPort
115 internalPort: 8181
116 internalPort2: 8101
117 internalPort3: 8080
118 #port
119 externalPort: 8282
120 nodePort: "02"
121
122 externalPort2: 8202
123 nodePort2: "08"
124
125 externalPort3: 8280
126 nodePort3: 46
127
128 clusterPort: 2550
129
130ingress:
131 enabled: false
132
133resources: {}
134#resources:
135# limits:
136# cpu: 2
137# memory: 4Gi
138# requests:
139# cpu: 2
140# memory: 4Gi