vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [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 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: # global defaults |
| 19 | nodePortPrefix: 302 |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 20 | ubuntuInitRepository: registry.hub.docker.com |
Mandeep Khinda | 1a8ec77 | 2018-05-17 20:08:42 +0000 | [diff] [blame] | 21 | persistence: {} |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 22 | |
| 23 | # application image |
| 24 | repository: nexus3.onap.org:10001 |
Gary Wu | 72901cd | 2018-11-15 18:27:40 -0800 | [diff] [blame] | 25 | image: onap/testsuite:1.3.1 |
kerenj | fc2caa6 | 2017-08-23 12:46:02 +0000 | [diff] [blame] | 26 | pullPolicy: Always |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 27 | |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 28 | ubuntuInitImage: oomk8s/ubuntu-init:2.0.0 |
| 29 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 30 | # flag to enable debugging - application support required |
| 31 | debugEnabled: false |
| 32 | |
| 33 | ################################################################# |
| 34 | # Application configuration defaults. |
| 35 | ################################################################# |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 36 | config: |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 37 | |
Brian Freeman | 6b1b022 | 2018-09-10 07:53:22 -0500 | [diff] [blame] | 38 | # openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment |
| 39 | openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e" |
| 40 | |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 41 | # Demo configuration |
| 42 | # Nexus demo artifact version. Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION |
Gary Wu | 92ee816 | 2018-11-20 13:07:16 -0800 | [diff] [blame] | 43 | demoArtifactsVersion: "1.3.0" |
| 44 | # Nexus demo artifact URL. |
| 45 | demoArtifactsRepoUrl: "https://nexus.onap.org/content/repositories/releases" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 46 | # Openstack medium sized flavour name. Maps GLOBAL_INJECTED_VM_FLAVOR |
vaibhav_16dec | 0947cdf | 2018-01-17 15:40:59 +0000 | [diff] [blame] | 47 | openStackFlavourMedium: "m1.medium" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 48 | # Openstack keystone URL. Maps to GLOBAL_INJECTED_KEYSTONE |
vaibhav_16dec | 0947cdf | 2018-01-17 15:40:59 +0000 | [diff] [blame] | 49 | openStackKeyStoneUrl: "http://1.2.3.4:5000" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 50 | # UUID of the Openstack network that can assign floating ips. Maps to GLOBAL_INJECTED_PUBLIC_NET_ID |
vaibhav_16dec | 0947cdf | 2018-01-17 15:40:59 +0000 | [diff] [blame] | 51 | openStackPublicNetId: "e8f51958045716781ffc" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 52 | # password for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD |
| 53 | openStackPassword: "tenantPassword" |
| 54 | # Openstack region. Maps to GLOBAL_INJECTED_REGION |
vaibhav_16dec | 0947cdf | 2018-01-17 15:40:59 +0000 | [diff] [blame] | 55 | openStackRegion: "RegionOne" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 56 | # Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID |
vaibhav_16dec | 0947cdf | 2018-01-17 15:40:59 +0000 | [diff] [blame] | 57 | openStackTenantId: "47899782ed714295b1151681fdfd51f5" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 58 | # username for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME |
| 59 | openStackUserName: "tenantUsername" |
Ah | 74f3d5f | 2018-09-28 12:13:54 +0530 | [diff] [blame] | 60 | # Project name of Openstack where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PROJECT_NAME |
| 61 | openStackProjectName: "onap" |
| 62 | # Domain id of openstack where VNFs will be deployed. Maps to GLOBAL_INJECTED_OPENSTACK_DOMAIN_ID |
| 63 | openStackDomainId: "default" |
| 64 | # Openstack Keystone API version. Valid values are [ v2.0, v3 ]. Maps to GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION |
Brian Freeman | 8280cc9 | 2018-10-13 14:06:40 -0500 | [diff] [blame] | 65 | openStackKeystoneAPIVersion: "v2.0" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 66 | # Openstack glance image name for Ubuntu 14. Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE |
| 67 | ubuntu14Image: "Ubuntu_14_trusty" |
| 68 | # Openstack glance image name for Ubuntu 16. Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE |
| 69 | ubuntu16Image: "Ubuntu_16_xenial" |
| 70 | # GLOBAL_INJECTED_SCRIPT_VERSION. Maps to GLOBAL_INJECTED_SCRIPT_VERSION |
Gary Wu | 92ee816 | 2018-11-20 13:07:16 -0800 | [diff] [blame] | 71 | scriptVersion: "1.3.0" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 72 | # Openstack network to which VNFs will bind their primary (first) interface. Maps to GLOBAL_INJECTED_NETWORK |
| 73 | openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc" |
Gary Wu | 20aa6a0 | 2018-10-22 15:11:34 -0700 | [diff] [blame] | 74 | # Openstack security group for instantiating VNFs |
| 75 | openStackSecurityGroup: "onap_sg" |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 76 | # SDNC Preload configuration |
| 77 | # Openstack subnet UUID for the network defined by openStackPrivateNetId. Maps to onap_private_subnet_id |
| 78 | openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc" |
| 79 | # CIDR notation for the Openstack private network where VNFs will be spawned. Maps to onap_private_net_cidr |
| 80 | openStackPrivateNetCidr: "10.0.0.0/8" |
| 81 | # The first 2 octets of the private Openstack subnet where VNFs will be spawned. |
| 82 | # Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X |
| 83 | openStackOamNetworkCidrPrefix: "10.0" |
Brian Freeman | 8280cc9 | 2018-10-13 14:06:40 -0500 | [diff] [blame] | 84 | # VID protocol/port until Selenium issue with SSL resolved |
| 85 | # https/8443 vs http/8080 |
| 86 | vidServerProtocol: "http" |
| 87 | vidServerPort: "8080" |
Brian Freeman | 1fb36e6 | 2018-05-14 13:49:03 -0500 | [diff] [blame] | 88 | # Override with Pub Key for access to VNF |
| 89 | vnfPubKey: "FILL_IN_WITH_PUB_KEY" |
Mandeep Khinda | 1a8ec77 | 2018-05-17 20:08:42 +0000 | [diff] [blame] | 90 | # Override with DCAE VES Collector external IP |
Brian Freeman | 1fb36e6 | 2018-05-14 13:49:03 -0500 | [diff] [blame] | 91 | dcaeCollectorIp: "FILL_IN_WITH_DCAE_VES_COLLECTOR_IP" |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 92 | |
Brian Freeman | 8280cc9 | 2018-10-13 14:06:40 -0500 | [diff] [blame] | 93 | # Credentials for ONAP Component |
| 94 | # AAF |
| 95 | aafUsername: "demo@people.osaaf.org" |
| 96 | aafPassword: "demo123456!" |
| 97 | # AAI |
| 98 | aaiUsername: "aai@aai.onap.org" |
| 99 | aaiPassword: "demo123456!" |
| 100 | # APPC |
Gary Wu | 064e274 | 2018-10-31 14:49:37 -0700 | [diff] [blame] | 101 | appcUsername: "appc@appc.onap.org" |
| 102 | appcPassword: "demo123456!" |
Brian Freeman | 8280cc9 | 2018-10-13 14:06:40 -0500 | [diff] [blame] | 103 | # DCAE |
| 104 | dcaeUsername: "console" |
| 105 | dcaePassword: "ZjJkYjllMjljMTI2M2Iz" |
| 106 | # DROOLS |
| 107 | droolsUsername: "demo@people.osaaf.org" |
| 108 | droolsPassword: "demo123456!" |
| 109 | # POLICY |
| 110 | policyAuth: "dGVzdHBkcDphbHBoYTEyMw==" |
| 111 | policyClientAuth: "cHl0aG9uOnRlc3Q=" |
| 112 | policyUsername: "demo@people.osaaf.org" |
| 113 | policyPassword: "demo123456!" |
| 114 | # PORTAL |
| 115 | portalUsername: "demo" |
| 116 | portalPassword: "Kp8bJ4SXszM0WXlhak3eHlcse" |
| 117 | # SO |
| 118 | soUsername: "InfraPortalClient" |
| 119 | soPassword: "password1$" |
| 120 | soCatdbUsername: "bpel" |
| 121 | soCatdbPassword: "password1$" |
| 122 | # SDNC |
| 123 | sdncUsername: "admin" |
| 124 | sdncPassword: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" |
| 125 | # VID |
| 126 | vidUsername: "demo" |
| 127 | vidPassword: "Kp8bJ4SXszM0WX" |
| 128 | vidHealthUsername: "Default" |
| 129 | vidHealthPassword: "AppPassword!1" |
| 130 | |
| 131 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 132 | # default number of instances |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 133 | replicaCount: 1 |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 134 | |
| 135 | nodeSelector: {} |
| 136 | |
| 137 | affinity: {} |
| 138 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 139 | # Resource Limit flavor -By Default using small |
vaibhav_16dec | 1aa60a8 | 2018-09-19 02:36:17 +0000 | [diff] [blame] | 140 | flavor: small |
| 141 | # Segregation for Different environment (Small and Large) |
| 142 | resources: |
| 143 | small: |
| 144 | limits: |
| 145 | cpu: 2000m |
| 146 | memory: 4Gi |
| 147 | requests: |
| 148 | cpu: 500m |
| 149 | memory: 1Gi |
| 150 | large: |
| 151 | limits: |
| 152 | cpu: 4000m |
| 153 | memory: 8Gi |
| 154 | requests: |
| 155 | cpu: 1000m |
| 156 | memory: 2Gi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 157 | unlimited: {} |
vaibhav_16dec | 1aa60a8 | 2018-09-19 02:36:17 +0000 | [diff] [blame] | 158 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 159 | # probe configuration parameters |
| 160 | liveness: |
Gary Wu | fa27e78 | 2018-10-08 13:22:12 -0700 | [diff] [blame] | 161 | initialDelaySeconds: 180 |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 162 | periodSeconds: 10 |
| 163 | # necessary to disable liveness probe when setting breakpoints |
| 164 | # in debugger so K8s doesn't restart unresponsive container |
| 165 | enabled: true |
| 166 | |
| 167 | readiness: |
Gary Wu | fa27e78 | 2018-10-08 13:22:12 -0700 | [diff] [blame] | 168 | initialDelaySeconds: 180 |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 169 | periodSeconds: 10 |
| 170 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 171 | service: |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 172 | name: robot |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 173 | type: NodePort |
| 174 | portName: httpd |
| 175 | externalPort: 88 |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 176 | internalPort: 88 |
Mandeep Khinda | 7ea563e | 2018-04-17 03:26:26 +0000 | [diff] [blame] | 177 | nodePort: "09" |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 178 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 179 | ingress: |
| 180 | enabled: false |
| 181 | |
Mandeep Khinda | 1a8ec77 | 2018-05-17 20:08:42 +0000 | [diff] [blame] | 182 | ## Persist data to a persitent volume |
| 183 | persistence: |
| 184 | enabled: true |
| 185 | |
| 186 | ## A manually managed Persistent Volume and Claim |
| 187 | ## Requires persistence.enabled: true |
| 188 | ## If defined, PVC must be created manually before volume will be bound |
| 189 | # existingClaim: |
| 190 | volumeReclaimPolicy: Retain |
| 191 | |
| 192 | ## database data Persistent Volume Storage Class |
| 193 | ## If defined, storageClassName: <storageClass> |
| 194 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 195 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 196 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 197 | ## GKE, AWS & OpenStack) |
| 198 | ## |
| 199 | # storageClass: "-" |
| 200 | accessMode: ReadWriteMany |
| 201 | size: 2Gi |
| 202 | mountPath: /dockerdata-nfs |
Brian Freeman | 6b1b022 | 2018-09-10 07:53:22 -0500 | [diff] [blame] | 203 | mountSubPath: robot/logs |