Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 1 | |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 21 | readinessRepository: oomk8s |
Gary Wu | bf4b4d8 | 2018-05-11 13:26:30 -0700 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.0 |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 23 | flavor: small |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 24 | ################################################################# |
| 25 | # Application configuration defaults. |
| 26 | ################################################################# |
| 27 | # application image |
| 28 | repository: nexus3.onap.org:10001 |
Gary Wu | 72901cd | 2018-11-15 18:27:40 -0800 | [diff] [blame] | 29 | image: onap/aaf/aaf_gui:2.1.8 |
Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 30 | aaf_register_as: "aaf-gui.onap" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 31 | pullPolicy: Always |
| 32 | |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 33 | |
| 34 | # default number of instances |
| 35 | replicaCount: 1 |
| 36 | |
| 37 | nodeSelector: {} |
| 38 | |
| 39 | affinity: {} |
| 40 | |
| 41 | # probe configuration parameters |
| 42 | liveness: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 43 | initialDelaySeconds: 300 |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 44 | periodSeconds: 10 |
| 45 | # necessary to disable liveness probe when setting breakpoints |
| 46 | # in debugger so K8s doesn't restart unresponsive container |
| 47 | enabled: true |
| 48 | |
| 49 | readiness: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 50 | initialDelaySeconds: 30 |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 51 | periodSeconds: 10 |
| 52 | |
| 53 | service: |
| 54 | name: aaf-gui |
| 55 | type: NodePort |
| 56 | portName: aaf-gui |
| 57 | #targetPort |
| 58 | internalPort: 8200 |
| 59 | #port |
| 60 | externalPort: 8200 |
| 61 | nodePort: 51 |
| 62 | |
| 63 | ingress: |
| 64 | enabled: false |
| 65 | |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 66 | # Configure resource requests and limits |
| 67 | resources: |
| 68 | small: |
| 69 | limits: |
| 70 | cpu: 100m |
| 71 | memory: 500Mi |
| 72 | requests: |
| 73 | cpu: 10m |
| 74 | memory: 200Mi |
| 75 | large: |
| 76 | limits: |
| 77 | cpu: 200m |
| 78 | memory: 1Gi |
| 79 | requests: |
| 80 | cpu: 100m |
| 81 | memory: 500Mi |
Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 82 | unlimited: {} |