Donald Hunter | b4b9a05 | 2018-09-17 09:17:27 +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 | b4b9a05 | 2018-09-17 09:17:27 +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 | # PNDA configuration defaults. |
| 30 | ################################################################# |
| 31 | |
| 32 | enabled: false |
| 33 | |
| 34 | pnda: |
Julien Barbot | 62f2d9f | 2018-11-14 14:04:36 +0100 | [diff] [blame] | 35 | version: release/5.0 |
Donald Hunter | b4b9a05 | 2018-09-17 09:17:27 +0100 | [diff] [blame] | 36 | dataNodes: 2 |
| 37 | kafkaNodes: 1 |
| 38 | osUser: centos |
| 39 | nameserver: 8.8.8.8 |
| 40 | ntp: pool.ntp.org |
Donald Hunter | b4b9a05 | 2018-09-17 09:17:27 +0100 | [diff] [blame] | 41 | apps: |
| 42 | fsType: local |
| 43 | networkCidr: 10.0.0.0/16 |
| 44 | outboundCidr: 0.0.0.0/0 |
| 45 | |
| 46 | pnda_keypair_name: pnda |
| 47 | pnda_secret: replace-me |
| 48 | |
| 49 | ################################################################# |
| 50 | # Openstack connection params. |
| 51 | ################################################################# |
| 52 | |
| 53 | openstack: |
| 54 | keystoneUser: onap |
| 55 | keystonePassword: onap |
| 56 | keystoneTenant: onap |
| 57 | keystoneAuthUrl: 'http://10.60.18.18:5000/v2.0/' |
| 58 | keystoneRegion: regionOne |
| 59 | imageId: id_of_image |
| 60 | publicNetworkId: id_of_public_network |
| 61 | useExistingNetwork: true |
| 62 | existingNetworkId: id_of_onap_network |
| 63 | existingSubnetId: id_of_onap_subnet |
| 64 | whitelistSshAccess: 0.0.0.0/0 |
| 65 | publicSubnetCidr: 10.0.0.0/24 |
| 66 | |
| 67 | ################################################################# |
| 68 | # Application configuration defaults. |
| 69 | ################################################################# |
| 70 | # application image |
| 71 | |
| 72 | |
| 73 | repository: pndareg.ctao6.net |
Sylvain Desbureaux | 1ef4caf | 2020-04-02 14:08:50 +0200 | [diff] [blame] | 74 | image: onap/org.onap.dcaegen2.deployments.pnda-bootstrap-container:6.0.0 |
Donald Hunter | b4b9a05 | 2018-09-17 09:17:27 +0100 | [diff] [blame] | 75 | pullPolicy: Always |
| 76 | |
| 77 | ## Persist data to a persitent volume |
| 78 | persistence: |
| 79 | enabled: true |
| 80 | |
| 81 | ## A manually managed Persistent Volume and Claim |
| 82 | ## Requires persistence.enabled: true |
| 83 | ## If defined, PVC must be created manually before volume will be bound |
| 84 | # existingClaim: |
| 85 | volumeReclaimPolicy: Retain |
| 86 | |
| 87 | ## database data Persistent Volume Storage Class |
| 88 | ## If defined, storageClassName: <storageClass> |
| 89 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 90 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 91 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 92 | ## GKE, AWS & OpenStack) |
| 93 | accessMode: ReadWriteOnce |
| 94 | size: 10Mi |
| 95 | mountPath: /dockerdata-nfs |
| 96 | mountSubPath: dcae-pnda-bootstrap/logs |