blob: d3f5087ba991dbd103b4aa1674bc537f3c7c701c [file] [log] [blame]
stark, steven6754bc12019-09-19 15:43:00 -07001# Copyright 2019 AT&T Intellectual Property. All rights reserved.
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
15# The variable $BUILD will be generated dynamically when this file is sourced
16
17RANDOM_STRING=`cat /dev/urandom | env LC_CTYPE=C tr -cd 'a-zA-Z0-9' | head -c 4`
18BUILD="ONAP$RANDOM_STRING"
19
20# GLOBAL PARAMS
21LOCATION="westus2"
22USER_PUBLIC_IP_PREFIX="10.0.0.0/8 192.168.100.0/24"
23BUILD_DIR=/home/username/$BUILD
24
25# AKS PARAMS
26AKS_RESOURCE_GROUP_NAME=$BUILD"-AKSRG"
27AKS_NAME=$BUILD"-AKS"
28AKS_K8_VERSION="1.14.6"
29AKS_NODE_COUNT="7"
30AKS_NODE_SIZE="Standard_DS4_v2"
31AKS_VNET_NAME="$BUILD"-AKSVNET""
32AKS_DNS_PREFIX=$BUILD"-dns"
33AKS_POD_CIDR="10.244.0.0/16"
34AKS_NODE_CIDR="169.1.0.0/16"
35AKS_SERVICE_CIDR="170.1.0.0/16"
36AKS_DNS_IP="170.1.0.10"
37AKS_ADMIN_USER="onap_user"
38
39# NFS PARAMS
40NFS_NAME=$BUILD"-NFS"
41NFS_RG=$BUILD"-NFS-RG"
42NFS_VM_SIZE=$AKS_NODE_SIZE
43NFS_LOCATION=$LOCATION
44NFS_CIDR="173.163.0.0/28"
45NFS_ADMIN_USER="onap_user"
46NFS_VNET_NAME=$BUILD"-NFSVNET"
47NFS_SUBNET_NAME=$BUILD"-NFSSUBNET"
48NFS_DISK_SIZE=512
49
50# DEVSTACK PARAMS
51DEVSTACK_NAME=$BUILD"-DEVSTACK"
52DEVSTACK_RG=$BUILD"-DEVSTACK-RG"
53DEVSTACK_VM_SIZE="Standard_D16s_v3"
54DEVSTACK_LOCATION=$LOCATION
55DEVSTACK_CIDR="10.0.200.0/24"
56DEVSTACK_PRIVATE_IP="10.0.200.4"
57DEVSTACK_ADMIN_USER="onap_user"
58DEVSTACK_VNET_NAME=$BUILD"-DEVSTACKVNET"
59DEVSTACK_SUBNET_NAME=$BUILD"-DEVSTACKSUBNET"
60DEVSTACK_DISK_SIZE=512
61OPENSTACK_USER="onap_user"
62OPENSTACK_PASS="supersecret"
63OPENSTACK_TENANT="onap_project"
64OPENSTACK_REGION="RegionOne"
65IMAGE_LIST="https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img"
66
67# ONAP PARAMS
68CLLI="testclli1"
69CLOUD_OWNER="ONAPOWNER"
70CLOUD_REGION="ONAPREGION"
71CUSTOMER="ONAPCUSTOMER"
72SUBSCRIBER="ONAPSUBSCRIBER"
73SERVICE_TYPE="ONAPSERVICE"
74AZ="nova"
75OE="testentity"
76LOB="testlob"
77PROJECT="testproject"
78PLATFORM="testplatform"
79OS_ID="OnapOpenstack"
80OS_TENANT_ROLE="admin"
81OS_KEYSTONE="KEYSTONE_V3"
82OOM_BRANCH="master"
83CHART_VERSION="5.0.0"
84OOM_OVERRIDES=""
85DOCKER_REPOSITORY="nexus3.onap.org:10001"