Namespace
rancher
Image / Tag
hyperkube:v1.19.8-rancher1-windows-20H2
Content Digest
sha256:6b532c38e786d24671ccf11401bd0696c5da4958401fd825011ccebc4cb70f55
Details
Created

2021-02-18 00:01:05 UTC

Size

2.72 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-02-17T23:52:52Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    1acd8e5366a7559627a8473e724ea3637f0f5e03
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.19.8


Layers

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

[#001] sha256:37a37544be35743883db3ce75c258781c584706308c42cde380476e57c4851ac - 33.2% (924 MB)

[#002] sha256:ae7458aa4760da34e685a7d13461b2f63c497b0f13ebac0e1f6bf287733c764e - 0.0% (1.07 KB)

[#003] sha256:ef2c6b05bfe98c1f76a22f094a36458953ddb15d543838feb9d0cc74e507f836 - 0.28% (7.85 MB)

[#004] sha256:ddc685656fa3fe7304e8e29b8745feb1e1f5689983a6d2ee36be0ade837d9fe8 - 0.0% (1.09 KB)

[#005] sha256:b190510067662ca8fe0b079cd011ada9afc64f787acfa2738fcdb02703e9e41b - 10.13% (282 MB)

[#006] sha256:9b93b06c2b03c1ea51d31e716ad2f5a8af0acb3cb04d3e64624f04a1cb88b328 - 0.01% (365 KB)

[#007] sha256:8a0861ba50a7b29cbf3926541b07a367e9bab4ef2bb6d7ab582628abf10fb91e - 2.6% (72.3 MB)

[#008] sha256:77688cd1696c5c2b2befe0bdc7dfcf4888a102b2d66b51366488f7aff2922bd3 - 0.46% (12.7 MB)

[#009] sha256:7c04c408df36606623d1bc621237891561aac3fd24826ef00c790998253a6463 - 1.75% (48.8 MB)

[#010] sha256:eba93dde51e9dfe375e0c2382e2672bcfaed09cdf973e8c420b9338c7ddfd27b - 0.0% (2.55 KB)

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

[#012] sha256:8e263ac4aa255bf2462966672aa7b478c6d6e4734e7654271ac21f8257469d8c - 0.0% (1.07 KB)

[#013] sha256:75e752312b2942f5a009b1223ce7b4ece8ec3dac2e008ca92b0b9254b600812e - 0.0% (1.14 KB)

[#014] sha256:4476c48525dce0e7476300306f2a5924e1797d6d860924996f7a7e0500508fd0 - 0.0% (1.1 KB)


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

Apply image 20H2-RTM-amd64

2021-02-05 16:31:04 UTC

Install update 20H2-amd64

2021-02-17 23:13:47 UTC

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

2021-02-17 23:14:12 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-02-17 23:52:54 UTC

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

2021-02-17 23:53:19 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-02-17 23:53:27 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-02-18 00:00:45 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-02-18 00:00:53 UTC

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

2021-02-18 00:01:03 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-02-18 00:01:03 UTC

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

2021-02-18 00:01:04 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-02-17T23:52:52Z

2021-02-18 00:01:04 UTC

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

2021-02-18 00:01:05 UTC

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

2021-02-18 00:01:05 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