Areli, Fuss (af732p) | 307fdc7 | 2018-05-29 14:40:03 +0300 | [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 |
| 20 | readinessRepository: oomk8s |
Mahendra Raghuwanshi | 35f83f5 | 2019-03-20 10:42:49 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.2 |
Areli, Fuss (af732p) | 307fdc7 | 2018-05-29 14:40:03 +0300 | [diff] [blame] | 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
| 24 | |
| 25 | ################################################################# |
| 26 | # Application configuration defaults. |
| 27 | ################################################################# |
| 28 | # application image |
| 29 | repository: nexus3.onap.org:10001 |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 30 | image: onap/dcae-tosca-app:1.3.3 |
Areli, Fuss (af732p) | 307fdc7 | 2018-05-29 14:40:03 +0300 | [diff] [blame] | 31 | pullPolicy: Always |
| 32 | |
| 33 | # flag to enable debugging - application support required |
| 34 | debugEnabled: false |
| 35 | |
| 36 | config: |
| 37 | javaOptions: -XX:MaxPermSize=256m -Xmx1024m |
| 38 | cassandraSslEnabled: "false" |
| 39 | |
| 40 | # default number of instances |
| 41 | replicaCount: 1 |
| 42 | |
| 43 | nodeSelector: {} |
| 44 | |
| 45 | affinity: {} |
| 46 | |
| 47 | # probe configuration parameters |
| 48 | liveness: |
| 49 | initialDelaySeconds: 10 |
| 50 | periodSeconds: 10 |
| 51 | # necessary to disable liveness probe when setting breakpoints |
| 52 | # in debugger so K8s doesn't restart unresponsive container |
| 53 | enabled: false |
| 54 | |
| 55 | readiness: |
| 56 | initialDelaySeconds: 10 |
| 57 | periodSeconds: 10 |
| 58 | |
| 59 | service: |
| 60 | type: ClusterIP |
| 61 | name: sdc-dcae-tosca-lab |
| 62 | portName: sdc-dcae-tosca-lab-8085 |
| 63 | externalPort: 8085 |
| 64 | internalPort: 8085 |
| 65 | portName2: sdc-dcae-tosca-lab-8445 |
| 66 | externalPort2: 8445 |
| 67 | internalPort2: 8445 |
| 68 | |
| 69 | ingress: |
| 70 | enabled: false |
| 71 | |
| 72 | # Resource Limit flavor -By Default using small |
| 73 | flavor: small |
| 74 | # Segregation for Different environment (Small and Large) |
| 75 | resources: |
| 76 | small: |
| 77 | limits: |
| 78 | cpu: 1 |
| 79 | memory: 4Gi |
| 80 | requests: |
| 81 | cpu: 10m |
| 82 | memory: 1Gi |
| 83 | large: |
| 84 | limits: |
| 85 | cpu: 2 |
| 86 | memory: 8Gi |
| 87 | requests: |
| 88 | cpu: 20m |
| 89 | memory: 2Gi |
Mahendra Raghuwanshi | 35f83f5 | 2019-03-20 10:42:49 +0000 | [diff] [blame] | 90 | unlimited: {} |