Donald Hunter | 3d8330a | 2018-09-14 13:48:08 +0100 | [diff] [blame] | 1 | # ================================================================================ |
| 2 | # Copyright (c) 2018 Cisco Systems. All rights reserved. |
| 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 | # ============LICENSE_END========================================================= |
| 16 | |
| 17 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
| 20 | global: |
Julien Barbot | 00520bc | 2018-11-13 19:08:56 +0100 | [diff] [blame] | 21 | nodePortPrefixExt: 304 |
Donald Hunter | 3d8330a | 2018-09-14 13:48:08 +0100 | [diff] [blame] | 22 | readinessRepository: oomk8s |
| 23 | readinessImage: readiness-check:2.0.0 |
| 24 | loggingRepository: docker.elastic.co |
| 25 | loggingImage: beats/filebeat:5.5.0 |
| 26 | persistence: {} |
| 27 | |
| 28 | ################################################################# |
| 29 | # Application configuration defaults. |
| 30 | ################################################################# |
| 31 | # application image |
| 32 | |
| 33 | repository: pndareg.ctao6.net |
Julien Barbot | 62f2d9f | 2018-11-14 14:04:36 +0100 | [diff] [blame] | 34 | image: onap/org.onap.dcaegen2.deployments.pnda-mirror-container:5.0.0 |
Donald Hunter | 3d8330a | 2018-09-14 13:48:08 +0100 | [diff] [blame] | 35 | pullPolicy: Always |
| 36 | |
| 37 | # application configuration |
| 38 | # Example: |
| 39 | config: {} |
| 40 | |
| 41 | # default number of instances |
| 42 | replicaCount: 1 |
| 43 | |
| 44 | nodeSelector: {} |
| 45 | |
| 46 | affinity: {} |
| 47 | |
| 48 | # probe configuration parameters |
| 49 | liveness: |
| 50 | initialDelaySeconds: 60 |
| 51 | periodSeconds: 10 |
| 52 | timeoutSeconds: 10 |
| 53 | # necessary to disable liveness probe when setting breakpoints |
| 54 | # in debugger so K8s doesn't restart unresponsive container |
| 55 | enabled: true |
| 56 | |
| 57 | readiness: |
| 58 | initialDelaySeconds: 15 |
| 59 | periodSeconds: 10 |
| 60 | |
| 61 | service: |
Julien Barbot | 00520bc | 2018-11-13 19:08:56 +0100 | [diff] [blame] | 62 | type: NodePort |
| 63 | portName: dcae-pnda-mirror |
| 64 | nodePort: "00" |
Donald Hunter | 3d8330a | 2018-09-14 13:48:08 +0100 | [diff] [blame] | 65 | externalPort: 80 |
| 66 | internalPort: 80 |
| 67 | |
| 68 | ## Persist data to a persitent volume |
| 69 | persistence: |
| 70 | enabled: false |
| 71 | |
| 72 | ingress: |
| 73 | enabled: false |
| 74 | |
| 75 | resources: {} |