-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
131 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Constants | ||
export DEV_IMAGE="quay.io/deis/go-dev:v1.25.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=true | ||
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="jadarsie/aks-engine" | ||
export AKSE_BRANCH="e2e" | ||
|
||
# Upgrade/Scale repo & branch | ||
export UPGRADE_FORK="jadarsie" | ||
export UPGRADE_BRANCH="e2e" | ||
|
||
# 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" | ||
export TEST_PVC=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
set -o xtrace | ||
|
||
jq .env ${CLUSTER_DEFINITION} | jq -r 'keys[] as $k | "export \($k)=\"\(.[$k])\""' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"env": { | ||
"UPGRADE_CLUSTER": true, | ||
"SKIP_TESTS": true | ||
}, | ||
"apiModel": { | ||
"apiVersion": "vlabs", | ||
"location": "", | ||
"properties": { | ||
"orchestratorProfile": { | ||
"orchestratorType": "Kubernetes", | ||
"orchestratorRelease": "1.14", | ||
"orchestratorVersion": "1.14.7", | ||
"kubernetesConfig": { | ||
"networkPlugin": "kubenet", | ||
"useInstanceMetadata": false | ||
} | ||
}, | ||
"masterProfile": { | ||
"count": 3, | ||
"dnsPrefix": "", | ||
"vmSize": "Standard_D2_v2", | ||
"distro": "aks-ubuntu-16.04" | ||
}, | ||
"agentPoolProfiles": [ | ||
{ | ||
"name": "linuxpool", | ||
"count": 3, | ||
"vmSize": "Standard_D2_v2", | ||
"availabilityProfile": "AvailabilitySet", | ||
"distro": "aks-ubuntu-16.04", | ||
"acceleratedNetworkingEnabled": false | ||
} | ||
], | ||
"linuxProfile": { | ||
"adminUsername": "azureuser", | ||
"ssh": { | ||
"publicKeys": [ | ||
{ | ||
"keyData": "" | ||
} | ||
] | ||
} | ||
}, | ||
"servicePrincipalProfile": { | ||
"clientId": "", | ||
"secret": "" | ||
}, | ||
"customCloudProfile": { | ||
"identitySystem": "", | ||
"authenticationMethod": "client_secret", | ||
"portalURL": "" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters