3172be1d937d0e2f46fc136dbd16fb523e535f9c
[integration.git] / deployment / aks / cloud.conf.example
1 # 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
17 RANDOM_STRING=`cat /dev/urandom | env LC_CTYPE=C tr -cd 'a-zA-Z0-9' | head -c 4`
18 BUILD="ONAP$RANDOM_STRING"
19
20 # GLOBAL PARAMS
21 LOCATION="westus2"
22 USER_PUBLIC_IP_PREFIX="10.0.0.0/8 192.168.100.0/24"
23 BUILD_DIR=/home/username/$BUILD
24
25 # AKS PARAMS
26 AKS_RESOURCE_GROUP_NAME=$BUILD"-AKSRG"
27 AKS_NAME=$BUILD"-AKS"
28 AKS_K8_VERSION="1.14.6"
29 AKS_NODE_COUNT="7"
30 AKS_NODE_SIZE="Standard_DS4_v2"
31 AKS_VNET_NAME="$BUILD"-AKSVNET""
32 AKS_DNS_PREFIX=$BUILD"-dns"
33 AKS_POD_CIDR="10.244.0.0/16"
34 AKS_NODE_CIDR="169.1.0.0/16"
35 AKS_SERVICE_CIDR="170.1.0.0/16"
36 AKS_DNS_IP="170.1.0.10"
37 AKS_ADMIN_USER="onap_user"
38
39 # NFS PARAMS
40 NFS_NAME=$BUILD"-NFS"
41 NFS_RG=$BUILD"-NFS-RG"
42 NFS_VM_SIZE=$AKS_NODE_SIZE
43 NFS_LOCATION=$LOCATION
44 NFS_CIDR="173.163.0.0/28"
45 NFS_ADMIN_USER="onap_user"
46 NFS_VNET_NAME=$BUILD"-NFSVNET"
47 NFS_SUBNET_NAME=$BUILD"-NFSSUBNET"
48 NFS_DISK_SIZE=512
49
50 # DEVSTACK PARAMS
51 DEVSTACK_NAME=$BUILD"-DEVSTACK"
52 DEVSTACK_RG=$BUILD"-DEVSTACK-RG"
53 DEVSTACK_VM_SIZE="Standard_D16s_v3"
54 DEVSTACK_LOCATION=$LOCATION
55 DEVSTACK_CIDR="10.0.200.0/24"
56 DEVSTACK_PRIVATE_IP="10.0.200.4"
57 DEVSTACK_ADMIN_USER="onap_user"
58 DEVSTACK_VNET_NAME=$BUILD"-DEVSTACKVNET"
59 DEVSTACK_SUBNET_NAME=$BUILD"-DEVSTACKSUBNET"
60 DEVSTACK_DISK_SIZE=512
61 DEVSTACK_BRANCH="stable/stein"
62 OPENSTACK_USER="onap_user"
63 OPENSTACK_PASS="supersecret"
64 OPENSTACK_TENANT="onap_project"
65 OPENSTACK_REGION="RegionOne"
66 IMAGE_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"
67
68 # ONAP PARAMS
69 CLLI="testclli1"
70 CLOUD_OWNER="ONAPOWNER"
71 CLOUD_REGION="ONAPREGION"
72 CUSTOMER="ONAPCUSTOMER"
73 SUBSCRIBER="ONAPSUBSCRIBER"
74 SERVICE_TYPE="ONAPSERVICE"
75 AZ="nova"
76 OE="testentity"
77 LOB="testlob"
78 PROJECT="testproject"
79 PLATFORM="testplatform"
80 OS_ID="OnapOpenstack"
81 OS_TENANT_ROLE="admin"
82 OS_KEYSTONE="KEYSTONE_V3"
83 OOM_BRANCH="master"
84 CHART_VERSION="5.0.0"
85 OOM_OVERRIDES=""
86 DOCKER_REPOSITORY="nexus3.onap.org:10001"