blob: 3c7b1d3a65e3c18ef1ddab047ac858b8206181ad [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
Ondřej Šmalecb9983d72019-10-09 14:05:35 +020029repository: nexus3.onap.org:10001
30image: onap/multicloud/k8s:0.5.0
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -070031pullPolicy: 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
liboNet80f587a2019-05-17 01:30:16 +080099artifactbroker:
100 internalPort: 9014
101
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -0700102# Configure resource requests and limits
103flavor: large
104resources:
105 small:
106 limits:
107 cpu: 200m
108 memory: 500Mi
109 requests:
110 cpu: 10m
111 memory: 10Mi
112 large:
113 limits:
114 cpu: 400m
115 memory: 1Gi
116 requests:
117 cpu: 10m
118 memory: 100Mi
119 unlimited: {}