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

2022-03-23 06:37:32 UTC

Size

2.99 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-03-23T06:32:05Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    4f91d624a824f3aaeaca1e522be1d7ad27f7d199
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.21.11


Layers

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

[#001] sha256:06b127abbab45e5389c3fddfd5ce2f91ad3c64bfa2e224b621fa88aebae03e8b - 37.19% (1.11 GB)

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

[#003] sha256:ca5b6519c309640f5ab8c35f2793bbc0c494f1e5ede55c24939a51e7c693ac63 - 0.29% (8.87 MB)

[#004] sha256:22b245bb1a039dbb58c27ec845139dc17a4bc5db4cde8336dc06d4cc0fdacd2a - 0.0% (1.26 KB)

[#005] sha256:00c8ddbf6287361a402798a37f3a1e89e58838e9d6e4426dd1951d5fef022ac1 - 10.82% (332 MB)

[#006] sha256:e79be4bd707aa6efaf3c2628828d5075c08e2d4852bcf5155d169c6af8e6552f - 0.01% (388 KB)

[#007] sha256:1209db03353b9986409a455f248ef35b26668d5f934f985c94079367158c00e8 - 2.35% (72 MB)

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

[#009] sha256:da4f7b29d7765787a2bf4a84bcc3ea985e1780e9d7075530b0084eb339fa22e8 - 2.08% (63.7 MB)

[#010] sha256:abb13e73add75b634e8ae013e738faca0ebbc1b55e9546ea39c796584bad186b - 0.0% (2.73 KB)

[#011] sha256:9c1cafa79230d797c6a06386164d46c802848c2280c36e3d4f47285a87c78989 - 0.0% (1.26 KB)

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

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

[#014] sha256:2edf0d604062bf9909c04ba58958e65ffdb18425b08c8809566b279a9552a9bb - 0.0% (1.28 KB)


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

Apply image 20H2-RTM-amd64

2022-03-03 08:25:37 UTC

Install update 20H2-amd64

2022-03-23 06:25:09 UTC

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

2022-03-23 06:25:53 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-23 06:32:06 UTC

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

2022-03-23 06:32:32 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-23 06:32:41 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-23 06:37: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.'

2022-03-23 06:37:20 UTC

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

2022-03-23 06:37:30 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-23 06:37:30 UTC

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

2022-03-23 06:37:30 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-03-23T06:32:05Z

2022-03-23 06:37:31 UTC

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

2022-03-23 06:37:31 UTC

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

2022-03-23 06:37:32 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