blob: 15aade560d6c102ce675231c64e297b5663a176a [file] [log] [blame]
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -07001# Copyright 2019 Intel Corporation, Inc
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 nodePortPrefixExt: 304
20 readinessRepository: oomk8s
21 readinessImage: readiness-check:2.0.0
22 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24 persistence: {}
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: nexus3.onap.org:10001
30image: onap/multicloud/k8s:0.1.0
31pullPolicy: Always
32
33# flag to enable debugging - application support required
34debugEnabled: false
35
36# application configuration is via config files
37
38# default number of instances
39replicaCount: 1
40
41nodeSelector: {}
42
43affinity: {}
44
45# probe configuration parameters
46liveness:
47 initialDelaySeconds: 10
48 periodSeconds: 30
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: 30
56
57service:
58 type: ClusterIP
59 name: multicloud-k8s
60 portName: multicloud-k8s
61 internalPort: 9015
62 externalPort: 9015
63 nodePort: 98
64
65#Mongo chart overrides for k8splugin
66mongo:
67 nameOverride: multicloud-k8s-mongo
68 service:
69 name: multicloud-k8s-mongo
70 internalPort: 27017
71 nfsprovisionerPrefix: multicloud-k8s
72 sdnctlPrefix: multicloud-k8s
73 persistence:
74 mountSubPath: multicloud-k8s/mongo/data
75 enabled: true
76 disableNfsProvisioner: true
77
78
79# No persistence right now as we rely on Mongo to handle that
80persistence:
81 enabled: false
82 volumeReclaimPolicy: Retain
83 accessMode: ReadWriteOnce
84 size: 1Gi
85 mountPath: /dockerdata-nfs
86 mountSubPath: multicloud-k8s/data
87
88ingress:
89 enabled: false
90
91# Configure resource requests and limits
92flavor: large
93resources:
94 small:
95 limits:
96 cpu: 200m
97 memory: 500Mi
98 requests:
99 cpu: 10m
100 memory: 10Mi
101 large:
102 limits:
103 cpu: 400m
104 memory: 1Gi
105 requests:
106 cpu: 10m
107 memory: 100Mi
108 unlimited: {}