-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefaults.env
48 lines (39 loc) · 1.15 KB
/
defaults.env
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
#!/bin/bash -e
# Constants
export DEV_IMAGE="quay.io/deis/go-dev:v1.27.0"
export API_PROFILE="2019-03-01-hybrid"
export ENVIRONMENT_NAME="AzureStackCloud"
export AUTHENTICATION_METHOD="client_secret"
export ORCHESTRATOR="kubernetes"
export AZURE_ENV="AzureStackCloud"
# Runner
export CLEANUP_ON_EXIT=false
export CLEANUP_IF_FAIL=false
export RETAIN_SSH=true
export SKIP_TESTS=false
export E2E_TEST_TIMEOUT="60m"
export SKIP_LOGS_COLLECTION=true
# First deployment repo & branch
export AKSE_REPO="azure/aks-engine"
export AKSE_BRANCH="master"
# Upgrade/Scale repo & branch
export UPGRADE_FORK="azure"
export UPGRADE_BRANCH="master"
# Scale
export SCALE_CLUSTER=false
export NODE_COUNT=2
export SKIP_TESTS_AFTER_SCALE_DOWN=true
export SKIP_TESTS_AFTER_SCALE_UP=true
# Upgrade
export UPGRADE_CLUSTER=false
export UPGRADE_VERSIONS="1.15.10"
export MASTER_VM_UPGRADE_SKU="Standard_D3_v2"
export SKIP_TESTS_AFTER_UPGRADE=true
# Log Collection
export GET_CLUSTER_LOGS=false
# Custom VNET
export CREATE_VNET=false
# Tests
export GINKGO_SKIP="should have the correct storage classes deployed|should be able to attach azure file"
export GINKGO_FAIL_FAST=false
export TEST_PVC=true