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

2022-02-02 22:22:36 UTC

Size

2.95 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-02-02T22:12:50Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    242cacc94bf89e58d93a099e43e97a12ecb88532
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.20.15


Layers

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

[#001] sha256:835e32b394368e6c2d93a613f19b425654bcb45ef2680db32b7021713303a782 - 38.38% (1.13 GB)

[#002] sha256:99e19057916f5557259443b180cfd45dab4f0932fdcd71e7d22c411e030bf460 - 0.0% (1.36 KB)

[#003] sha256:e891612ec30f5933200b472cf8e5d79db3567c4e081c08307e746281ea953e42 - 0.29% (8.83 MB)

[#004] sha256:4b858dede52d7c50eea2dacf07313740d8b109e08f41c0aa942a3ea9000a1512 - 0.0% (1.27 KB)

[#005] sha256:f388542adceac07ad05d01585c6f622726c96f0b0a800e2094e309972fe0b64c - 9.33% (282 MB)

[#006] sha256:3b22056a91642aa115e0dafd9bbc8fc07c22cf9e7574d744d66edc5b049d205d - 0.01% (411 KB)

[#007] sha256:4fb5d3abb97da56c667edfd86d2a822e0c7bc55307425cd0326590d0e7f342fe - 2.38% (71.9 MB)

[#008] sha256:4fc3577d89689a0736bb0a680dd174ba84b8fe8ea0dedd9ce0b2aac1f3f8c68f - 0.4% (12.1 MB)

[#009] sha256:ba2f5acb2c0791df69d88a08f6d8a66100d3efa13792a52a516ddd96e4a9b180 - 1.66% (50 MB)

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

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

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

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

[#014] sha256:e2eba71fc7bfb3247e65a002be6557b641c589919aa06eb801aac9342cf2df92 - 0.0% (1.29 KB)


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

Apply image 20H2-RTM-amd64

2022-01-16 06:48:22 UTC

Install update 20H2-amd64

2022-02-02 22:17:08 UTC

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

2022-02-02 22:17:36 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-02-02 22:17:37 UTC

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

2022-02-02 22:18:00 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-02-02 22:18:09 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-02-02 22:22:16 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-02-02 22:22:24 UTC

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

2022-02-02 22:22:34 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-02-02 22:22:34 UTC

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

2022-02-02 22:22:34 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-02-02T22:12:50Z

2022-02-02 22:22:35 UTC

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

2022-02-02 22:22:35 UTC

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

2022-02-02 22:22: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