Kiran Kamineni | e2ba7c8 | 2019-04-22 17:52:13 -0700 | [diff] [blame] | 1 | # 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 | ################################################################# |
| 18 | global: |
| 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 Šmalec | b9983d7 | 2019-10-09 14:05:35 +0200 | [diff] [blame] | 29 | repository: nexus3.onap.org:10001 |
| 30 | image: onap/multicloud/k8s:0.5.0 |
Kiran Kamineni | e2ba7c8 | 2019-04-22 17:52:13 -0700 | [diff] [blame] | 31 | pullPolicy: Always |
| 32 | |
| 33 | # flag to enable debugging - application support required |
| 34 | debugEnabled: false |
| 35 | |
| 36 | # application configuration is via config files |
| 37 | |
| 38 | # default number of instances |
| 39 | replicaCount: 1 |
| 40 | |
| 41 | nodeSelector: {} |
| 42 | |
| 43 | affinity: {} |
| 44 | |
| 45 | # probe configuration parameters |
| 46 | liveness: |
| 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 | |
| 53 | readiness: |
| 54 | initialDelaySeconds: 10 |
| 55 | periodSeconds: 30 |
| 56 | |
| 57 | service: |
| 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 |
| 66 | mongo: |
| 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 Kamineni | 068a2db | 2019-05-20 17:22:36 -0700 | [diff] [blame] | 78 | #etcd chart overrides for k8splugin |
| 79 | etcd: |
| 80 | nameOverride: multicloud-k8s-etcd |
| 81 | service: |
| 82 | name: multicloud-k8s-etcd |
| 83 | persistence: |
| 84 | mountSubPath: multicloud-k8s/etcd/data |
| 85 | enabled: true |
Kiran Kamineni | e2ba7c8 | 2019-04-22 17:52:13 -0700 | [diff] [blame] | 86 | |
| 87 | # No persistence right now as we rely on Mongo to handle that |
| 88 | persistence: |
| 89 | enabled: false |
| 90 | volumeReclaimPolicy: Retain |
| 91 | accessMode: ReadWriteOnce |
| 92 | size: 1Gi |
| 93 | mountPath: /dockerdata-nfs |
| 94 | mountSubPath: multicloud-k8s/data |
| 95 | |
| 96 | ingress: |
| 97 | enabled: false |
| 98 | |
liboNet | 80f587a | 2019-05-17 01:30:16 +0800 | [diff] [blame] | 99 | artifactbroker: |
| 100 | internalPort: 9014 |
| 101 | |
Kiran Kamineni | e2ba7c8 | 2019-04-22 17:52:13 -0700 | [diff] [blame] | 102 | # Configure resource requests and limits |
| 103 | flavor: large |
| 104 | resources: |
| 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: {} |