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

ArcBox fix #1980

Merged
merged 3 commits into from
Jul 5, 2023
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
5 changes: 3 additions & 2 deletions azure_jumpstart_arcbox/artifacts/DataOpsLogonScript.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ az provider register --namespace Microsoft.AzureArcData --wait
Write-Header "Installing Azure CLI extensions"
az config set extension.use_dynamic_install=yes_without_prompt
# Installing Azure CLI extensions
az extension add --name connectedk8s --version "1.3.17" --system
# az extension add --name connectedk8s --version "1.3.20" --system // Keeping for fast pindown version test
az extension add --name connectedk8s --system
az extension add --name arcdata --system
az -v

Expand Down Expand Up @@ -191,7 +192,7 @@ foreach ($cluster in $clusters) {
--auto-upgrade false `
--scope cluster `
--release-namespace arc `
--version 1.19.0 `
--version 1.20.0 `
--config Microsoft.CustomLocation.ServiceAccount=sa-bootstrapper

Write-Host "`n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ az k8s-extension create --name arc-data-services `
--resource-group $Env:resourceGroup `
--auto-upgrade false `
--scope cluster `
--version 1.19.0 `
--version 1.20.0 `
--release-namespace arc `
--config Microsoft.CustomLocation.ServiceAccount=sa-bootstrapper

Expand Down