Namespace
rancher
Image / Tag
hyperkube:v1.18.15-rancher2-windows-20H2
Content Digest
sha256:7a116ef3b8391d7b307733495b7f1243558b9e7069abfbb40b89a7bac04cc561
Details
Created

2021-01-31 21:07:48 UTC

Size

2.71 GB

Content Digest
Labels
  • org.label-schema.build-date
    2021-01-31T21:07:45Z
  • org.label-schema.schema-version
    1.0
  • org.label-schema.vcs-ref
    9a5652f58111e235f9ca64c658c138c0cb892aec
  • org.label-schema.vcs-url
    https://github.com/rancher/hyperkube.git

Environment
K8S_VERSION

v1.19.7


Layers

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

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

[#002] sha256:7f2a6e681aaaa439a49c848ac6b37c095fd3c7af06a3b4770d1ea0a42d5a4ab1 - 0.0% (1.08 KB)

[#003] sha256:83430cd8aca9e4b5e12098d06f62eb58957af22736514a7b6d6b36ef4fa6ecc4 - 0.28% (7.83 MB)

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

[#005] sha256:f515b7cca306595d22b2400d4e636efd36fa1a3e87d29a2e2846b03b37d2e29b - 10.15% (282 MB)

[#006] sha256:97137b6b92388bf1959b164ad159b02fe5043fc18b5ef8c29628aa3b579ea383 - 0.01% (387 KB)

[#007] sha256:ec2addbcfa7a542d26e21e82c37592ed90e7faa1890f8b032848109f84eb1525 - 2.61% (72.5 MB)

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

[#009] sha256:80356daf864d9169114c820fbf5233722b6af529a9bf1dfa931cfaf854a44b63 - 1.76% (48.8 MB)

[#010] sha256:47a1dfd36caf14baeb7ff7155b16400ab04f54f839a08b4ea6711b3fec4cd08f - 0.0% (2.56 KB)

[#011] sha256:0a7ad4645408800f3be8fddec9f7ee5ef0c4f4074302e6b7e1f2501db7a41756 - 0.0% (1.07 KB)

[#012] sha256:4d47d1dacaf9da6744d1c249fa179836660f78b71fcddb4d4d117e00043c396b - 0.0% (1.07 KB)

[#013] sha256:78fcc0886e10c23f7018f01814dbdc53d4486b59570240dfba5445aaf2c280c9 - 0.0% (1.07 KB)

[#014] sha256:ee454d4b617447d2fdc7c4b5387699422d7380ea315b8145cbb1b22c5a373a4a - 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-31 20:43:35 UTC

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

2021-01-31 20:43:59 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-31 20:44:00 UTC

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

2021-01-31 20:44:27 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-31 20:44:36 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-01-31 21:01:00 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-31 21:01:10 UTC

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

2021-01-31 21:01: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-01-31 21:01:20 UTC

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

2021-01-31 21:07:47 UTC

powershell -NoLogo -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) LABEL org.label-schema.build-date=2021-01-31T21:07:45Z

2021-01-31 21:07:47 UTC

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

2021-01-31 21:07:47 UTC

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

2021-01-31 21:07:48 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