blob: c3164505079e2462a54b997c8d320a0ad4362a05 [file] [log] [blame]
Mandeep Khinda1d123882018-03-27 01:26:59 +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
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Mandeep Khinda1d123882018-03-27 01:26:59 +000020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
Gary Wuad133f12018-06-05 17:53:30 -070030image: onap/portal-app:2.2.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000031pullPolicy: Always
32
Mandeep Khinda1d123882018-03-27 01:26:59 +000033# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
42 initialDelaySeconds: 10
43 periodSeconds: 10
44 # necessary to disable liveness probe when setting breakpoints
45 # in debugger so K8s doesn't restart unresponsive container
46 enabled: true
47
48readiness:
49 initialDelaySeconds: 10
50 periodSeconds: 10
51
52service:
Mandeep Khinda789ee4a2018-04-30 20:20:45 +000053 type: LoadBalancer
Mandeep Khinda1d123882018-03-27 01:26:59 +000054 name: portal-app
BorislavG1ffbd992018-04-24 07:56:27 +000055 portName: portal-app
Mandeep Khinda1d123882018-03-27 01:26:59 +000056 externalPort: 8989
57 internalPort: 8080
58 nodePort: 15
59 externalPort2: 8006
60 internalPort2: 8005
61 nodePort2: 13
62 externalPort3: 8010
63 internalPort3: 8009
64 nodePort3: 14
65
66mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000067 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000068 name: portal-db
69widget:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000070 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000071 name: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000072cassandra:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000073 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000074 name: portal-cassandra
75 config:
76 cassandraUsername: root
77 cassandraPassword: Aa123456
Mandeep Khinda1d123882018-03-27 01:26:59 +000078zookeeper:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000079 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000080 name: portal-zookeeper
81messageRouter:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000082 service:
Mandeep Khinda454e2fd2018-04-06 03:03:24 +000083 name: message-router
Mandeep Khinda1d123882018-03-27 01:26:59 +000084
85ingress:
86 enabled: false
87
88resources: {}
89 # We usually recommend not to specify default resources and to leave this as a conscious
90 # choice for the user. This also increases chances charts run on environments with little
91 # resources, such as Minikube. If you do want to specify resources, uncomment the following
92 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
93 #
94 # Example:
95 # Configure resource requests and limits
96 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
97 # Minimum memory for development is 2 CPU cores and 4GB memory
98 # Minimum memory for production is 4 CPU cores and 8GB memory
99#resources:
100# limits:
101# cpu: 2
102# memory: 4Gi
103# requests:
104# cpu: 2
105# memory: 4Gi