Namespace
rancher
Image / Tag
hyperkube:v1.19.16-rancher1-windows-20H2
Content Digest
sha256:431d8500e141db168b0fb889e5ef3054c20b1198bb8cf04809908a484eeb79a8
Details
Created

2021-10-28 20:21:02 UTC

Size

2.92 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-10-28T20:11:10Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    4b3d12571f6f8439307d8febe0178969ba6368c6
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.19.16


Layers

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

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

[#002] sha256:984d7134f0f6540fd1e7d0677b853e562a4514c6ffa0c9f51b32df0286d4f246 - 0.0% (1.36 KB)

[#003] sha256:ae4a6ba2f1c7d30f5957a8b00db686ed2b9350e9d7e705f2034544fb553cc221 - 0.3% (8.82 MB)

[#004] sha256:760dcfa0b445df941c7561d3e923a6152e721049b0df3c234a444b2739b13b8b - 0.0% (1.26 KB)

[#005] sha256:5706e4a43d10b629bf94dd9a42910135961a6ba0b73eb1a2b0214285f4e39ed7 - 9.28% (277 MB)

[#006] sha256:a953a7ac2907fa58efd92219910cc409358206a74b63570241802877d126c952 - 0.01% (367 KB)

[#007] sha256:dfe222ce413a6e5abfe5d09b380a0e313039b4bf7b150a798dd9b9b87858750f - 2.41% (71.9 MB)

[#008] sha256:53c990d261c4bd5ebb62f458b0cdf0956a567d80f20bd333759aafa71c53a9dc - 0.43% (12.7 MB)

[#009] sha256:0af5fa17acddda36754dedd423f02c5a24a59aaa317c5dd2712d8e9b2ba91d23 - 1.64% (48.9 MB)

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

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

[#012] sha256:715b349af560477280464b294564adf0cb8d25db25c04ed24db6211d8140271b - 0.0% (1.28 KB)

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

[#014] sha256:48ab2ceb0e570269a41aed91d8be5d9829c6b2e8f5f7b77da6f2acf0506cbb09 - 0.0% (1.28 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 20:15:27 UTC

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

2021-10-28 20:16:05 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 20:16:06 UTC

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

2021-10-28 20:16:29 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 20:16:38 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 20:20:41 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 20:20:50 UTC

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

2021-10-28 20:20:59 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 20:21:00 UTC

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

2021-10-28 20:21:00 UTC

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

2021-10-28 20:21:01 UTC

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

2021-10-28 20:21:01 UTC

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

2021-10-28 20:21:02 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