Namespace
rancher
Image / Tag
hyperkube:v1.22.3-rancher1-windows-20H2
Content Digest
sha256:9bfdbf1d55652accb9cf7a4ede6069005ab62f36d60ad658b08bcb570d42aa25
Details
Created

2021-10-28 16:45:34 UTC

Size

2.99 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-10-28T16:34:56Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    13daccb095147553b97f0b93073121f3ae730520
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.22.3


Layers

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

[#001] sha256:b6fefc95bf4a567290e69413f970ab250c2799cc8fdb01f701decff56639e7fa - 37.03% (1.11 GB)

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

[#003] sha256:07909a59f276e58a2f75ba9d668f53a22de8169455677e556ce9cda2c968a36c - 0.29% (8.82 MB)

[#004] sha256:fb656bf832c92620088d1974c953edceda8d09b494383858afdcfdd5c51d65c6 - 0.0% (1.29 KB)

[#005] sha256:478bd21b9720dc5b443df57c1dbae82355e83eb474200369459e8dad3bf50390 - 10.87% (332 MB)

[#006] sha256:8b5c0ef0ea99011fa905c6e18abdb6b3f4caf978462d35dcf1364ba4a7c8adc5 - 0.01% (364 KB)

[#007] sha256:82187c1efdddeba7107a57774be787efd5e8f91fe5b678b01b04fe499f69c3cf - 2.35% (71.9 MB)

[#008] sha256:dcdeb8a74c09b241d3d6331761df543f9dc05dff354505c3857ec3757611d068 - 0.44% (13.6 MB)

[#009] sha256:1066b63e8e90b0ac13e829acc17f6f74dea57f2cc4bd03a3e70bd1afde3d3c97 - 2.1% (64.2 MB)

[#010] sha256:ae6821eaa9a6b8e40a05f129b9342f417c5bdd2467629ec5488070f0eb6bcc2c - 0.0% (2.75 KB)

[#011] sha256:9ce942dedf458349041267e231f198d364e42fe849331b30ae401b76589abca3 - 0.0% (1.28 KB)

[#012] sha256:7e56d03a503342dc430c3691d3490e5a118a4ad5fc83d71122943c447d37d610 - 0.0% (1.28 KB)

[#013] sha256:2af2a0944283564e0d2be8f7807cbec986462cba3038292f77c3a7d493f4e078 - 0.0% (1.26 KB)

[#014] sha256:b67ce68b30ba3e0a47b4213b503d664fad4233b77569c94181955fbca1819dc8 - 0.0% (1.26 KB)


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

Apply image 20H2-RTM-amd64

2021-10-06 06:59:29 UTC

Install update 20H2-amd64

2021-10-28 16:39:26 UTC

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

2021-10-28 16:40:11 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-10-28 16:40:11 UTC

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

2021-10-28 16:40:39 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-10-28 16:40:48 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-10-28 16:45:11 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-10-28 16:45:21 UTC

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

2021-10-28 16:45:31 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-10-28 16:45:32 UTC

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

2021-10-28 16:45:32 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-10-28T16:34:56Z

2021-10-28 16:45:33 UTC

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

2021-10-28 16:45:33 UTC

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

2021-10-28 16:45:34 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