Namespace
rancher
Image / Tag
hyperkube:v1.22.10-rancher1-windows-20H2
Content Digest
sha256:5cc5bdd354eadc28254934ce8e317c6b809acdbcf74322e3453dd38ea9b1fa11
Details
Created

2022-06-03 06:06:36 UTC

Size

3 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-06-03T05:58:09Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    3df67cf0e580f17b5665676d3fd6927b3b6d1ab7
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.22.10


Layers

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

[#001] sha256:52eb12a90ff62c5c90193a827fcaf7cb3b7bc762dfb3326ad322ce1afece3728 - 37.28% (1.12 GB)

[#002] sha256:3caaa07393c408279cee1ec711a9c8ccc90037ef2c3b2974f62bf338683e6ea0 - 0.0% (1.29 KB)

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

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

[#005] sha256:6b7964c38528591c8bc3eae7e65b5395bb74549974ab98105f3707f31852f50f - 10.84% (333 MB)

[#006] sha256:01297537e427c18184b06f25e88a9861851de2ed611339879dbc90fbc05e7c7b - 0.01% (408 KB)

[#007] sha256:6b392280b416349677a895b23eede670d35257bc8a8bcea0e75f77a253fb8f31 - 2.34% (72 MB)

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

[#009] sha256:3f5d6f9d16bc00ae3b694b7b2df482271e8e7c3efb59cc156b47f270873ceff3 - 2.09% (64.2 MB)

[#010] sha256:0599bf175cc972d544b759b59bc255716b1537a72a5dcbe872ec34e7f4a9568f - 0.0% (2.72 KB)

[#011] sha256:769f0d44d83af965f79aff85e7a4524b56d02bd94ea6bf62610244fed1c4ff7d - 0.0% (1.26 KB)

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

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

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


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

Apply image 10.0.19042.508

2022-05-06 22:46:53 UTC

Install update 10.0.19042.1706

2022-06-03 05:42:03 UTC

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

2022-06-03 05:42:29 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-06-03 05:58:12 UTC

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

2022-06-03 06:00:11 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-06-03 06:00:22 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-06-03 06:06:06 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-06-03 06:06:16 UTC

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

2022-06-03 06:06: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/

2022-06-03 06:06:33 UTC

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

2022-06-03 06:06:34 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-06-03T05:58:09Z

2022-06-03 06:06:35 UTC

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

2022-06-03 06:06:35 UTC

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

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