Namespace
rancher
Image / Tag
hyperkube:v1.21.10-rancher1-windows-20H2
Content Digest
sha256:fe40db444f3a8eb9ea6e52632ffb70842371fcde5bde44d78cc85f0ef36a9d7d
Details
Created

2022-03-04 16:32:10 UTC

Size

3.01 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-03-04T16:22:10Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    45f277531affda80baa80398fa2d6cc4a75058a3
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.21.10


Layers

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

[#001] sha256:f313bf43a2676c7ded41dabb665c383c42fea908e4f7f143997caf40bce56f8f - 37.63% (1.13 GB)

[#002] sha256:bb6578e9d4644d4551af69e164e9f93fc5870b1ab7beac4c49a6a4fcc06b2796 - 0.0% (1.35 KB)

[#003] sha256:7b508b72addc727852b4ebcb7ffcc20afb963dd2b50e291a6e35e1cf927c0b73 - 0.29% (8.85 MB)

[#004] sha256:579cfc6349f781b75403b7e1513162d3c5ab9851fe86bd8893a17e46d40f601f - 0.0% (1.31 KB)

[#005] sha256:cde667a36fdec2e603e2f1ce6f2da94a2ebea326d83be91c001c6d4595949c70 - 10.74% (332 MB)

[#006] sha256:74cec3c5c27a7c3ae4a60ed4d0fbd5fedb01ac36fcd8c4d6e9349e14116c0846 - 0.01% (390 KB)

[#007] sha256:574d0181235fa210ba9afa61eccfe0a8855bf10e95ec3a3930ca28aa60ebf0bb - 2.33% (71.9 MB)

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

[#009] sha256:135fdba71fc7e5e8162407109f986cddf6fc119c16657978ec0285ee128f6102 - 2.06% (63.7 MB)

[#010] sha256:c82992c9d41c5d9cc5da1cca32fb90768076be01e587b025a7cd83f5d975e895 - 0.0% (2.74 KB)

[#011] sha256:fa77d097e630628add67eba33720e87c92482c4eadb63b0216142c576ab531d6 - 0.0% (1.3 KB)

[#012] sha256:fc9eece148669c3e5d3b5db3708f8093869faee6d2fc3eec7944b105c80dddaf - 0.0% (1.26 KB)

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

[#014] sha256:07604e7410140de954bbbf7a3cfe9f361193e949223617f33c58be18c29f8cf5 - 0.0% (1.28 KB)


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

Apply image 20H2-RTM-amd64

2022-02-04 06:50:43 UTC

Install update 20H2-amd64

2022-03-04 16:26:21 UTC

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

2022-03-04 16:26:59 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; } }

2022-03-04 16:26:59 UTC

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

2022-03-04 16:27:25 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.'

2022-03-04 16:27:35 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"

2022-03-04 16:31:48 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.'

2022-03-04 16:31:57 UTC

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

2022-03-04 16:32:08 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/

2022-03-04 16:32:08 UTC

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

2022-03-04 16:32:09 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-03-04T16:22:10Z

2022-03-04 16:32:09 UTC

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

2022-03-04 16:32:10 UTC

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

2022-03-04 16:32:10 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