Namespace
rancher
Image / Tag
hyperkube:v1.22.0-beta.0-rancher1-windows-20H2
Content Digest
sha256:04a4623bde073486814076f47e4c11fdfb7206f7cc6256a04709f59e5c5248c1
Details
Created

2021-06-24 15:04:23 UTC

Size

2.95 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-06-24T14:56:09Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    db2acaa599dac010a4d42419596d6e87b6d8297f
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.22.0-beta.0


Layers

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

[#001] sha256:98622c7525a40dec3c88fac81718f4f208a70f5347eb4faf74f15a78149114df - 36.22% (1.07 GB)

[#002] sha256:905c0fe75175d40f902a4c463803d88af3dbc0fae02c5de736643bff44987859 - 0.0% (1.3 KB)

[#003] sha256:ce9015fb5ffd8b6120fd3d23ecdd93c8b6257134548a1e56295e3e5529014ba2 - 0.29% (8.76 MB)

[#004] sha256:195ff4e7f091981a219a15f9e231974b6e36d27f97b5812910d40784e21ae97f - 0.0% (1.27 KB)

[#005] sha256:25bd0260848b8319ade739e472fd17997b182925508f826d2ab1ea0ca711b56f - 11.11% (336 MB)

[#006] sha256:6ffa375b25db8356f5367d38370ac9b892b6816cd5b5f8ea0762c67cc7cdcc64 - 0.01% (390 KB)

[#007] sha256:1280ddb2eb0e0a006ffd3f5514d450dbfc07e548d0b48bf6c3ef95a1abf6e421 - 2.38% (71.9 MB)

[#008] sha256:d4a8b1d7c55ace7a2ffc8bab51b66c8f1767e907dcdd9bdca8f441875d4964bf - 0.45% (13.5 MB)

[#009] sha256:91680efb3d88643625f27fa1575fab94700e47615c362468a6212bb6a5242722 - 2.11% (63.8 MB)

[#010] sha256:361648ea40d79d3635c6ff2e781d6320fd8cffbdef4ea93c8be291e305a42055 - 0.0% (2.72 KB)

[#011] sha256:51653aff7c2cba57ca3b93b81bd34d90886b84ca054b947cd818e75aab99aa1f - 0.0% (1.26 KB)

[#012] sha256:ea2274cdf587a77501c937785968f3b9d420cec27f921040ada24b1d92ea0007 - 0.0% (1.3 KB)

[#013] sha256:22a564c2ec10f2c2629720e0f0372d85aef569b1200975c1b73d2de4058cf59e - 0.0% (1.27 KB)

[#014] sha256:c59da442d8dc075f142e51db8ab9d4d416541d620d9dee73a282ee794f931505 - 0.0% (1.27 KB)


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

Apply image 20H2-RTM-amd64

2021-06-06 19:49:44 UTC

Install update 20H2-amd64

2021-06-24 14:58:40 UTC

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

2021-06-24 14:59:11 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-06-24 14:59:12 UTC

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

2021-06-24 14:59:38 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-06-24 14:59:47 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-06-24 15:04:01 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-06-24 15:04:10 UTC

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

2021-06-24 15:04:20 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-06-24 15:04:21 UTC

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

2021-06-24 15:04:21 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-06-24T14:56:09Z

2021-06-24 15:04:22 UTC

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

2021-06-24 15:04:22 UTC

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

2021-06-24 15:04:23 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