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

2022-07-01 19:02:21 UTC

Size

2.96 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-07-01T18:51:56Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    a396e9c96ee4511f6aeaa49a65024d197eae2f9a
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.20.15


Layers

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

[#001] sha256:199d820b40871072e593ee5aef2cf7bbef1a414975b64900b8109ab366e8deb8 - 38.62% (1.14 GB)

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

[#003] sha256:1b7cc898fc75b84e68f1f5467564bb2a860968b109a2f023a639bfbc0b6cf856 - 0.29% (8.91 MB)

[#004] sha256:214426fdbab387f9b1061d60c35210a1736d6eca4d853b62ebf94a3f8120a54e - 0.0% (1.26 KB)

[#005] sha256:3ecf3c2a173b30eb72a15637b4b722360872a64570ebacc37d3254826b6ae893 - 9.29% (282 MB)

[#006] sha256:65d0ff647630175f618bea7f949216930c7619b3ca0782ba4548241a9b6f3666 - 0.01% (410 KB)

[#007] sha256:6e59def437d9b1dd16fa9befa24384e0f76d353f3d4a46ad7797c5c57be1637d - 2.38% (72.1 MB)

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

[#009] sha256:3ff4294886bed9fcd39027109ea96fe18573ee3cea2f63708017a7b09943b89d - 1.65% (50 MB)

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

[#011] sha256:dd971bf3b34273c7ffb1e6007d1ed817de4824b77d507a13cc505576306afae0 - 0.0% (1.29 KB)

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

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

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


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

Apply image 10.0.19042.508

2022-06-09 07:12:06 UTC

Install update 10.0.19042.1766

2022-07-01 18:56:35 UTC

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

2022-07-01 18:57:01 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-07-01 18:57:01 UTC

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

2022-07-01 18:57: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-07-01 18:57:34 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-07-01 19:01:58 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-07-01 19:02:08 UTC

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

2022-07-01 19:02:18 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-07-01 19:02:18 UTC

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

2022-07-01 19:02:19 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-07-01T18:51:56Z

2022-07-01 19:02:19 UTC

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

2022-07-01 19:02:20 UTC

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

2022-07-01 19:02:21 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