Namespace
rancher
Image / Tag
hyperkube:v1.21.1-rancher1-windows-20H2
Content Digest
sha256:793f82ff08d5996864da8183453f9651892cafab716a52cd8b57b75518b66523
Details
Created

2021-05-13 15:18:40 UTC

Size

2.82 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-05-13T15:09:23Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    3b79a95204c3898b1bd6baca3c8ca276466d9e26
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.21.1


Layers

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

[#001] sha256:182d4887a30d6c29414d04c41f1093a66f4cc1bf83092d3231cc5538404d75ad - 33.14% (958 MB)

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

[#003] sha256:edd1de371fb70038050073d78b460c0e49cdf36edee8079d05d3d37530c15f51 - 0.28% (8.23 MB)

[#004] sha256:cfa39e0d51e9f8e40da0be50d13526bd74f12da57971e8e7884a85ea90431f75 - 0.0% (1.35 KB)

[#005] sha256:98903f10c8898464ba8f52a92f5cdb0120293aff225f280e8fbfbc6be76ce8e3 - 11.55% (334 MB)

[#006] sha256:bce89546f0f5ff69338272acefed34ac6a859c2271ad3a2fafcef59b7ba3a83a - 0.01% (399 KB)

[#007] sha256:8afd6a21abe1971ea6ba5623ce72064fb9fda184052735c2da7b5e73ee6222a4 - 2.66% (76.9 MB)

[#008] sha256:3e33a11101804d96c9ed6582e9cca1aa4ff4dd4a0fe18c32be07f1a45b505971 - 0.48% (13.8 MB)

[#009] sha256:de1c474bf7a10e0ce98cca2caeab7dd412a6733c44cf9c1be52e228b1e86fbfa - 2.23% (64.5 MB)

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

[#011] sha256:15099f68fec970847ec021b0720ae82fa1da7764e7e5c9c79b0fe7cb84a2e2eb - 0.0% (1.27 KB)

[#012] sha256:bd2166f2f5c6a615d69f949b6c7c27d640e45f70867debf223b4743c2bab961d - 0.0% (1.27 KB)

[#013] sha256:d790ede4eb4ab1b6e251ed99731aebf92421187616e9326b71fb88f5732306ba - 0.0% (1.29 KB)

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


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

Apply image 20H2-RTM-amd64

2021-04-30 07:39:08 UTC

Install update 20H2-amd64

2021-05-13 15:09:24 UTC

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

2021-05-13 15:09:54 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-05-13 15:09:54 UTC

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

2021-05-13 15:10: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.'

2021-05-13 15:10:35 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-05-13 15:18:15 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-05-13 15:18:26 UTC

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

2021-05-13 15:18:37 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-05-13 15:18:37 UTC

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

2021-05-13 15:18:38 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-05-13T15:09:23Z

2021-05-13 15:18:39 UTC

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

2021-05-13 15:18:39 UTC

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

2021-05-13 15:18:40 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