Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | nodePortPrefix: 302 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 20 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
| 24 | |
| 25 | ################################################################# |
| 26 | # Application configuration defaults. |
| 27 | ################################################################# |
| 28 | # application image |
GregSulek | 5fb3bc6 | 2018-09-20 08:51:37 -0400 | [diff] [blame] | 29 | flavor: small |
| 30 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 31 | repository: nexus3.onap.org:10001 |
yangyan | a538d85 | 2019-05-05 10:07:34 +0800 | [diff] [blame^] | 32 | image: onap/vfc/emsdriver:1.3.0 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 33 | pullPolicy: Always |
| 34 | |
Huabing Zhao | c171ac2 | 2018-07-31 06:49:03 +0000 | [diff] [blame] | 35 | #Istio sidecar injection policy |
| 36 | istioSidecar: true |
| 37 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 38 | # flag to enable debugging - application support required |
| 39 | debugEnabled: false |
| 40 | |
| 41 | # application configuration |
yangyan | 1c05299 | 2018-04-13 12:16:40 +0800 | [diff] [blame] | 42 | config: |
| 43 | vescollectorServiceName: dcae-ves-collector |
| 44 | vescollectorPort: 8080 |
| 45 | vescollectorUser: "" |
| 46 | vescollectorPassword: "" |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 47 | |
| 48 | # default number of instances |
| 49 | replicaCount: 1 |
| 50 | |
| 51 | nodeSelector: {} |
| 52 | |
| 53 | affinity: {} |
| 54 | |
| 55 | # probe configuration parameters |
| 56 | liveness: |
yangyan | d08e6dc | 2018-08-17 13:28:00 +0800 | [diff] [blame] | 57 | initialDelaySeconds: 120 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 58 | periodSeconds: 10 |
| 59 | # necessary to disable liveness probe when setting breakpoints |
| 60 | # in debugger so K8s doesn't restart unresponsive container |
| 61 | enabled: true |
| 62 | |
| 63 | readiness: |
| 64 | initialDelaySeconds: 10 |
| 65 | periodSeconds: 10 |
| 66 | |
| 67 | service: |
| 68 | type: ClusterIP |
| 69 | name: vfc-ems-driver |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 70 | portName: vfc-ems-driver |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 71 | externalPort: 8206 |
| 72 | internalPort: 8206 |
| 73 | # nodePort: 30296 |
| 74 | |
| 75 | ingress: |
| 76 | enabled: false |
| 77 | |
GregSulek | 5fb3bc6 | 2018-09-20 08:51:37 -0400 | [diff] [blame] | 78 | # Configure resource requests and limits |
| 79 | resources: |
| 80 | small: |
| 81 | limits: |
| 82 | cpu: 200m |
| 83 | memory: 500Mi |
| 84 | requests: |
| 85 | cpu: 100m |
| 86 | memory: 250Mi |
| 87 | large: |
| 88 | limits: |
| 89 | cpu: 400m |
| 90 | memory: 1000Mi |
| 91 | requests: |
| 92 | cpu: 200m |
| 93 | memory: 500Mi |
| 94 | unlimited: {} |