blob: 9afb81e4f25f6001564fd745751b4381444d2b96 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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_16decd3bc08f2018-03-15 07:05:10 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global: # global defaults
19 nodePortPrefix: 302
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000020 ubuntuInitRepository: registry.hub.docker.com
Mandeep Khinda1a8ec772018-05-17 20:08:42 +000021 persistence: {}
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000022
23# application image
24repository: nexus3.onap.org:10001
Gary Wue1e95c02019-06-14 12:42:34 -070025image: onap/testsuite:1.4.1
kerenjfc2caa62017-08-23 12:46:02 +000026pullPolicy: Always
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000027
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000028ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
29
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000030# flag to enable debugging - application support required
31debugEnabled: false
32
33#################################################################
34# Application configuration defaults.
35#################################################################
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000036config:
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000037
Brian Freeman6b1b0222018-09-10 07:53:22 -050038# openStackEncryptedPasswordHere should match the encrypted string used in SO and APPC and overridden per environment
39 openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
40
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000041# Demo configuration
42# Nexus demo artifact version. Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION
Gary Wue1e95c02019-06-14 12:42:34 -070043demoArtifactsVersion: "1.4.0"
Gary Wu92ee8162018-11-20 13:07:16 -080044# Nexus demo artifact URL.
45demoArtifactsRepoUrl: "https://nexus.onap.org/content/repositories/releases"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000046# Openstack medium sized flavour name. Maps GLOBAL_INJECTED_VM_FLAVOR
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000047openStackFlavourMedium: "m1.medium"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000048# Openstack keystone URL. Maps to GLOBAL_INJECTED_KEYSTONE
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000049openStackKeyStoneUrl: "http://1.2.3.4:5000"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000050# UUID of the Openstack network that can assign floating ips. Maps to GLOBAL_INJECTED_PUBLIC_NET_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000051openStackPublicNetId: "e8f51958045716781ffc"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000052# password for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD
53openStackPassword: "tenantPassword"
54# Openstack region. Maps to GLOBAL_INJECTED_REGION
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000055openStackRegion: "RegionOne"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000056# Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000057openStackTenantId: "47899782ed714295b1151681fdfd51f5"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000058# username for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME
59openStackUserName: "tenantUsername"
Ah74f3d5f2018-09-28 12:13:54 +053060# Project name of Openstack where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PROJECT_NAME
61openStackProjectName: "onap"
62# Domain id of openstack where VNFs will be deployed. Maps to GLOBAL_INJECTED_OPENSTACK_DOMAIN_ID
Brian Freeman3ace4e82019-04-23 14:36:36 -050063openStackDomainId: "Default"
Ah74f3d5f2018-09-28 12:13:54 +053064# Openstack Keystone API version. Valid values are [ v2.0, v3 ]. Maps to GLOBAL_INJECTED_OPENSTACK_KEYSTONE_API_VERSION
Brian Freeman8280cc92018-10-13 14:06:40 -050065openStackKeystoneAPIVersion: "v2.0"
Brian Freeman4d7e4492019-04-22 10:41:59 -050066# Values for second cloud instante for VNF instantiatioen testing and keystone v3
67openStackRegionRegionThree: "RegionThree"
68openStackKeyStoneUrlRegionThree: "http://1.2.3.4:5000"
69openStackKeystoneAPIVersionRegionThree: "v3"
70openStackUserNameRegionThree: "demo"
71openStackPasswordRegionThree: "tenantPassword"
72# this is the java encrypted password that is needed for SO
73openSackMsoEncryptdPasswordRegionThree: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
74openStackTenantIdRegionThree: "3583253e932845a09cd4c8ca2f31d095"
Gary Wu0e6dc1c2019-06-21 15:13:38 -070075openStackProjectNameRegionThree: "Integration-SB-RegionThree"
Brian Freeman3ace4e82019-04-23 14:36:36 -050076openStackDomainIdRegionThree: "Default"
Brian Freeman4d7e4492019-04-22 10:41:59 -050077#
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000078# Openstack glance image name for Ubuntu 14. Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
79ubuntu14Image: "Ubuntu_14_trusty"
80# Openstack glance image name for Ubuntu 16. Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
81ubuntu16Image: "Ubuntu_16_xenial"
82# GLOBAL_INJECTED_SCRIPT_VERSION. Maps to GLOBAL_INJECTED_SCRIPT_VERSION
Gary Wue1e95c02019-06-14 12:42:34 -070083scriptVersion: "1.4.0"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000084# Openstack network to which VNFs will bind their primary (first) interface. Maps to GLOBAL_INJECTED_NETWORK
85openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
Gary Wu20aa6a02018-10-22 15:11:34 -070086# Openstack security group for instantiating VNFs
87openStackSecurityGroup: "onap_sg"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000088# SDNC Preload configuration
89# Openstack subnet UUID for the network defined by openStackPrivateNetId. Maps to onap_private_subnet_id
90openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
91# CIDR notation for the Openstack private network where VNFs will be spawned. Maps to onap_private_net_cidr
92openStackPrivateNetCidr: "10.0.0.0/8"
93# The first 2 octets of the private Openstack subnet where VNFs will be spawned.
94# Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X
95openStackOamNetworkCidrPrefix: "10.0"
Brian Freeman8280cc92018-10-13 14:06:40 -050096# VID protocol/port until Selenium issue with SSL resolved
97# https/8443 vs http/8080
98vidServerProtocol: "http"
99vidServerPort: "8080"
Brian Freeman1fb36e62018-05-14 13:49:03 -0500100# Override with Pub Key for access to VNF
101vnfPubKey: "FILL_IN_WITH_PUB_KEY"
Mandeep Khinda1a8ec772018-05-17 20:08:42 +0000102# Override with DCAE VES Collector external IP
Brian Freeman1fb36e62018-05-14 13:49:03 -0500103dcaeCollectorIp: "FILL_IN_WITH_DCAE_VES_COLLECTOR_IP"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000104
Brian Freeman8280cc92018-10-13 14:06:40 -0500105# Credentials for ONAP Component
106# AAF
107aafUsername: "demo@people.osaaf.org"
108aafPassword: "demo123456!"
109# AAI
110aaiUsername: "aai@aai.onap.org"
111aaiPassword: "demo123456!"
112# APPC
Gary Wu064e2742018-10-31 14:49:37 -0700113appcUsername: "appc@appc.onap.org"
114appcPassword: "demo123456!"
Brian Freeman8280cc92018-10-13 14:06:40 -0500115# DCAE
116dcaeUsername: "console"
117dcaePassword: "ZjJkYjllMjljMTI2M2Iz"
118# DROOLS
119droolsUsername: "demo@people.osaaf.org"
120droolsPassword: "demo123456!"
Jerry Flood4b4373d2019-04-30 15:30:04 -0400121# OOF
122oofCmsoUsername: "oof@oof.onap.org"
123oofCmsoPassword: "demo123456!"
Brian Freeman8280cc92018-10-13 14:06:40 -0500124# POLICY
125policyAuth: "dGVzdHBkcDphbHBoYTEyMw=="
126policyClientAuth: "cHl0aG9uOnRlc3Q="
127policyUsername: "demo@people.osaaf.org"
128policyPassword: "demo123456!"
Bilal A33fa54e2019-05-07 10:11:27 -0400129policyComponentUsername: "healthcheck"
130policyComponentPassword: "zb!XztG34"
Brian Freeman8280cc92018-10-13 14:06:40 -0500131# PORTAL
132portalUsername: "demo"
133portalPassword: "Kp8bJ4SXszM0WXlhak3eHlcse"
134# SO
135soUsername: "InfraPortalClient"
136soPassword: "password1$"
137soCatdbUsername: "bpel"
138soCatdbPassword: "password1$"
139# SDNC
140sdncUsername: "admin"
141sdncPassword: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
142# VID
143vidUsername: "demo"
144vidPassword: "Kp8bJ4SXszM0WX"
145vidHealthUsername: "Default"
146vidHealthPassword: "AppPassword!1"
pkaras477c7bd2019-04-10 10:49:18 +0200147# DMAAP BC
148bcUsername: "dmaap-bc@dmaap-bc.onap.org"
149bcPassword: "demo123456!"
marekpl2c271a52019-05-10 12:39:31 +0200150# DMAAP KAFKA JAAS
151kafkaJaasUsername: "admin"
152kafkaJaasPassword: "admin_secret"
Brian Freeman8280cc92018-10-13 14:06:40 -0500153
vrvarma8f500492019-04-25 23:08:01 -0400154#OOF
155oofUsername: "oof@oof.onap.org"
156oofPassword: "demo123456!"
157cmsoUsername: "oof@oof.onap.org"
158cmsoPassword: "demo123456!"
DR695Hae2eea72019-06-19 21:20:05 -0400159oofHomingUsername: "admin1"
160oofHomingPassword: "plan.15"
161
vrvarma8f500492019-04-25 23:08:01 -0400162
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000163# default number of instances
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000164replicaCount: 1
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000165
166nodeSelector: {}
167
168affinity: {}
169
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000170# Resource Limit flavor -By Default using small
vaibhav_16dec1aa60a82018-09-19 02:36:17 +0000171flavor: small
172# Segregation for Different environment (Small and Large)
173resources:
174 small:
175 limits:
176 cpu: 2000m
177 memory: 4Gi
178 requests:
179 cpu: 500m
180 memory: 1Gi
181 large:
182 limits:
183 cpu: 4000m
184 memory: 8Gi
185 requests:
186 cpu: 1000m
187 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000188 unlimited: {}
vaibhav_16dec1aa60a82018-09-19 02:36:17 +0000189
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000190# probe configuration parameters
191liveness:
Gary Wufa27e782018-10-08 13:22:12 -0700192 initialDelaySeconds: 180
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000193 periodSeconds: 10
194 # necessary to disable liveness probe when setting breakpoints
195 # in debugger so K8s doesn't restart unresponsive container
196 enabled: true
197
198readiness:
Gary Wufa27e782018-10-08 13:22:12 -0700199 initialDelaySeconds: 180
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000200 periodSeconds: 10
201
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000202service:
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000203 name: robot
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000204 type: NodePort
205 portName: httpd
206 externalPort: 88
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000207 internalPort: 88
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000208 nodePort: "09"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000209
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000210ingress:
211 enabled: false
212
Mandeep Khinda1a8ec772018-05-17 20:08:42 +0000213## Persist data to a persitent volume
214persistence:
215 enabled: true
216
217 ## A manually managed Persistent Volume and Claim
218 ## Requires persistence.enabled: true
219 ## If defined, PVC must be created manually before volume will be bound
220 # existingClaim:
221 volumeReclaimPolicy: Retain
222
223 ## database data Persistent Volume Storage Class
224 ## If defined, storageClassName: <storageClass>
225 ## If set to "-", storageClassName: "", which disables dynamic provisioning
226 ## If undefined (the default) or set to null, no storageClassName spec is
227 ## set, choosing the default provisioner. (gp2 on AWS, standard on
228 ## GKE, AWS & OpenStack)
229 ##
230 # storageClass: "-"
231 accessMode: ReadWriteMany
232 size: 2Gi
233 mountPath: /dockerdata-nfs
Brian Freeman6b1b0222018-09-10 07:53:22 -0500234 mountSubPath: robot/logs