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

Updating kubernetes tools in Worker Tools #67

Merged
merged 4 commits into from
Jan 10, 2024
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
12 changes: 6 additions & 6 deletions ubuntu.22.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
FROM ubuntu:22.04

ARG Aws_Cli_Version=2.13.31
ARG Aws_Iam_Authenticator_Version=0.5.3
ARG Aws_Powershell_Version=4.1.2
ARG Aws_Iam_Authenticator_Version=0.5.9
ARG Aws_Powershell_Version=4.1.412
ARG Azure_Cli_Version=2.51.0-1~jammy
ARG Azure_Powershell_Version=4.5.0
ARG Dotnet_Sdk_Version=6.0
ARG Ecs_Cli_Version=1.20.0
ARG Eks_Cli_Version=0.25.0
ARG Google_Cloud_Cli_Version=412.0.0-0
ARG Eks_Cli_Version=v0.156.0
ARG Google_Cloud_Cli_Version=445.0.0-0
ARG Google_Cloud_Gke_Cloud_Auth_Plugin_Version=412.0.0-0
ARG Helm_Version=v3.7.1
ARG Java_Jdk_Version=11.0.21+9-0ubuntu1~22.04
ARG Kubectl_Version=1.18.8-00
ARG Kubelogin_Version=v0.0.25
ARG Kubectl_Version=1.28.1-00
ARG Kubelogin_Version=v0.0.30
ARG Octopus_Cli_Version=1.7.1
ARG Octopus_Cli_Legacy_Version=9.1.7
ARG Octopus_Client_Version=11.6.3644
Expand Down
12 changes: 6 additions & 6 deletions ubuntu.22.04/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@
## Installed Software

- Aws CLI 2.13.31
- Aws Iam Authenticator 0.5.3
- Aws Powershell 4.1.2
- Aws Iam Authenticator 0.5.9
- Aws Powershell 4.1.412
- Azure CLI 2.51.0-1~jammy
- Azure Powershell 4.5.0
- Dotnet Sdk 3.1.401-1
- Ecs CLI 1.20.0
- Eks CTL 0.25.0
- Google Cloud CLI 412.0.0-0
- Eks CTL 0.156.0
- Google Cloud CLI 445.0.0-0
- Google Cloud GKE auth plugin 412.0.0-0
- Helm v3.7.1
- Java Jdk 11.0.20.1+1-0ubuntu1~22.04
- Kubectl 1.18.8-00
- Kubelogin v0.0.25
- Kubectl 1.28.1-00
- Kubelogin v0.0.30
- Octopus CLI 1.7.1
- Octopus CLI Legacy 9.1.7
- Octopus Client 11.6.3644
Expand Down
10 changes: 5 additions & 5 deletions ubuntu.22.04/spec/ubuntu.22.04.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Describe 'installed dependencies' {
}

It 'has aws powershell module installed' {
(Get-Module AWSPowerShell.NetCore -ListAvailable).Version.ToString() | should -be '4.1.2.0'
(Get-Module AWSPowerShell.NetCore -ListAvailable).Version.ToString() | should -be '4.1.412'
}

It 'has az installed' {
Expand All @@ -46,12 +46,12 @@ Describe 'installed dependencies' {
}

It 'has kubectl installed' {
kubectl version --client | Should -match '1.18.8'
kubectl version --client | Select-Object -First 1 | Should -match '1.28.1'
$LASTEXITCODE | Should -be 0
}

It 'has kubelogin installed' {
kubelogin --version | Select-Object -First 1 -Skip 1 | Should -match 'v0.0.25'
kubelogin --version | Select-Object -First 1 -Skip 1 | Should -match 'v0.0.30'
$LASTEXITCODE | Should -be 0
}

Expand All @@ -77,7 +77,7 @@ Describe 'installed dependencies' {
}

It 'has gcloud installed' {
gcloud --version | Select -First 1 | Should -be 'Google Cloud SDK 412.0.0'
gcloud --version | Select -First 1 | Should -be 'Google Cloud SDK 445.0.0'
$LASTEXITCODE | Should -be 0
}

Expand All @@ -97,7 +97,7 @@ Describe 'installed dependencies' {
}

It 'has eksctl installed' {
eksctl version | Should -match '0.25.0'
eksctl version | Should -match '0.156.0'
$LASTEXITCODE | Should -be 0
}

Expand Down