blob: f97beb6be52c105122913b7ce05f4f8c5b561cc9 [file] [log] [blame]
Mandeep Khinda1d123882018-03-27 01:26:59 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T
Mandeep Khinda1d123882018-03-27 01:26:59 +00003#
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 nodePortPrefix: 302
Mandeep Khinda1d123882018-03-27 01:26:59 +000021 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 ubuntuInit: ubuntu-init:1.0.0
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
Gary Wuad133f12018-06-05 17:53:30 -070032image: onap/portal-wms:2.2.0
Mandeep Khinda1d123882018-03-27 01:26:59 +000033pullPolicy: Always
34
35# flag to enable debugging - application support required
36debugEnabled: false
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49 # necessary to disable liveness probe when setting breakpoints
50 # in debugger so K8s doesn't restart unresponsive container
51 enabled: true
52
53readiness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56
57mariadb:
Mandeep Khindaf8b8f072018-04-26 14:35:38 +000058 service:
Mandeep Khinda1d123882018-03-27 01:26:59 +000059 name: portal-db
60
61service:
62 type: ClusterIP
63 name: portal-widget
BorislavG1ffbd992018-04-24 07:56:27 +000064 portName: portal-widget
Mandeep Khinda1d123882018-03-27 01:26:59 +000065 externalPort: 8082
66 internalPort: 8082
67
68ingress:
69 enabled: false
70
71resources: {}
72 # We usually recommend not to specify default resources and to leave this as a conscious
73 # choice for the user. This also increases chances charts run on environments with little
74 # resources, such as Minikube. If you do want to specify resources, uncomment the following
75 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
76 #
77 # Example:
78 # Configure resource requests and limits
79 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
80 # Minimum memory for development is 2 CPU cores and 4GB memory
81 # Minimum memory for production is 4 CPU cores and 8GB memory
82#resources:
83# limits:
84# cpu: 2
85# memory: 4Gi
86# requests:
87# cpu: 2
88# memory: 4Gi