Namespace
rancher
Image / Tag
hyperkube:v1.20.2-rancher1-windows-20H2
Content Digest
sha256:7e85aea22f29532fe6fe6018a84d6ce1b7476faa47853c27c342d19577844fb7
Details
Created

2021-01-26 18:00:27 UTC

Size

2.72 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-01-26T17:51:55Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    042a067de01b878fb3cf127c02753c92c8419f6e
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.20.2


Layers

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

[#001] sha256:18629c768c3f1391a29a90ea5e5b8a2b4185ec20b1781c40273741f648a0c882 - 33.01% (918 MB)

[#002] sha256:1dc2ff0c7807d376fd84a8a9fc3ccbe551e5de759943c700394ba5b4ef77b20f - 0.0% (1.08 KB)

[#003] sha256:28661445de9dee0ad7680588aa8fac6802fc0812b0b4e37a4596304d4248b0ae - 0.28% (7.83 MB)

[#004] sha256:f01c20d13d27806587ebcb99e06c6b30bffe54541c24714d6edbc4043e79498c - 0.0% (1.07 KB)

[#005] sha256:b7b86ae0dad4110289395cd4c6e2da03586e3b4c9201bf2519047b7218f1c6b0 - 10.28% (286 MB)

[#006] sha256:45fc4ccb170daeec7825ff4e3bb17de2657910bf3050f4132cf6a069c629dd72 - 2.6% (72.3 MB)

[#007] sha256:0c214cf11ad479d253bbc56dac075e130b6ae5993a3143710a1559520e2fc5b8 - 0.43% (12.1 MB)

[#008] sha256:3108a47d91aac224bea6ecb3fe720c2e2f1c766833712a5f84940e0e1533120a - 1.79% (49.9 MB)

[#009] sha256:7462a5b2517cde78f7b276398c07cc51d841a527c36a6680e375c4454b827412 - 0.0% (2.56 KB)

[#010] sha256:fc309144a47680a8b2c8ddfe9d42acb3c85374fb170bf343c66c50d04a04b9b2 - 0.0% (1.1 KB)

[#011] sha256:e152f6982babcd84b94f44f11aaaa8cc4a68444d24bd97a1e079517a0b6be857 - 0.0% (1.1 KB)

[#012] sha256:ffe0b6c9a592dafc413b1f62ff170f3a0bc8346efecde983de8751b02b8bd315 - 0.0% (1.06 KB)

[#013] sha256:456567db2edeae18c7897fa71013649576b804ab9db16261e25f5f93aeedc46e - 0.0% (1.07 KB)


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

Apply image 20H2-RTM-amd64

2021-01-09 13:33:38 UTC

Install update 20H2-amd64

2021-01-26 17:51:56 UTC

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

2021-01-26 17:52:22 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-01-26 17:52:22 UTC

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

2021-01-26 17:52:48 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-01-26 18:00:04 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-01-26 18:00:15 UTC

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

2021-01-26 18:00:25 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-01-26 18:00:25 UTC

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

2021-01-26 18:00:26 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-01-26T17:51:55Z

2021-01-26 18:00:26 UTC

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

2021-01-26 18:00:26 UTC

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

2021-01-26 18:00:27 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