Skip to content

Commit

Permalink
Removed AKS related artifacts from repo (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
kichalla authored May 7, 2019
1 parent 86d077a commit 547c3a6
Show file tree
Hide file tree
Showing 39 changed files with 118 additions and 2,496 deletions.
1 change: 0 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ $testScriptGeneratorScript "$@"
$testBuildImagesScript "$@"
$testRuntimeImagesScript "$@"

# Test on AKS
$testIntegrationScript "$@"

# Test the Node.JS startup script generator
Expand Down
15 changes: 9 additions & 6 deletions build/test-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ set -e
declare -r REPO_DIR=$( cd $( dirname "$0" ) && cd .. && pwd )
source $REPO_DIR/build/__variables.sh

# if [ -z "$STORAGEACCOUNTKEY" ]; then # If STORAGEACCOUNTKEY is unset or empty
# export STORAGEACCOUNTKEY=`az.cmd storage account keys list -n oryxautomation | grep key1 | awk '{print $NF}'`
# fi

testCaseFilter=${1:-'Category!=AKS'}
if [ -n "$1" ]
then
testCaseFilter="--filter $1"
fi

echo
echo "Running integration tests with filter '$testCaseFilter'..."
echo
testProjectName="Oryx.Integration.Tests"
cd "$TESTS_SRC_DIR/$testProjectName"

dotnet test --filter $testCaseFilter --test-adapter-path:. --logger:"xunit;LogFilePath=$ARTIFACTS_DIR/testResults/$testProjectName.xml" -c $BUILD_CONFIGURATION
dotnet test \
$testCaseFilter \
--test-adapter-path:. \
--logger:"xunit;LogFilePath=$ARTIFACTS_DIR/testResults/$testProjectName.xml" \
-c $BUILD_CONFIGURATION
11 changes: 0 additions & 11 deletions doc/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,6 @@ The following are required to run and test this project locally.
- go 1.11+ (for startup script generator)
- docker v18.06.1-ce

#### Additional requirements for tests

- [az CLI](https://github.com/Azure/azure-cli)
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)

> **NOTE:** You must set credentials for connecting to a Kubernetes cluster in
> `.kube/config` prior to running tests. If using Azure Kubernetes service,
> just run this command: `az aks get-credentials -g <resource group> -n
> <cluster>`.

# Go (Golang)

The startup script generator is written in Go to reduce storage space
Expand Down
253 changes: 0 additions & 253 deletions tests/Oryx.Integration.Tests/AksTests/SampleAppsTest.cs

This file was deleted.

Loading

0 comments on commit 547c3a6

Please sign in to comment.