Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{AKS} Update matrix & Fix venv setup for AKS pipeline #3716

Merged
merged 1 commit into from
Jul 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"exclude": {
"need additional feature": [
"test_managed_aad_enable_azure_rbac",
"test_aks_create_enable_encryption",
"test_aks_create_edge_zone"
]
}
Expand Down
8 changes: 0 additions & 8 deletions src/aks-preview/azcli_aks_live_test/scripts/setup_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
# specify the version of python3, e.g. 3.6
[[ -z "${PYTHON_VERSION}" ]] && (echo "PYTHON_VERSION is empty"; exit 1)

patchImageTools(){
apt update
apt install -y curl
}

setupVenv(){
# delete existing venv
deactivate || true
Expand Down Expand Up @@ -119,9 +114,6 @@ if [[ -n ${setup_option} ]]; then
set -o pipefail
set -o xtrace

# install missing tools in the image
patchImageTools

# create new venv if second arg is not "n"
new_venv=${2:-"n"}
if [[ ${new_venv} == "y" ]]; then
Expand Down