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 | ################################################################# |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 26 | # Secrets metaconfig |
| 27 | ################################################################# |
| 28 | secrets: |
| 29 | - uid: "db-root-pass" |
| 30 | externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}' |
| 31 | type: password |
| 32 | password: '{{ .Values.config.mariadbRootPassword }}' |
| 33 | policy: required |
| 34 | |
| 35 | ################################################################# |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 36 | # Application configuration defaults. |
| 37 | ################################################################# |
| 38 | # application image |
GregSulek | 5fb3bc6 | 2018-09-20 08:51:37 -0400 | [diff] [blame] | 39 | flavor: small |
| 40 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 41 | repository: nexus3.onap.org:10001 |
yangyan | 4fa2e49 | 2020-03-26 21:12:26 +0800 | [diff] [blame] | 42 | image: onap/vfc/vnflcm:1.3.8 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 43 | pullPolicy: Always |
| 44 | |
Huabing Zhao | c171ac2 | 2018-07-31 06:49:03 +0000 | [diff] [blame] | 45 | #Istio sidecar injection policy |
| 46 | istioSidecar: true |
| 47 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 48 | # flag to enable debugging - application support required |
| 49 | debugEnabled: false |
| 50 | |
| 51 | # application configuration |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 52 | config: |
| 53 | mariadbService: vfc-mariadb |
| 54 | mariadbPort: 3306 |
| 55 | # mariadbRootPassword: secretpassword |
| 56 | # mariadbRootPasswordExternalSecret: some secret |
| 57 | |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 58 | |
| 59 | # default number of instances |
| 60 | replicaCount: 1 |
| 61 | |
| 62 | nodeSelector: {} |
| 63 | |
| 64 | affinity: {} |
| 65 | |
| 66 | # probe configuration parameters |
| 67 | liveness: |
yangyan | d08e6dc | 2018-08-17 13:28:00 +0800 | [diff] [blame] | 68 | initialDelaySeconds: 120 |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 69 | periodSeconds: 10 |
| 70 | # necessary to disable liveness probe when setting breakpoints |
| 71 | # in debugger so K8s doesn't restart unresponsive container |
| 72 | enabled: true |
| 73 | |
| 74 | readiness: |
| 75 | initialDelaySeconds: 10 |
| 76 | periodSeconds: 10 |
| 77 | |
| 78 | service: |
| 79 | type: ClusterIP |
| 80 | name: vfc-vnflcm |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 81 | portName: vfc-vnflcm |
Mike Elliott | 6ba69cd | 2018-04-03 16:37:06 -0400 | [diff] [blame] | 82 | externalPort: 8801 |
| 83 | internalPort: 8801 |
| 84 | # nodePort: 30801 |
| 85 | |
| 86 | ingress: |
| 87 | enabled: false |
| 88 | |
GregSulek | 5fb3bc6 | 2018-09-20 08:51:37 -0400 | [diff] [blame] | 89 | |
| 90 | # Configure resource requests and limits |
| 91 | resources: |
| 92 | small: |
| 93 | limits: |
| 94 | cpu: 200m |
| 95 | memory: 500Mi |
| 96 | requests: |
| 97 | cpu: 100m |
| 98 | memory: 250Mi |
| 99 | large: |
| 100 | limits: |
| 101 | cpu: 400m |
| 102 | memory: 1000Mi |
| 103 | requests: |
| 104 | cpu: 200m |
| 105 | memory: 500Mi |
Krzysztof Opasiak | a9010db | 2020-02-26 23:36:22 +0100 | [diff] [blame] | 106 | unlimited: {} |