Namespace
rancher
Image / Tag
hyperkube:v1.19.11-rancher1-windows-20H2
Content Digest
sha256:4da2b54c0e82701a0b36075823b96fdaf19c31c1640866f3a32f00250d771e68
Details
Created

2021-06-02 17:22:36 UTC

Size

2.75 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-06-02T17:10:33Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    faf9d3124f14ea06c19a37c9ab8c5115b8003744
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.19.11


Layers

[#000] sha256:18ae6bebe21d13de4442e4cafdf4fbf4e5b0d866afe416f302da087f53f04ae1 - 50.93% (1.4 GB)

[#001] sha256:182d4887a30d6c29414d04c41f1093a66f4cc1bf83092d3231cc5538404d75ad - 34.01% (958 MB)

[#002] sha256:a6b3d8e19b2ca4f676848b008ae2cb99c9a7e3cfed36f2c83859ea6ede59d037 - 0.0% (1.26 KB)

[#003] sha256:ed6d989a7ef9b1299590cc108c90401795483b65903d0c3a54dc13379ca85f33 - 0.29% (8.22 MB)

[#004] sha256:4908815331e0403dd9f1e13de00507a2e9038118c3efce2d21726b4907af28b5 - 0.0% (1.3 KB)

[#005] sha256:079c67ded3264769ea9872bf31a46599cd385b21b0901c8ae26d09aa32564b54 - 9.84% (277 MB)

[#006] sha256:72f7e91a4fb65c6d2a5afa78cde8568ca5e52084119f70954c1b4e34b925eb23 - 0.01% (385 KB)

[#007] sha256:4708a96b188d770479dbaa7573d84c5f19b01cd1215b947c04173180dc8a9e11 - 2.73% (77 MB)

[#008] sha256:b6ee57fd1a2d409b9d41303a8b1cf49a323312c48e1608fbc2b138f341a56636 - 0.45% (12.7 MB)

[#009] sha256:7ea10d67ac561b7d2109a45667e52955efff25d2883bc1e6a5002e5e924d0388 - 1.73% (48.9 MB)

[#010] sha256:4421c73fdd8c9da5b5fc07a6a432e7970d8627fe4276dbb7028176df6ff019d4 - 0.0% (2.78 KB)

[#011] sha256:4814a2d8efa856510b1f2d441b594448913d119afbd5357bb7ea08e890cb6e2c - 0.0% (1.27 KB)

[#012] sha256:bc95c21588ec243dfdc1231e52a8e6acdc4f3feeef157d971fffda5f847bdebe - 0.0% (1.32 KB)

[#013] sha256:52a0c8d603a87d8801eaa886249cdff19b13d86f6a1500dddfb03945a3b2ea56 - 0.0% (1.3 KB)

[#014] sha256:9b8c353220d7207a74ffd489500676d5c8547ea691d72126cfe2621489ecf972 - 0.0% (1.3 KB)


History
2020-09-10 20:40:05 UTC

Apply image 20H2-RTM-amd64

2021-04-30 07:39:08 UTC

Install update 20H2-amd64

2021-06-02 16:56:25 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2021-06-02 16:57:19 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; if (-not (Get-Command Expand-7Zip -ErrorAction Ignore)) { Install-PackageProvider -Name NuGet -Force -Verbose; Install-Module -Name 7Zip4Powershell -Repository PSGallery -Force -Verbose; if(-not $?) { Write-Error "Failed to install package"; Exit 1; } }

2021-06-02 17:10:34 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV K8S_VERSION=v1.19.11

2021-06-02 17:11:07 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = ('https://dl.k8s.io/{0}/kubernetes-node-windows-amd64.tar.gz' -f $env:K8S_VERSION); function Expand-GZip ($inFile, $outFile) { $input = New-Object System.IO.FileStream $inFile, ([IO.FileMode]::Open), ([IO.FileAccess]::Read), ([IO.FileShare]::Read); $output = New-Object System.IO.FileStream $outFile, ([IO.FileMode]::Create), ([IO.FileAccess]::Write), ([IO.FileShare]::None); $gzipStream = New-Object System.IO.Compression.GzipStream $input, ([IO.Compression.CompressionMode]::Decompress); try { if (!$input -or !$output -or !$gzipStream) { Write-Error "Failed to Unzip the archive"; Exit 1; } $buffer = New-Object byte[](1024); while ($true) { $read = $gzipstream.Read($buffer, 0, 1024); if ($read -le 0 ) { break; } $output.Write($buffer, 0, $read); } } finally { $gzipStream.Close(); $output.Close(); $input.Close(); } }; Write-Host ('Downloading Kubernetes from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\kubernetes.tar.gz -Uri $URL; Write-Host 'Expanding ...'; Expand-GZip c:\kubernetes.tar.gz c:\kubernetes.tar; Expand-7Zip c:\kubernetes.tar c:\; Write-Host 'Complete.'

2021-06-02 17:11:20 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -ItemType SymbolicLink -Target "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -Path "C:\Windows\System32\WindowsPowerShell\v1.0\pwsh.exe"

2021-06-02 17:22:03 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $URL = 'https://github.com/rancher/azure-cli/releases/download/v0.0.2/dist.azure-cli.zip'; Write-Host ('Downloading azure-cli from {0} ...' -f $URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -UseBasicParsing -OutFile c:\azure-cli.zip -Uri $URL; Write-Host 'Expanding ...'; Expand-Archive -Force -Path c:\azure-cli.zip -DestinationPath c:\azure-cli; Remove-Item -Force -Path c:\azure-cli.zip; Write-Host 'Complete.'

2021-06-02 17:22:17 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Move-Item -Path /kubernetes/node/bin/kubectl.exe -Destination /Windows

2021-06-02 17:22:32 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; New-Item -Force -ItemType Directory -Path /etc; New-Item -Force -ItemType Directory -Path /etc/kubernetes; New-Item -Force -ItemType Directory -Path /etc/kubernetes/bin; Move-Item -Path /kubernetes/node/bin/*.exe -Destination /etc/kubernetes/bin/

2021-06-02 17:22:33 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) COPY file:a25ff59f87ce735ca258824b8e027055fcc5a2f55b5e3e0346de6848ff3fa9ab in \usr\bin\

2021-06-02 17:22:34 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-06-02T17:10:33Z

2021-06-02 17:22:34 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.schema-version=1.0

2021-06-02 17:22:35 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-ref=faf9d3124f14ea06c19a37c9ab8c5115b8003744

2021-06-02 17:22:36 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.vcs-url=https://github.com/rancher/hyperkube.git

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete