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

2022-03-23 06:31:01 UTC

Size

3 GB

Content Digest
Labels
  • org.label-schema.build-date
    2022-03-23T06:25:08Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    1709f9c32eea23a6ded8a8cf6609ceb80c6ba717
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.22.8


Layers

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

[#001] sha256:06b127abbab45e5389c3fddfd5ce2f91ad3c64bfa2e224b621fa88aebae03e8b - 37.17% (1.11 GB)

[#002] sha256:9747d79e8c3ae583a4427e69b5fde1ae9085217bf2cec239c27eabd8b244825e - 0.0% (1.26 KB)

[#003] sha256:ca5b6519c309640f5ab8c35f2793bbc0c494f1e5ede55c24939a51e7c693ac63 - 0.29% (8.87 MB)

[#004] sha256:1ce32dfae0392a1a3d115ae219e69bfb2030c0e8aec517e6104f6937a284dcb5 - 0.0% (1.26 KB)

[#005] sha256:50f7009c93a005918912b3e029cc2cc156dd805660480498021b3e2aefbb9862 - 10.85% (333 MB)

[#006] sha256:c3591e4471f95f3a92c1429883e9347246b8882d0c4a72d2a68e757c525c385e - 0.01% (388 KB)

[#007] sha256:cfb0031fb295e43c2362a21514c87ef7df04190fb54a88f357ec597bf2d7b3ce - 2.35% (72 MB)

[#008] sha256:ec72f34baea8a36c0d2054fb81b00b1f3f3aa8441e088302f6760fc84caabaf8 - 0.44% (13.6 MB)

[#009] sha256:33bc004cade4adcf6126eaeed52cc4b97f54d000ff668e300bed1ec82eaf7c20 - 2.09% (64.2 MB)

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

[#011] sha256:56965647b0cfa2620b222c31d688cda29bb9c098e3891e3ca3d9d9bd1352747f - 0.0% (1.26 KB)

[#012] sha256:179e2e233d7beece94e89266e6ef3e06d57910ac2f9e3e20a771fe3e200d71ab - 0.0% (1.25 KB)

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

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


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

Apply image 20H2-RTM-amd64

2022-03-03 08:25:37 UTC

Install update 20H2-amd64

2022-03-23 06:25:09 UTC

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

2022-03-23 06:25:53 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-03-23 06:25:54 UTC

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

2022-03-23 06:26: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.'

2022-03-23 06:26:28 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-03-23 06:30:40 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-03-23 06:30:49 UTC

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

2022-03-23 06:30:59 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-03-23 06:30:59 UTC

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

2022-03-23 06:31:00 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2022-03-23T06:25:08Z

2022-03-23 06:31:00 UTC

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

2022-03-23 06:31:01 UTC

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

2022-03-23 06:31:01 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