blob: 22ddd17ead8277d60a14878bb207eb01e0d0c07e [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
Kiran Kamineni068a2db2019-05-20 17:22:36 -070078#etcd chart overrides for k8splugin
79etcd:
80 nameOverride: multicloud-k8s-etcd
81 service:
82 name: multicloud-k8s-etcd
83 persistence:
84 mountSubPath: multicloud-k8s/etcd/data
85 enabled: true
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -070086
87# No persistence right now as we rely on Mongo to handle that
88persistence:
89 enabled: false
90 volumeReclaimPolicy: Retain
91 accessMode: ReadWriteOnce
92 size: 1Gi
93 mountPath: /dockerdata-nfs
94 mountSubPath: multicloud-k8s/data
95
96ingress:
97 enabled: false
98
99# Configure resource requests and limits
100flavor: large
101resources:
102 small:
103 limits:
104 cpu: 200m
105 memory: 500Mi
106 requests:
107 cpu: 10m
108 memory: 10Mi
109 large:
110 limits:
111 cpu: 400m
112 memory: 1Gi
113 requests:
114 cpu: 10m
115 memory: 100Mi
116 unlimited: {}