forked from openshift/openshift-azure
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenv.example
68 lines (52 loc) · 2.59 KB
/
env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Set the username, password, subscription, tenant, client IDs (mandatory)
export AZURE_USERNAME=
export AZURE_PASSWORD=
export AZURE_SUBSCRIPTION_ID=
export AZURE_TENANT_ID=
export AZURE_CLIENT_ID=
export AZURE_CLIENT_SECRET=
# set the region to one of (eastus, westeurope or australiasoutheast)
export AZURE_REGION=eastus
# Set the DNS domain and resource group (mandatory)
export DNS_DOMAIN=osadev.cloud
export DNS_RESOURCEGROUP=dns
# Set the OpenShift version (v3.11) (mandatory)
export DEPLOY_VERSION=v3.11
# If running tests please uncomment this section.
#export RUNNING_UNDER_TEST=true
# If deploying pre-release OCP, uncomment and customise this section.
#export OREG_URL=$DEV_REGISTRY/openshift3/ose-\${component}:\${version}
# If deploying CentOS/origin, uncomment this section, otherwise do nothing
#export DEPLOY_OS=centos7
# For AAD to work, the Web API application has to be pre-created. Uncomment and
# customise this section with your Web API AAD application details
# Do not set this value same as AZURE_CLIENT_ID. AZURE_AAD_CLIENT_ID application
# instance secret is being reset each time cluster is created
#export AZURE_AAD_CLIENT_ID=
# If you want OSA to autoaccept the marketplace agreement for the image you are
# deploying, uncomment the following line, otherwise do nothing
#export AUTOACCEPT_MARKETPLACE_AGREEMENT=yes
# If autodiscovering the latest local node Image resource, uncomment and
# customise this section
#export IMAGE_RESOURCEGROUP=images
#export IMAGE_RESOURCENAME=$(az image list -g $IMAGE_RESOURCEGROUP -o json --query "[?starts_with(name, '${DEPLOY_OS:-rhel7}-${DEPLOY_VERSION//v}') && tags.valid=='true'].name | sort(@) | [-1]" | tr -d '"')
# If overriding the published marketplace image, uncomment and customise this
# section
#export IMAGE_OFFER=osa-preview
#export IMAGE_VERSION=latest
# If overriding the image used for the sync pod, uncomment and customise this
# section.
#export SYNC_IMAGE=quay.io/openshift-on-azure/sync:v3.11
# If overriding the image used for the azure-controllers pod, uncomment and
# customise this section.
#export AZURE_CONTROLLERS_IMAGE=quay.io/openshift-on-azure/azure-controllers:v3.11
# If overriding the image used for the backup container, customise this section.
#export ETCDBACKUP_IMAGE=quay.io/openshift-on-azure/etcdbackup:latest
# If set to true, avoid waiting for the resource group to be cleaned up during
# deletion.
#export NO_WAIT=true
# If set to true, avoid tagging the resource group to be cleaned up by the
# pruner.
#export NOGROUPTAGS=true
# Path to the request to send to the OSA RP.
#export MANIFEST=test/manifests/normal/create.yaml