blob: 4b7e6f78168eff3d6311b3dfe056151ea81ee6fc [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -070021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23 persistence: {}
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
Ondřej Šmalecb9983d72019-10-09 14:05:35 +020028repository: nexus3.onap.org:10001
Eric Multanen32e83bf2020-10-09 15:23:52 -070029image: onap/multicloud/k8s:0.7.0
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -070030pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
35# application configuration is via config files
36
37# default number of instances
38replicaCount: 1
39
40nodeSelector: {}
41
42affinity: {}
43
44# probe configuration parameters
45liveness:
46 initialDelaySeconds: 10
47 periodSeconds: 30
48 # necessary to disable liveness probe when setting breakpoints
49 # in debugger so K8s doesn't restart unresponsive container
50 enabled: true
51
52readiness:
53 initialDelaySeconds: 10
54 periodSeconds: 30
55
56service:
57 type: ClusterIP
58 name: multicloud-k8s
59 portName: multicloud-k8s
60 internalPort: 9015
61 externalPort: 9015
62 nodePort: 98
63
64#Mongo chart overrides for k8splugin
65mongo:
66 nameOverride: multicloud-k8s-mongo
67 service:
68 name: multicloud-k8s-mongo
69 internalPort: 27017
70 nfsprovisionerPrefix: multicloud-k8s
71 sdnctlPrefix: multicloud-k8s
72 persistence:
73 mountSubPath: multicloud-k8s/mongo/data
74 enabled: true
75 disableNfsProvisioner: true
Konrad Bańka10740792020-09-11 17:04:51 +020076 flavor: &storage_flavor large
77 resources: &storage_resources
78 small:
79 limits:
80 cpu: 100m
81 memory: 300Mi
82 requests:
83 cpu: 10m
84 memory: 75Mi
85 large:
86 limits:
87 cpu: 200m
88 memory: 1Gi
89 requests:
90 cpu: 50m
91 memory: 300Mi
92 unlimited: {}
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -070093
Kiran Kamineni068a2db2019-05-20 17:22:36 -070094#etcd chart overrides for k8splugin
95etcd:
96 nameOverride: multicloud-k8s-etcd
97 service:
98 name: multicloud-k8s-etcd
99 persistence:
100 mountSubPath: multicloud-k8s/etcd/data
101 enabled: true
Konrad Bańka10740792020-09-11 17:04:51 +0200102 flavor: *storage_flavor
103 resources: *storage_resources
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -0700104
105# No persistence right now as we rely on Mongo to handle that
106persistence:
107 enabled: false
108 volumeReclaimPolicy: Retain
109 accessMode: ReadWriteOnce
110 size: 1Gi
111 mountPath: /dockerdata-nfs
112 mountSubPath: multicloud-k8s/data
113
114ingress:
115 enabled: false
116
liboNet80f587a2019-05-17 01:30:16 +0800117artifactbroker:
118 internalPort: 9014
119
Kiran Kaminenie2ba7c82019-04-22 17:52:13 -0700120# Configure resource requests and limits
121flavor: large
122resources:
123 small:
124 limits:
125 cpu: 200m
126 memory: 500Mi
127 requests:
128 cpu: 10m
129 memory: 10Mi
130 large:
131 limits:
132 cpu: 400m
133 memory: 1Gi
134 requests:
135 cpu: 10m
136 memory: 100Mi
137 unlimited: {}