File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
powershell/PSCloudShellUtility Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1815,7 +1815,7 @@ function Get-PackageVersion() {
1815
1815
@ {displayname = " Helm" ; command = " helm" ; args = " version --short" ; match = " v(.+)" },
1816
1816
@ {displayname = " AZCopy" ; command = " azcopy" ; args = " --version" ; match = " azcopy version (.+)" },
1817
1817
@ {displayname = " Azure CLI" ; command = " az" ; args = " version " ; match = " `" azure-cli`" : `" (.+)`" " },
1818
- @ {displayname = " Kubectl" ; command = " kubectl" ; args = " version --client=true --short=true " ; match = " Client Version: v(.+)" }
1818
+ @ {displayname = " Kubectl" ; command = " kubectl" ; args = " version --client=true | head -n 1 " ; match = " Client Version: v(.+)" }
1819
1819
@ {displayname = " Terraform" ; command = " terraform" ; args = " version" ; match = " Terraform v(.+)" },
1820
1820
@ {displayname = " GitHub CLI" ; command = " gh" ; args = " --version" ; match = " gh version (.+) \(.*" },
1821
1821
@ {displayname = " Azure Developer CLI" ; command = " azd" ; args = " version" ; match = " azd version (\d+\.\d+\.\d+(-[\w\d\.]*)?).*" }
Original file line number Diff line number Diff line change 4
4
5
5
# To build yourself locally, override this location with a local image tag. See README.md for more detail
6
6
7
- ARG IMAGE_LOCATION=cdpxb787066ec88f4e20ae65e42a858c42ca00.azurecr.io/official/cloudshell:base.master.55fe0a50.20230503 .1
7
+ ARG IMAGE_LOCATION=cdpxb787066ec88f4e20ae65e42a858c42ca00.azurecr.io/official/cloudshell:base.master.3479fc9b.20230808 .1
8
8
9
9
# Copy from base build
10
10
FROM ${IMAGE_LOCATION}
@@ -47,7 +47,8 @@ RUN curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep
47
47
&& bicep --help
48
48
49
49
# Temp: fix ansible modules. Proper fix is to update base layer to use regular python for Ansible.
50
- RUN wget -nv -q https://raw.githubusercontent.com/ansible-collections/azure/dev/requirements-azure.txt \
50
+ RUN mkdir -p /usr/share/ansible/collections/ansible_collections/azure/azcollection/ \
51
+ && wget -nv -q -O /usr/share/ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt https://raw.githubusercontent.com/ansible-collections/azure/dev/requirements-azure.txt \
51
52
&& /opt/ansible/bin/python -m pip install -r /usr/share/ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt
52
53
53
54
# Copy and run script to Install powershell modules and setup Powershell machine profile
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Describe "Various programs installed with expected versions" {
18
18
19
19
It " Static Versions" {
20
20
# These programs are installed explicitly with specific versions
21
- $script :pmap [" Node.JS" ].Version | Should - Be ' 16.19 .1'
21
+ $script :pmap [" Node.JS" ].Version | Should - Be ' 16.20 .1'
22
22
$script :pmap [" PowerShell" ].Version | Should - BeLike ' 7.3*'
23
23
}
24
24
You can’t perform that action at this time.
0 commit comments