Skip to content

Instantly share code, notes, and snippets.

@e-minguez
Last active December 17, 2024 14:40
Show Gist options
  • Save e-minguez/a0967771224b0f09f99a5fbc89819e0a to your computer and use it in GitHub Desktop.
Save e-minguez/a0967771224b0f09f99a5fbc89819e0a to your computer and use it in GitHub Desktop.
Get image sizes before downloading them
#!/bin/bash
set -euo pipefail
list="rancher-images.txt"
source_registry=""
usage() {
echo "USAGE: $0 [--image-list rancher-images.txt]"
echo " [-s|--source-registry] source registry to pull images from in registry:port format."
echo " [-l|--image-list path] text file with list of images; one image per line."
echo " [-h|--help] Usage message"
}
POSITIONAL=()
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-l | --image-list)
list="$2"
shift # past argument
shift # past value
;;
-s | --source-registry)
source_registry="$2"
shift # past argument
shift # past value
;;
-h | --help)
usage
exit 0
;;
*)
usage
exit 1
;;
esac
done
source_registry="${source_registry%!/(MISSING)}"
if [ ! -z "${source_registry}" ]; then
source_registry="${source_registry}/"
fi
images=0
totalsize=0
while IFS= read -r i; do
[ -z "${i}" ] && continue
i="${source_registry}${i}"
imagetype=$(skopeo inspect --raw docker://${i} | jq -r ".mediaType")
# Support for manifest.list and manifest
if [[ "${imagetype}" == "application/vnd.docker.distribution.manifest.list.v2+json" ]] || [[ "${imagetype}" == "application/vnd.oci.image.index.v1+json" ]]; then
# If it is a list, get all
inspect=$(skopeo inspect --raw docker://${i})
nummanifests=$(echo ${inspect} | jq -r ".manifests | length - 1")
for m in $(seq 0 ${nummanifests}); do
hash=$(echo ${inspect} | jq -r ".manifests[${m}] | .digest")
platform=$(echo ${inspect} | jq -r ".manifests[${m}] | .platform | to_entries | map(\"\(.key)=\(.value)\") | join(\",\")")
imagewithouttag=$(echo "${i%:*}")
size=$(skopeo inspect --raw docker://${imagewithouttag}@${hash} | jq -r '[ .layers[].size ] | add')
humansize=$(echo ${size} | numfmt --to=iec)
totalsize=$((totalsize + size))
images=$((images + 1))
echo "${i} (${platform}) - ${humansize}"
done
elif [[ "${imagetype}" == "application/vnd.docker.distribution.manifest.v2+json" ]]; then
size=$(skopeo inspect --raw docker://${i} | jq '[ .layers[].size ] | add')
humansize=$(echo ${size} | numfmt --to=iec)
totalsize=$((totalsize + size))
images=$((images + 1))
echo "${i} - ${humansize}"
fi
done <"${list}"
totalhumansize=$(echo ${totalsize} | numfmt --to=iec)
echo "Total images: ${images}"
echo "Total size: ${totalhumansize}"
❯ bash ./rancher-image-sizes.sh -s registry.rancher.com -l rancher-images.txt
registry.rancher.com/rancher/aks-operator:v1.9.4 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/aks-operator:v1.9.4 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/aks-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/aks-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/backup-restore-operator:v5.0.2 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/backup-restore-operator:v5.0.2 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/backup-restore-operator:v5.0.2 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/backup-restore-operator:v5.0.2 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/calico-cni:v3.26.3-rancher1 (architecture=amd64,os=linux) - 92M
registry.rancher.com/rancher/calico-cni:v3.26.3-rancher1 (architecture=arm64,os=linux) - 85M
registry.rancher.com/rancher/calico-cni:v3.27.4-rancher1 (architecture=arm64,os=linux) - 80M
registry.rancher.com/rancher/calico-cni:v3.27.4-rancher1 (architecture=unknown,os=unknown) - 5.3K
registry.rancher.com/rancher/calico-cni:v3.27.4-rancher1 (architecture=amd64,os=linux) - 87M
registry.rancher.com/rancher/calico-cni:v3.27.4-rancher1 (architecture=unknown,os=unknown) - 7.8K
registry.rancher.com/rancher/calico-cni:v3.28.1-rancher1 (architecture=amd64,os=linux) - 93M
registry.rancher.com/rancher/calico-cni:v3.28.1-rancher1 (architecture=unknown,os=unknown) - 5.0K
registry.rancher.com/rancher/calico-cni:v3.28.1-rancher1 (architecture=arm64,os=linux) - 87M
registry.rancher.com/rancher/calico-cni:v3.28.1-rancher1 (architecture=unknown,os=unknown) - 5.0K
registry.rancher.com/rancher/cis-operator:v1.2.0 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/cis-operator:v1.2.0 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/cis-operator:v1.2.0 (architecture=unknown,os=unknown) - 128K
registry.rancher.com/rancher/cis-operator:v1.2.0 (architecture=unknown,os=unknown) - 128K
registry.rancher.com/rancher/eks-operator:v1.9.4 (architecture=amd64,os=linux) - 47M
registry.rancher.com/rancher/eks-operator:v1.9.4 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/eks-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/eks-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/flannel-cni:v0.3.0-rancher8 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/flannel-cni:v0.3.0-rancher8 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/flannel-cni:v0.3.0-rancher9 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/flannel-cni:v0.3.0-rancher9 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/flannel-cni:v1.4.1-rancher1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/flannel-cni:v1.4.1-rancher1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/fleet-agent:v0.10.6 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/fleet-agent:v0.10.6 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/fleet:v0.10.6 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/fleet:v0.10.6 (architecture=arm64,os=linux) - 101M
registry.rancher.com/rancher/gke-operator:v1.9.4 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/gke-operator:v1.9.4 (architecture=arm64,os=linux) - 34M
registry.rancher.com/rancher/gke-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/gke-operator:v1.9.4 (architecture=unknown,os=unknown) - 1.4K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240410 (architecture=amd64,os=linux) - 9.9M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240410 (architecture=arm64,os=linux) - 8.7M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240410 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240410 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240910 (architecture=amd64,os=linux) - 10M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240910 (architecture=arm64,os=linux) - 8.8M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240910 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20240910 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20241001 (architecture=amd64,os=linux) - 10M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20241001 (architecture=arm64,os=linux) - 8.8M
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20241001 (architecture=unknown,os=unknown) - 54K
registry.rancher.com/rancher/hardened-addon-resizer:1.8.20-build20241001 (architecture=unknown,os=unknown) - 54K
registry.rancher.com/rancher/hardened-calico:v3.26.1-build20230802 (architecture=amd64,os=linux) - 186M
registry.rancher.com/rancher/hardened-calico:v3.26.1-build20230802 (architecture=arm64,os=linux) - 170M
registry.rancher.com/rancher/hardened-calico:v3.26.1-build20230802 (architecture=s390x,os=linux) - 164M
registry.rancher.com/rancher/hardened-calico:v3.26.3-build20231109 (architecture=amd64,os=linux) - 187M
registry.rancher.com/rancher/hardened-calico:v3.26.3-build20231109 (architecture=arm64,os=linux) - 171M
registry.rancher.com/rancher/hardened-calico:v3.26.3-build20231109 (architecture=s390x,os=linux) - 165M
registry.rancher.com/rancher/hardened-calico:v3.27.0-build20240206 (architecture=amd64,os=linux) - 192M
registry.rancher.com/rancher/hardened-calico:v3.27.0-build20240206 (architecture=arm64,os=linux) - 175M
registry.rancher.com/rancher/hardened-calico:v3.27.2-build20240308 (architecture=amd64,os=linux) - 189M
registry.rancher.com/rancher/hardened-calico:v3.27.2-build20240308 (architecture=arm64,os=linux) - 172M
registry.rancher.com/rancher/hardened-calico:v3.27.3-build20240423 (architecture=amd64,os=linux) - 190M
registry.rancher.com/rancher/hardened-calico:v3.27.3-build20240423 (architecture=arm64,os=linux) - 175M
registry.rancher.com/rancher/hardened-calico:v3.28.0-build20240625 (architecture=arm64,os=linux) - 179M
registry.rancher.com/rancher/hardened-calico:v3.28.0-build20240625 (architecture=unknown,os=unknown) - 68K
registry.rancher.com/rancher/hardened-calico:v3.28.0-build20240625 (architecture=amd64,os=linux) - 194M
registry.rancher.com/rancher/hardened-calico:v3.28.0-build20240625 (architecture=unknown,os=unknown) - 70K
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240806 (architecture=amd64,os=linux) - 196M
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240806 (architecture=unknown,os=unknown) - 70K
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240806 (architecture=arm64,os=linux) - 180M
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240806 (architecture=unknown,os=unknown) - 67K
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240911 (architecture=amd64,os=linux) - 195M
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240911 (architecture=unknown,os=unknown) - 70K
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240911 (architecture=arm64,os=linux) - 180M
registry.rancher.com/rancher/hardened-calico:v3.28.1-build20240911 (architecture=unknown,os=unknown) - 67K
registry.rancher.com/rancher/hardened-calico:v3.28.2-build20241016 (architecture=amd64,os=linux) - 198M
registry.rancher.com/rancher/hardened-calico:v3.28.2-build20241016 (architecture=unknown,os=unknown) - 3.3M
registry.rancher.com/rancher/hardened-calico:v3.28.2-build20241016 (architecture=arm64,os=linux) - 182M
registry.rancher.com/rancher/hardened-calico:v3.28.2-build20241016 (architecture=unknown,os=unknown) - 3.3M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.10-build20240124 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.10-build20240124 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20240910 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20240910 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20240910 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20240910 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20241014 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20241014 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20241014 (architecture=unknown,os=unknown) - 70K
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.11-build20241014 (architecture=unknown,os=unknown) - 72K
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20230609 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20230609 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20230609 (architecture=s390x,os=linux) - 53M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20231009 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20231009 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/hardened-cluster-autoscaler:v1.8.6-build20231009 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20230523 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20230523 (architecture=arm64,os=linux) - 74M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20230523 (architecture=s390x,os=linux) - 65M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20231009 (architecture=amd64,os=linux) - 79M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20231009 (architecture=arm64,os=linux) - 74M
registry.rancher.com/rancher/hardened-cni-plugins:v1.2.0-build20231009 (architecture=s390x,os=linux) - 66M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.0-build20240122 (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.0-build20240122 (architecture=arm64,os=linux) - 34M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240325 (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240325 (architecture=arm64,os=linux) - 34M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240430 (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240430 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240430 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-cni-plugins:v1.4.1-build20240430 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240805 (architecture=amd64,os=linux) - 41M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240805 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240805 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240805 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240910 (architecture=amd64,os=linux) - 42M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240910 (architecture=arm64,os=linux) - 36M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240910 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20240910 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20241009 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20241009 (architecture=arm64,os=linux) - 37M
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20241009 (architecture=unknown,os=unknown) - 624K
registry.rancher.com/rancher/hardened-cni-plugins:v1.5.1-build20241009 (architecture=unknown,os=unknown) - 625K
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20230607 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20230607 (architecture=arm64,os=linux) - 61M
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20230607 (architecture=s390x,os=linux) - 59M
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20231009 (architecture=amd64,os=linux) - 63M
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20231009 (architecture=arm64,os=linux) - 61M
registry.rancher.com/rancher/hardened-coredns:v1.10.1-build20231009 (architecture=s390x,os=linux) - 59M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240123 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240123 (architecture=arm64,os=linux) - 16M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240305 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240305 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240910 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240910 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240910 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/hardened-coredns:v1.11.1-build20240910 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-coredns:v1.11.3-build20241018 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/hardened-coredns:v1.11.3-build20241018 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/hardened-coredns:v1.11.3-build20241018 (architecture=unknown,os=unknown) - 615K
registry.rancher.com/rancher/hardened-coredns:v1.11.3-build20241018 (architecture=unknown,os=unknown) - 616K
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20230607 (architecture=amd64,os=linux) - 68M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20230607 (architecture=arm64,os=linux) - 68M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20230607 (architecture=s390x,os=linux) - 77M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20231010 (architecture=amd64,os=linux) - 69M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20231010 (architecture=arm64,os=linux) - 68M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.20-build20231010 (architecture=s390x,os=linux) - 67M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.28-build20240125 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/hardened-dns-node-cache:1.22.28-build20240125 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20240910 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20240910 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20240910 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20240910 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20241008 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20241008 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20241008 (architecture=unknown,os=unknown) - 546K
registry.rancher.com/rancher/hardened-dns-node-cache:1.23.1-build20241008 (architecture=unknown,os=unknown) - 547K
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240531 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240531 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240910 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240910 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240910 (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/hardened-etcd:v3.5.13-k3s1-build20240910 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-etcd:v3.5.9-k3s1-build20230802 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/hardened-etcd:v3.5.9-k3s1-build20230802 (architecture=arm64,os=linux) - 61M
registry.rancher.com/rancher/hardened-etcd:v3.5.9-k3s1-build20230802 (architecture=s390x,os=linux) - 58M
registry.rancher.com/rancher/hardened-etcd:v3.5.9-k3s1-build20240418 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/hardened-etcd:v3.5.9-k3s1-build20240418 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/hardened-flannel:v0.22.1-build20230802 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.22.1-build20230802 (architecture=arm64,os=linux) - 77M
registry.rancher.com/rancher/hardened-flannel:v0.22.1-build20230802 (architecture=s390x,os=linux) - 75M
registry.rancher.com/rancher/hardened-flannel:v0.23.0-build20231109 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.23.0-build20231109 (architecture=arm64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.23.0-build20231109 (architecture=s390x,os=linux) - 75M
registry.rancher.com/rancher/hardened-flannel:v0.24.2-build20240122 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.24.2-build20240122 (architecture=arm64,os=linux) - 77M
registry.rancher.com/rancher/hardened-flannel:v0.24.3-build20240307 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.24.3-build20240307 (architecture=arm64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.25.1-build20240423 (architecture=amd64,os=linux) - 80M
registry.rancher.com/rancher/hardened-flannel:v0.25.1-build20240423 (architecture=arm64,os=linux) - 80M
registry.rancher.com/rancher/hardened-flannel:v0.25.1-build20240423 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.1-build20240423 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.4-build20240610 (architecture=amd64,os=linux) - 80M
registry.rancher.com/rancher/hardened-flannel:v0.25.4-build20240610 (architecture=arm64,os=linux) - 80M
registry.rancher.com/rancher/hardened-flannel:v0.25.4-build20240610 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.4-build20240610 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.5-build20240801 (architecture=amd64,os=linux) - 79M
registry.rancher.com/rancher/hardened-flannel:v0.25.5-build20240801 (architecture=arm64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.25.5-build20240801 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.5-build20240801 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.6-build20240910 (architecture=amd64,os=linux) - 77M
registry.rancher.com/rancher/hardened-flannel:v0.25.6-build20240910 (architecture=arm64,os=linux) - 77M
registry.rancher.com/rancher/hardened-flannel:v0.25.6-build20240910 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.6-build20240910 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-flannel:v0.25.7-build20241008 (architecture=amd64,os=linux) - 78M
registry.rancher.com/rancher/hardened-flannel:v0.25.7-build20241008 (architecture=arm64,os=linux) - 77M
registry.rancher.com/rancher/hardened-flannel:v0.25.7-build20241008 (architecture=unknown,os=unknown) - 3.7M
registry.rancher.com/rancher/hardened-flannel:v0.25.7-build20241008 (architecture=unknown,os=unknown) - 3.7M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.0.2-build20230607 (architecture=amd64,os=linux) - 52M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.0.2-build20231009 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.0.2-build20231009 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.0.3-build20240327 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.0.3-build20240327 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.1.1-build20240816 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.1.1-build20240816 (architecture=arm64,os=linux) - 54M
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.1.1-build20240816 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-ib-sriov-cni:v1.1.1-build20240816 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20230607 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20230607 (architecture=arm64,os=linux) - 59M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20230607 (architecture=s390x,os=linux) - 57M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20231009 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20231009 (architecture=arm64,os=linux) - 60M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.6.3-build20231009 (architecture=s390x,os=linux) - 58M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240401 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240401 (architecture=arm64,os=linux) - 16M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240910 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240910 (architecture=arm64,os=linux) - 16M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240910 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20240910 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20241008 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20241008 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20241008 (architecture=unknown,os=unknown) - 146K
registry.rancher.com/rancher/hardened-k8s-metrics-server:v0.7.1-build20241008 (architecture=unknown,os=unknown) - 147K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.10-rke2r1-build20240117 (architecture=amd64,os=linux) - 209M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.10-rke2r1-build20240117 (architecture=arm64,os=linux) - 195M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.11-rke2r1-build20240214 (architecture=amd64,os=linux) - 209M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.11-rke2r1-build20240214 (architecture=arm64,os=linux) - 194M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.12-rke2r1-build20240315 (architecture=amd64,os=linux) - 212M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.12-rke2r1-build20240315 (architecture=arm64,os=linux) - 196M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.13-rke2r1-build20240416 (architecture=amd64,os=linux) - 162M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.13-rke2r1-build20240416 (architecture=arm64,os=linux) - 147M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.14-rke2r1-build20240515 (architecture=amd64,os=linux) - 162M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.14-rke2r1-build20240515 (architecture=arm64,os=linux) - 147M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.15-rke2r1-build20240619 (architecture=amd64,os=linux) - 162M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.15-rke2r1-build20240619 (architecture=arm64,os=linux) - 147M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.15-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.15-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r1-build20240717 (architecture=amd64,os=linux) - 163M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r1-build20240717 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r2-build20240819 (architecture=amd64,os=linux) - 163M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r2-build20240819 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r2-build20240819 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.16-rke2r2-build20240819 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.27.5-rke2r1-build20230824 (architecture=amd64,os=linux) - 207M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.5-rke2r1-build20230824 (architecture=arm64,os=linux) - 192M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.5-rke2r1-build20230824 (architecture=s390x,os=linux) - 201M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.7-rke2r2-build20231102 (architecture=amd64,os=linux) - 208M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.7-rke2r2-build20231102 (architecture=arm64,os=linux) - 192M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.7-rke2r2-build20231102 (architecture=s390x,os=linux) - 195M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.8-rke2r1-build20231115 (architecture=amd64,os=linux) - 210M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.8-rke2r1-build20231115 (architecture=arm64,os=linux) - 194M
registry.rancher.com/rancher/hardened-kubernetes:v1.27.8-rke2r1-build20231115 (architecture=s390x,os=linux) - 197M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.10-rke2r1-build20240514 (architecture=amd64,os=linux) - 167M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.10-rke2r1-build20240514 (architecture=arm64,os=linux) - 151M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.11-rke2r1-build20240619 (architecture=amd64,os=linux) - 167M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.11-rke2r1-build20240619 (architecture=arm64,os=linux) - 151M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.11-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.11-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.12-rke2r1-build20240717 (architecture=amd64,os=linux) - 168M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.12-rke2r1-build20240717 (architecture=arm64,os=linux) - 152M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.12-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.12-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.13-rke2r1-build20240815 (architecture=amd64,os=linux) - 168M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.13-rke2r1-build20240815 (architecture=arm64,os=linux) - 152M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.13-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.13-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.14-rke2r1-build20240912 (architecture=amd64,os=linux) - 168M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.14-rke2r1-build20240912 (architecture=arm64,os=linux) - 152M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.14-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.14-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.28.15-rke2r1-build20241023 (architecture=amd64,os=linux) - 168M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.15-rke2r1-build20241023 (architecture=arm64,os=linux) - 152M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.15-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.15-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.8-rke2r1-build20240315 (architecture=amd64,os=linux) - 216M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.8-rke2r1-build20240315 (architecture=arm64,os=linux) - 201M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.9-rke2r1-build20240416 (architecture=amd64,os=linux) - 167M
registry.rancher.com/rancher/hardened-kubernetes:v1.28.9-rke2r1-build20240416 (architecture=arm64,os=linux) - 151M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.10-rke2r1-build20241023 (architecture=amd64,os=linux) - 170M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.10-rke2r1-build20241023 (architecture=arm64,os=linux) - 154M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.10-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.10-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.3-rke2r1-build20240315 (architecture=amd64,os=linux) - 219M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.3-rke2r1-build20240315 (architecture=arm64,os=linux) - 203M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.4-rke2r1-build20240416 (architecture=amd64,os=linux) - 169M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.4-rke2r1-build20240416 (architecture=arm64,os=linux) - 153M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.5-rke2r1-build20240515 (architecture=amd64,os=linux) - 169M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.5-rke2r1-build20240515 (architecture=arm64,os=linux) - 153M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.6-rke2r1-build20240619 (architecture=amd64,os=linux) - 169M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.6-rke2r1-build20240619 (architecture=arm64,os=linux) - 153M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.6-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.6-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.7-rke2r1-build20240717 (architecture=amd64,os=linux) - 170M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.7-rke2r1-build20240717 (architecture=arm64,os=linux) - 154M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.7-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.7-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.8-rke2r1-build20240815 (architecture=amd64,os=linux) - 170M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.8-rke2r1-build20240815 (architecture=arm64,os=linux) - 154M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.8-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.8-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.9-rke2r1-build20240912 (architecture=amd64,os=linux) - 170M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.9-rke2r1-build20240912 (architecture=arm64,os=linux) - 154M
registry.rancher.com/rancher/hardened-kubernetes:v1.29.9-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.29.9-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.1-rke2r1-build20240515 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.1-rke2r1-build20240515 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.2-rke2r1-build20240619 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.2-rke2r1-build20240619 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.2-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.2-rke2r1-build20240619 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.3-rke2r1-build20240717 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.3-rke2r1-build20240717 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.3-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.3-rke2r1-build20240717 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.4-rke2r1-build20240815 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.4-rke2r1-build20240815 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.4-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.4-rke2r1-build20240815 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.5-rke2r1-build20240912 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.5-rke2r1-build20240912 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.5-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.5-rke2r1-build20240912 (architecture=unknown,os=unknown) - 43K
registry.rancher.com/rancher/hardened-kubernetes:v1.30.6-rke2r1-build20241023 (architecture=amd64,os=linux) - 164M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.6-rke2r1-build20241023 (architecture=arm64,os=linux) - 148M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.6-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-kubernetes:v1.30.6-rke2r1-build20241023 (architecture=unknown,os=unknown) - 1.5M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20230811 (architecture=amd64,os=linux) - 188M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20230811 (architecture=arm64,os=linux) - 183M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20231009 (architecture=amd64,os=linux) - 185M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20231009 (architecture=arm64,os=linux) - 181M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240208 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240208 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240418 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240418 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240418 (architecture=unknown,os=unknown) - 11K
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240418 (architecture=unknown,os=unknown) - 11K
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240612 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240612 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240612 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/hardened-multus-cni:v4.0.2-build20240612 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-multus-cni:v4.1.0-build20240910 (architecture=amd64,os=linux) - 36M
registry.rancher.com/rancher/hardened-multus-cni:v4.1.0-build20240910 (architecture=arm64,os=linux) - 33M
registry.rancher.com/rancher/hardened-multus-cni:v4.1.0-build20240910 (architecture=unknown,os=unknown) - 25K
registry.rancher.com/rancher/hardened-multus-cni:v4.1.0-build20240910 (architecture=unknown,os=unknown) - 27K
registry.rancher.com/rancher/hardened-multus-cni:v4.1.2-build20241011 (architecture=amd64,os=linux) - 36M
registry.rancher.com/rancher/hardened-multus-cni:v4.1.2-build20241011 (architecture=arm64,os=linux) - 33M
registry.rancher.com/rancher/hardened-multus-cni:v4.1.2-build20241011 (architecture=unknown,os=unknown) - 222K
registry.rancher.com/rancher/hardened-multus-cni:v4.1.2-build20241011 (architecture=unknown,os=unknown) - 224K
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.4-build20240513 (architecture=amd64,os=linux) - 146M
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.4-build20240513 (architecture=arm64,os=linux) - 134M
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.4-build20240513 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.4-build20240513 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.6-build20240822 (architecture=amd64,os=linux) - 148M
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.6-build20240822 (architecture=arm64,os=linux) - 135M
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.6-build20240822 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-node-feature-discovery:v0.15.6-build20240822 (architecture=unknown,os=unknown) - 23K
registry.rancher.com/rancher/hardened-sriov-cni:v2.6.3-build20230607 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/hardened-sriov-cni:v2.6.3-build20231009 (architecture=amd64,os=linux) - 52M
registry.rancher.com/rancher/hardened-sriov-cni:v2.6.3-build20231009 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/hardened-sriov-cni:v2.7.0-build20240327 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/hardened-sriov-cni:v2.7.0-build20240327 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/hardened-sriov-cni:v2.8.1-build20240820 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/hardened-sriov-cni:v2.8.1-build20240820 (architecture=arm64,os=linux) - 54M
registry.rancher.com/rancher/hardened-sriov-cni:v2.8.1-build20240820 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-sriov-cni:v2.8.1-build20240820 (architecture=unknown,os=unknown) - 13K
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.2.0-build20230607 (architecture=amd64,os=linux) - 79M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.2.0-build20231010 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.2.0-build20231010 (architecture=arm64,os=linux) - 80M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.2.0-build20240327 (architecture=amd64,os=linux) - 82M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.2.0-build20240327 (architecture=arm64,os=linux) - 81M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.3.0-build20240816 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.3.0-build20240816 (architecture=arm64,os=linux) - 82M
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-sriov-network-config-daemon:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.5.1-build20230607 (architecture=amd64,os=linux) - 80M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.5.1-build20231009 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.5.1-build20231009 (architecture=arm64,os=linux) - 80M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.6.2-build20240327 (architecture=amd64,os=linux) - 84M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.6.2-build20240327 (architecture=arm64,os=linux) - 82M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.7.0-build20240816 (architecture=amd64,os=linux) - 84M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.7.0-build20240816 (architecture=arm64,os=linux) - 83M
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.7.0-build20240816 (architecture=unknown,os=unknown) - 14K
registry.rancher.com/rancher/hardened-sriov-network-device-plugin:v3.7.0-build20240816 (architecture=unknown,os=unknown) - 14K
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.2.0-build20230607 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.2.0-build20231010 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.2.0-build20231010 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.2.0-build20240327 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.2.0-build20240327 (architecture=arm64,os=linux) - 60M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.3.0-build20240816 (architecture=amd64,os=linux) - 63M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.3.0-build20240816 (architecture=arm64,os=linux) - 62M
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 18K
registry.rancher.com/rancher/hardened-sriov-network-operator:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 18K
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.5-build20230607 (architecture=amd64,os=linux) - 69M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.5-build20231009 (architecture=amd64,os=linux) - 69M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.5-build20231009 (architecture=arm64,os=linux) - 68M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.5-build20240327 (architecture=amd64,os=linux) - 72M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.5-build20240327 (architecture=arm64,os=linux) - 69M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.6.0-build20240816 (architecture=amd64,os=linux) - 72M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.6.0-build20240816 (architecture=arm64,os=linux) - 70M
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.6.0-build20240816 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/hardened-sriov-network-resources-injector:v1.6.0-build20240816 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.2.0-build20230607 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.2.0-build20231010 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.2.0-build20231010 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.2.0-build20240327 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.2.0-build20240327 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.3.0-build20240816 (architecture=amd64,os=linux) - 59M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.3.0-build20240816 (architecture=arm64,os=linux) - 59M
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/hardened-sriov-network-webhook:v1.3.0-build20240816 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/hardened-whereabouts:v0.6.2-build20230717 (architecture=amd64,os=linux) - 67M
registry.rancher.com/rancher/hardened-whereabouts:v0.6.2-build20230717 (architecture=arm64,os=linux) - 65M
registry.rancher.com/rancher/hardened-whereabouts:v0.6.3-build20240109 (architecture=amd64,os=linux) - 68M
registry.rancher.com/rancher/hardened-whereabouts:v0.6.3-build20240109 (architecture=arm64,os=linux) - 65M
registry.rancher.com/rancher/hardened-whereabouts:v0.6.3-build20240208 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/hardened-whereabouts:v0.6.3-build20240208 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/hardened-whereabouts:v0.7.0-build20240429 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/hardened-whereabouts:v0.7.0-build20240429 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/hardened-whereabouts:v0.7.0-build20240429 (architecture=unknown,os=unknown) - 16K
registry.rancher.com/rancher/hardened-whereabouts:v0.7.0-build20240429 (architecture=unknown,os=unknown) - 16K
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20240910 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20240910 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20240910 (architecture=unknown,os=unknown) - 22K
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20240910 (architecture=unknown,os=unknown) - 24K
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20241011 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20241011 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20241011 (architecture=unknown,os=unknown) - 580K
registry.rancher.com/rancher/hardened-whereabouts:v0.8.0-build20241011 (architecture=unknown,os=unknown) - 582K
registry.rancher.com/rancher/harvester-cloud-provider:v0.2.0 - 32M
registry.rancher.com/rancher/harvester-cloud-provider:v0.2.1 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/harvester-cloud-provider:v0.2.1 (architecture=arm64,os=linux) - 33M
registry.rancher.com/rancher/harvester-cloud-provider:v0.2.2 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/harvester-cloud-provider:v0.2.2 (architecture=arm64,os=linux) - 33M
registry.rancher.com/rancher/harvester-csi-driver:v0.1.5 - 91M
registry.rancher.com/rancher/harvester-csi-driver:v0.1.6 - 93M
registry.rancher.com/rancher/harvester-csi-driver:v0.1.7 (architecture=amd64,os=linux) - 95M
registry.rancher.com/rancher/harvester-csi-driver:v0.1.7 (architecture=arm64,os=linux) - 95M
registry.rancher.com/rancher/harvester-csi-driver:v0.2.1 (architecture=amd64,os=linux) - 95M
registry.rancher.com/rancher/harvester-csi-driver:v0.2.1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/harvester-csi-driver:v0.2.2 (architecture=amd64,os=linux) - 95M
registry.rancher.com/rancher/harvester-csi-driver:v0.2.2 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/hyperkube:v1.27.16-rancher1 (architecture=amd64,os=linux) - 405M
registry.rancher.com/rancher/hyperkube:v1.27.16-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.27.16-rancher1 (architecture=arm64,os=linux) - 388M
registry.rancher.com/rancher/hyperkube:v1.27.16-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.28.15-rancher1 (architecture=arm64,os=linux) - 392M
registry.rancher.com/rancher/hyperkube:v1.28.15-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.28.15-rancher1 (architecture=amd64,os=linux) - 409M
registry.rancher.com/rancher/hyperkube:v1.28.15-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.29.10-rancher1 (architecture=arm64,os=linux) - 394M
registry.rancher.com/rancher/hyperkube:v1.29.10-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.29.10-rancher1 (architecture=amd64,os=linux) - 412M
registry.rancher.com/rancher/hyperkube:v1.29.10-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.30.6-rancher1 (architecture=amd64,os=linux) - 405M
registry.rancher.com/rancher/hyperkube:v1.30.6-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/hyperkube:v1.30.6-rancher1 (architecture=arm64,os=linux) - 388M
registry.rancher.com/rancher/hyperkube:v1.30.6-rancher1 (architecture=unknown,os=unknown) - 7.1K
registry.rancher.com/rancher/istio-installer:1.18.2-rancher1 (architecture=amd64,os=linux) - 711M
registry.rancher.com/rancher/istio-installer:1.18.2-rancher1 (architecture=arm64,os=linux) - 707M
registry.rancher.com/rancher/istio-installer:1.19.6-rancher1 (architecture=amd64,os=linux) - 773M
registry.rancher.com/rancher/istio-installer:1.19.6-rancher1 (architecture=arm64,os=linux) - 770M
registry.rancher.com/rancher/istio-installer:1.20.3-rancher1 (architecture=amd64,os=linux) - 799M
registry.rancher.com/rancher/istio-installer:1.20.3-rancher1 (architecture=arm64,os=linux) - 795M
registry.rancher.com/rancher/istio-installer:1.21.1-rancher1 (architecture=amd64,os=linux) - 824M
registry.rancher.com/rancher/istio-installer:1.21.1-rancher1 (architecture=arm64,os=linux) - 820M
registry.rancher.com/rancher/istio-installer:1.22.1-rancher1 (architecture=amd64,os=linux) - 852M
registry.rancher.com/rancher/istio-installer:1.22.1-rancher1 (architecture=arm64,os=linux) - 848M
registry.rancher.com/rancher/istio-installer:1.22.1-rancher1 (architecture=unknown,os=unknown) - 33K
registry.rancher.com/rancher/istio-installer:1.22.1-rancher1 (architecture=unknown,os=unknown) - 33K
registry.rancher.com/rancher/istio-installer:1.23.2-rancher1 (architecture=amd64,os=linux) - 152M
registry.rancher.com/rancher/istio-installer:1.23.2-rancher1 (architecture=arm64,os=linux) - 144M
registry.rancher.com/rancher/istio-installer:1.23.2-rancher1 (architecture=unknown,os=unknown) - 36K
registry.rancher.com/rancher/istio-installer:1.23.2-rancher1 (architecture=unknown,os=unknown) - 36K
registry.rancher.com/rancher/k3s-upgrade:v1.27.10-k3s2 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.27.10-k3s2 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.10-k3s2 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.11-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.11-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.11-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.12-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.12-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.12-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.13-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.13-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.13-k3s1 (architecture=arm,os=linux) - 55M
registry.rancher.com/rancher/k3s-upgrade:v1.27.14-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.14-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.14-k3s1 (architecture=arm,os=linux) - 55M
registry.rancher.com/rancher/k3s-upgrade:v1.27.15-k3s2 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.15-k3s2 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.15-k3s2 (architecture=arm,os=linux) - 55M
registry.rancher.com/rancher/k3s-upgrade:v1.27.16-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.27.16-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.16-k3s1 (architecture=arm,os=linux) - 55M
registry.rancher.com/rancher/k3s-upgrade:v1.27.5-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.5-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/k3s-upgrade:v1.27.5-k3s1 (architecture=arm,os=linux) - 50M
registry.rancher.com/rancher/k3s-upgrade:v1.27.5-k3s1 (architecture=s390x,os=linux) - 52M
registry.rancher.com/rancher/k3s-upgrade:v1.27.7-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.7-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/k3s-upgrade:v1.27.7-k3s2 (architecture=arm,os=linux) - 51M
registry.rancher.com/rancher/k3s-upgrade:v1.27.7-k3s2 (architecture=s390x,os=linux) - 52M
registry.rancher.com/rancher/k3s-upgrade:v1.27.8-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.27.8-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/k3s-upgrade:v1.27.8-k3s2 (architecture=arm,os=linux) - 51M
registry.rancher.com/rancher/k3s-upgrade:v1.28.10-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.10-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.10-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.11-k3s2 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.11-k3s2 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.11-k3s2 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.12-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.12-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.28.12-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.13-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.13-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.28.13-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.14-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.14-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.28.14-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.15-k3s1 (architecture=amd64,os=linux) - 64M
registry.rancher.com/rancher/k3s-upgrade:v1.28.15-k3s1 (architecture=arm64,os=linux) - 60M
registry.rancher.com/rancher/k3s-upgrade:v1.28.15-k3s1 (architecture=arm,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.28.8-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.8-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.28.8-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.9-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.28.9-k3s1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.28.9-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.29.10-k3s1 (architecture=amd64,os=linux) - 64M
registry.rancher.com/rancher/k3s-upgrade:v1.29.10-k3s1 (architecture=arm64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.29.10-k3s1 (architecture=arm,os=linux) - 59M
registry.rancher.com/rancher/k3s-upgrade:v1.29.3-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.29.3-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.3-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.4-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.29.4-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.4-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.29.5-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.29.5-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.5-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.29.6-k3s2 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.29.6-k3s2 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.6-k3s2 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.29.7-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.29.7-k3s1 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.7-k3s1 (architecture=arm,os=linux) - 56M
registry.rancher.com/rancher/k3s-upgrade:v1.29.8-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.29.8-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.29.8-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.29.9-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.29.9-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.29.9-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.1-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.30.1-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.30.1-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.2-k3s2 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.30.2-k3s2 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.30.2-k3s2 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.3-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.30.3-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.30.3-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.4-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.30.4-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.30.4-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.5-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/k3s-upgrade:v1.30.5-k3s1 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/k3s-upgrade:v1.30.5-k3s1 (architecture=arm,os=linux) - 57M
registry.rancher.com/rancher/k3s-upgrade:v1.30.6-k3s1 (architecture=amd64,os=linux) - 65M
registry.rancher.com/rancher/k3s-upgrade:v1.30.6-k3s1 (architecture=arm64,os=linux) - 61M
registry.rancher.com/rancher/k3s-upgrade:v1.30.6-k3s1 (architecture=arm,os=linux) - 59M
registry.rancher.com/rancher/klipper-helm:v0.7.0-build20220315 (architecture=amd64,os=linux) - 79M
registry.rancher.com/rancher/klipper-helm:v0.7.0-build20220315 (architecture=arm64,os=linux) - 74M
registry.rancher.com/rancher/klipper-helm:v0.7.0-build20220315 (architecture=arm,os=linux) - 75M
registry.rancher.com/rancher/klipper-helm:v0.7.0-build20220315 (architecture=s390x,os=linux) - 77M
registry.rancher.com/rancher/klipper-helm:v0.8.2-build20230815 (architecture=amd64,os=linux) - 87M
registry.rancher.com/rancher/klipper-helm:v0.8.2-build20230815 (architecture=arm64,os=linux,variant=v8) - 80M
registry.rancher.com/rancher/klipper-helm:v0.8.2-build20230815 (architecture=arm,os=linux) - 82M
registry.rancher.com/rancher/klipper-helm:v0.8.2-build20230815 (architecture=s390x,os=linux) - 85M
registry.rancher.com/rancher/klipper-helm:v0.8.3-build20240228 (architecture=amd64,os=linux) - 87M
registry.rancher.com/rancher/klipper-helm:v0.8.3-build20240228 (architecture=arm64,os=linux,variant=v8) - 81M
registry.rancher.com/rancher/klipper-helm:v0.8.3-build20240228 (architecture=arm,os=linux) - 81M
registry.rancher.com/rancher/klipper-helm:v0.8.4-build20240523 (architecture=amd64,os=linux) - 91M
registry.rancher.com/rancher/klipper-helm:v0.8.4-build20240523 (architecture=arm64,os=linux,variant=v8) - 84M
registry.rancher.com/rancher/klipper-helm:v0.8.4-build20240523 (architecture=arm,os=linux) - 84M
registry.rancher.com/rancher/klipper-helm:v0.9.2-build20240828 (architecture=amd64,os=linux) - 69M
registry.rancher.com/rancher/klipper-helm:v0.9.2-build20240828 (architecture=arm64,os=linux,variant=v8) - 65M
registry.rancher.com/rancher/klipper-helm:v0.9.2-build20240828 (architecture=arm,os=linux) - 64M
registry.rancher.com/rancher/klipper-helm:v0.9.3-build20241008 (architecture=amd64,os=linux) - 68M
registry.rancher.com/rancher/klipper-helm:v0.9.3-build20241008 (architecture=arm64,os=linux,variant=v8) - 63M
registry.rancher.com/rancher/klipper-helm:v0.9.3-build20241008 (architecture=arm,os=linux) - 63M
registry.rancher.com/rancher/klipper-lb:v0.4.4 (architecture=amd64,os=linux) - 4.7M
registry.rancher.com/rancher/klipper-lb:v0.4.4 (architecture=arm64,os=linux,variant=v8) - 4.9M
registry.rancher.com/rancher/klipper-lb:v0.4.4 (architecture=arm,os=linux) - 4.4M
registry.rancher.com/rancher/klipper-lb:v0.4.4 (architecture=s390x,os=linux) - 4.7M
registry.rancher.com/rancher/klipper-lb:v0.4.5 (architecture=amd64,os=linux) - 7.5M
registry.rancher.com/rancher/klipper-lb:v0.4.5 (architecture=arm64,os=linux,variant=v8) - 7.6M
registry.rancher.com/rancher/klipper-lb:v0.4.5 (architecture=arm,os=linux) - 6.9M
registry.rancher.com/rancher/klipper-lb:v0.4.5 (architecture=s390x,os=linux) - 7.2M
registry.rancher.com/rancher/klipper-lb:v0.4.7 (architecture=amd64,os=linux) - 4.6M
registry.rancher.com/rancher/klipper-lb:v0.4.7 (architecture=arm64,os=linux,variant=v8) - 4.8M
registry.rancher.com/rancher/klipper-lb:v0.4.7 (architecture=arm,os=linux) - 4.3M
registry.rancher.com/rancher/klipper-lb:v0.4.9 (architecture=amd64,os=linux) - 4.8M
registry.rancher.com/rancher/klipper-lb:v0.4.9 (architecture=arm64,os=linux,variant=v8) - 5.5M
registry.rancher.com/rancher/klipper-lb:v0.4.9 (architecture=arm,os=linux) - 4.5M
registry.rancher.com/rancher/kube-api-auth:v0.2.2 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/kube-api-auth:v0.2.2 (architecture=unknown,os=unknown) - 6.0K
registry.rancher.com/rancher/kube-api-auth:v0.2.2 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/kube-api-auth:v0.2.2 (architecture=unknown,os=unknown) - 6.0K
registry.rancher.com/rancher/kubectl:v1.20.2 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/kubectl:v1.20.2 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/kubectl:v1.20.2 (architecture=arm,os=linux) - 11M
registry.rancher.com/rancher/kubectl:v1.23.3 (architecture=amd64,os=linux) - 13M
registry.rancher.com/rancher/kubectl:v1.23.3 (architecture=arm64,os=linux) - 12M
registry.rancher.com/rancher/kubectl:v1.23.3 (architecture=arm,os=linux) - 13M
registry.rancher.com/rancher/kubectl:v1.23.3 (architecture=s390x,os=linux) - 13M
registry.rancher.com/rancher/kubectl:v1.28.12 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/kubectl:v1.28.12 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/kubectl:v1.28.12 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/kubectl:v1.28.12 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/kubectl:v1.29.0 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/kubectl:v1.29.0 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/kubectl:v1.29.2 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/kubectl:v1.29.2 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/kubectl:v1.29.7 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/kubectl:v1.29.7 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/kubectl:v1.29.7 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/kubectl:v1.29.7 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/kubectl:v1.30.5 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/kubectl:v1.30.5 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/kubectl:v1.30.5 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/kubectl:v1.30.5 (architecture=unknown,os=unknown) - 7.9K
registry.rancher.com/rancher/local-path-provisioner:v0.0.24 (architecture=amd64,os=linux) - 15M
registry.rancher.com/rancher/local-path-provisioner:v0.0.24 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/local-path-provisioner:v0.0.24 (architecture=arm,os=linux) - 13M
registry.rancher.com/rancher/local-path-provisioner:v0.0.24 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/local-path-provisioner:v0.0.26 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.26 (architecture=arm64,os=linux) - 16M
registry.rancher.com/rancher/local-path-provisioner:v0.0.26 (architecture=arm,os=linux) - 16M
registry.rancher.com/rancher/local-path-provisioner:v0.0.26 (architecture=s390x,os=linux) - 16M
registry.rancher.com/rancher/local-path-provisioner:v0.0.27 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/local-path-provisioner:v0.0.27 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.27 (architecture=arm,os=linux) - 16M
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=arm,os=linux,variant=v7) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=unknown,os=unknown) - 8.5K
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=unknown,os=unknown) - 8.5K
registry.rancher.com/rancher/local-path-provisioner:v0.0.28 (architecture=unknown,os=unknown) - 8.6K
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=arm,os=linux,variant=v7) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=riscv64,os=linux) - 17M
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=unknown,os=unknown) - 8.6K
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=unknown,os=unknown) - 8.6K
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=unknown,os=unknown) - 8.7K
registry.rancher.com/rancher/local-path-provisioner:v0.0.30 (architecture=unknown,os=unknown) - 8.6K
registry.rancher.com/rancher/longhornio-csi-attacher:v3.2.1 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/longhornio-csi-attacher:v3.2.1 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/longhornio-csi-attacher:v3.2.1 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.19042.1165) - 109M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.19041.1165) - 109M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.18363.1556) - 106M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.17763.2114) - 106M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=linux) - 8.2M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=arm64,os=linux) - 7.8M
registry.rancher.com/rancher/longhornio-csi-node-driver-registrar:v2.3.0 (architecture=s390x,os=linux) - 8.2M
registry.rancher.com/rancher/longhornio-csi-provisioner:v2.1.2 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/longhornio-csi-provisioner:v2.1.2 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/longhornio-csi-provisioner:v2.1.2 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/longhornio-csi-resizer:v1.2.0 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/longhornio-csi-resizer:v1.2.0 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/longhornio-csi-resizer:v1.2.0 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/machine:v0.15.0-rancher118 (architecture=arm64,os=linux) - 85M
registry.rancher.com/rancher/machine:v0.15.0-rancher118 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/machine:v0.15.0-rancher118 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/machine:v0.15.0-rancher118 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/mirrored-bci-busybox:15.6.24.2 (architecture=amd64,os=linux) - 5.4M
registry.rancher.com/rancher/mirrored-bci-busybox:15.6.24.2 (architecture=arm64,os=linux,variant=v8) - 4.5M
registry.rancher.com/rancher/mirrored-bci-busybox:15.6.24.2 (architecture=s390x,os=linux) - 4.6M
registry.rancher.com/rancher/mirrored-bci-micro:15.6.24.2 (architecture=amd64,os=linux) - 10M
registry.rancher.com/rancher/mirrored-bci-micro:15.6.24.2 (architecture=arm64,os=linux,variant=v8) - 9.2M
registry.rancher.com/rancher/mirrored-bci-micro:15.6.24.2 (architecture=s390x,os=linux) - 9.4M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.1 (architecture=amd64,os=linux) - 38M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.1 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.1 (architecture=s390x,os=linux) - 59M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.3 (architecture=amd64,os=linux) - 38M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.3 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.26.3 (architecture=s390x,os=linux) - 64M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.0 (architecture=amd64,os=linux) - 39M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.0 (architecture=arm64,os=linux) - 36M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.0 (architecture=s390x,os=linux) - 60M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.2 (architecture=amd64,os=linux) - 39M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.2 (architecture=arm64,os=linux) - 36M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.2 (architecture=s390x,os=linux) - 60M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.3 (architecture=amd64,os=linux) - 39M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.3 (architecture=arm64,os=linux) - 37M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.27.3 (architecture=s390x,os=linux) - 38M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.1 (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.1 (architecture=arm64,os=linux) - 38M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.1 (architecture=s390x,os=linux) - 39M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.2 (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.2 (architecture=arm64,os=linux) - 38M
registry.rancher.com/rancher/mirrored-calico-apiserver:v3.28.2 (architecture=s390x,os=linux) - 39M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.1 (architecture=amd64,os=linux) - 90M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.1 (architecture=arm64,os=linux) - 82M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.1 (architecture=arm,os=linux,variant=v7) - 83M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.1 (architecture=s390x,os=linux) - 87M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.3 (architecture=amd64,os=linux) - 90M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.3 (architecture=arm64,os=linux) - 83M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.3 (architecture=arm,os=linux,variant=v7) - 82M
registry.rancher.com/rancher/mirrored-calico-cni:v3.26.3 (architecture=s390x,os=linux) - 87M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.0 (architecture=amd64,os=linux) - 91M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.0 (architecture=arm64,os=linux) - 83M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.0 (architecture=arm,os=linux,variant=v7) - 83M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.0 (architecture=s390x,os=linux) - 87M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.2 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.2 (architecture=arm64,os=linux) - 78M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.2 (architecture=arm,os=linux,variant=v7) - 77M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.2 (architecture=s390x,os=linux) - 82M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.3 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.3 (architecture=arm64,os=linux) - 78M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.3 (architecture=arm,os=linux,variant=v7) - 77M
registry.rancher.com/rancher/mirrored-calico-cni:v3.27.3 (architecture=s390x,os=linux) - 82M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.1 (architecture=amd64,os=linux) - 91M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.1 (architecture=arm64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.1 (architecture=s390x,os=linux) - 89M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.2 (architecture=amd64,os=linux) - 91M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.2 (architecture=arm64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-calico-cni:v3.28.2 (architecture=s390x,os=linux) - 89M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.2 (architecture=amd64,os=linux) - 8.4M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.2 (architecture=arm64,os=linux) - 9.3M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.2 (architecture=arm,os=linux,variant=v7) - 9.0M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.2 (architecture=s390x,os=linux) - 9.4M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.3 (architecture=amd64,os=linux) - 8.4M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.3 (architecture=arm64,os=linux) - 9.3M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.3 (architecture=arm,os=linux,variant=v7) - 9.0M
registry.rancher.com/rancher/mirrored-calico-csi:v3.27.3 (architecture=s390x,os=linux) - 9.4M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.1 (architecture=amd64,os=linux) - 8.8M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.1 (architecture=arm64,os=linux) - 8.2M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.1 (architecture=s390x,os=linux) - 8.4M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.2 (architecture=amd64,os=linux) - 8.8M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.2 (architecture=arm64,os=linux) - 8.2M
registry.rancher.com/rancher/mirrored-calico-csi:v3.28.2 (architecture=s390x,os=linux) - 8.4M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.1 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.1 (architecture=arm,os=linux,variant=v7) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.1 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.3 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.3 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.3 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.26.3 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.0 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.0 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.2 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.2 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.2 (architecture=arm,os=linux,variant=v7) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.2 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.3 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.3 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.3 (architecture=arm,os=linux,variant=v7) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.3 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.4 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.4 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.4 (architecture=arm,os=linux,variant=v7) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.27.4 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.1 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.1 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.1 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.2 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.2 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-ctl:v3.28.2 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.1 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.1 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.1 (architecture=s390x,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.3 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.3 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.3 (architecture=arm,os=linux,variant=v7) - 28M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.26.3 (architecture=s390x,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.0 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.0 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.0 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.0 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.2 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.2 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.2 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.2 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.3 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.3 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.3 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.3 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.4 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.4 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.4 (architecture=arm,os=linux,variant=v7) - 29M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.27.4 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.1 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.1 (architecture=s390x,os=linux) - 33M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.2 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.2 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-calico-kube-controllers:v3.28.2 (architecture=s390x,os=linux) - 33M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.2 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.2 (architecture=arm64,os=linux) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.2 (architecture=arm,os=linux,variant=v7) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.2 (architecture=s390x,os=linux) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.3 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.3 (architecture=arm64,os=linux) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.3 (architecture=arm,os=linux,variant=v7) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.27.3 (architecture=s390x,os=linux) - 12M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.1 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.1 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.1 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.2 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.2 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-calico-node-driver-registrar:v3.28.2 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.1 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.1 (architecture=arm64,os=linux) - 81M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.1 (architecture=arm,os=linux,variant=v7) - 70M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.1 (architecture=s390x,os=linux) - 73M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.3 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.3 (architecture=arm64,os=linux) - 83M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.3 (architecture=arm,os=linux,variant=v7) - 70M
registry.rancher.com/rancher/mirrored-calico-node:v3.26.3 (architecture=s390x,os=linux) - 75M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.0 (architecture=amd64,os=linux) - 112M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.0 (architecture=arm64,os=linux) - 112M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.0 (architecture=arm,os=linux,variant=v7) - 98M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.0 (architecture=s390x,os=linux) - 103M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.2 (architecture=amd64,os=linux) - 112M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.2 (architecture=arm64,os=linux) - 111M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.2 (architecture=arm,os=linux,variant=v7) - 98M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.2 (architecture=s390x,os=linux) - 103M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.3 (architecture=amd64,os=linux) - 111M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.3 (architecture=arm64,os=linux) - 110M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.3 (architecture=arm,os=linux,variant=v7) - 97M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.3 (architecture=s390x,os=linux) - 102M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.4 (architecture=amd64,os=linux) - 112M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.4 (architecture=arm64,os=linux) - 110M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.4 (architecture=arm,os=linux,variant=v7) - 98M
registry.rancher.com/rancher/mirrored-calico-node:v3.27.4 (architecture=s390x,os=linux) - 102M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.1 (architecture=amd64,os=linux) - 113M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.1 (architecture=arm64,os=linux) - 108M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.1 (architecture=s390x,os=linux) - 103M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.2 (architecture=amd64,os=linux) - 115M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.2 (architecture=arm64,os=linux) - 110M
registry.rancher.com/rancher/mirrored-calico-node:v3.28.2 (architecture=s390x,os=linux) - 103M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.4 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.4 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.4 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.7 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.7 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-calico-operator:v1.30.7 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.3 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.3 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.3 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.5 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.5 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.5 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.7 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.7 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.32.7 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.3 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.3 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.3 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.5 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.5 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-calico-operator:v1.34.5 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1 (architecture=amd64,os=linux) - 7.0M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1 (architecture=arm64,os=linux) - 5.4M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1 (architecture=arm,os=linux,variant=v7) - 5.1M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.1 (architecture=s390x,os=linux) - 5.4M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3 (architecture=amd64,os=linux) - 7.1M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3 (architecture=arm64,os=linux) - 5.5M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3 (architecture=arm,os=linux,variant=v7) - 5.2M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.26.3 (architecture=s390x,os=linux) - 5.5M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.0 (architecture=amd64,os=linux) - 7.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.0 (architecture=arm64,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.0 (architecture=arm,os=linux,variant=v7) - 5.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.0 (architecture=s390x,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.2 (architecture=amd64,os=linux) - 7.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.2 (architecture=arm64,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.2 (architecture=arm,os=linux,variant=v7) - 5.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.2 (architecture=s390x,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.3 (architecture=amd64,os=linux) - 7.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.3 (architecture=arm64,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.3 (architecture=arm,os=linux,variant=v7) - 5.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.3 (architecture=s390x,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.4 (architecture=amd64,os=linux) - 7.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.4 (architecture=arm64,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.4 (architecture=arm,os=linux,variant=v7) - 5.3M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.27.4 (architecture=s390x,os=linux) - 5.6M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.1 (architecture=amd64,os=linux) - 6.4M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.1 (architecture=arm64,os=linux) - 6.0M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.1 (architecture=s390x,os=linux) - 6.0M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.2 (architecture=amd64,os=linux) - 6.4M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.2 (architecture=arm64,os=linux) - 6.0M
registry.rancher.com/rancher/mirrored-calico-pod2daemon-flexvol:v3.28.2 (architecture=s390x,os=linux) - 6.0M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.1 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.1 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.3 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.3 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-typha:v3.26.3 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.0 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.0 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.2 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.2 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.2 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.3 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.3 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-calico-typha:v3.27.3 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.1 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.1 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.1 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.2 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.2 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-calico-typha:v3.28.2 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.11 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.11 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.12 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.12 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.8 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.8 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.9 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.1.9 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.2.0 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-certgen:v0.2.0 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.25.9-e198a2824d309024cb91fb6a984445e73033291d (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.25.9-e198a2824d309024cb91fb6a984445e73033291d (architecture=arm64,os=linux) - 48M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.25.9-f039e2bd380b7eef2f2feea5750676bb36133699 (architecture=amd64,os=linux) - 50M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.25.9-f039e2bd380b7eef2f2feea5750676bb36133699 (architecture=arm64,os=linux) - 47M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.26.6-ff0d5d3f77d610040e93c7c7a430d61a0c0b90c1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.26.6-ff0d5d3f77d610040e93c7c7a430d61a0c0b90c1 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.27.3-713b673cccf1af661efd75ca20532336517ddcb9 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.27.3-713b673cccf1af661efd75ca20532336517ddcb9 (architecture=arm64,os=linux) - 58M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.27.4-21905253931655328edaacf3cd16aeda73bbea2f (architecture=amd64,os=linux) - 65M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.27.4-21905253931655328edaacf3cd16aeda73bbea2f (architecture=arm64,os=linux) - 62M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.28.3-31ec52ec5f2e4d28a8e19a0bfb872fa48cf7a515 (architecture=amd64,os=linux) - 59M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.28.3-31ec52ec5f2e4d28a8e19a0bfb872fa48cf7a515 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.29.7-39a2a56bbd5b3a591f69dbca51d3e30ef97e0e51 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.29.7-39a2a56bbd5b3a591f69dbca51d3e30ef97e0e51 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.29.9-1726784081-a90146d13b4cd7d168d573396ccf2b3db5a3b047 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/mirrored-cilium-cilium-envoy:v1.29.9-1726784081-a90146d13b4cd7d168d573396ccf2b3db5a3b047 (architecture=arm64,os=linux) - 57M
registry.rancher.com/rancher/mirrored-cilium-cilium-etcd-operator:v2.0.7 (architecture=amd64,os=linux) - 8.3M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.0 (architecture=amd64,os=linux) - 175M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.0 (architecture=arm64,os=linux) - 164M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.2 (architecture=amd64,os=linux) - 175M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.2 (architecture=arm64,os=linux) - 164M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.4 (architecture=amd64,os=linux) - 184M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.14.4 (architecture=arm64,os=linux) - 173M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.1 (architecture=amd64,os=linux) - 199M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.1 (architecture=arm64,os=linux) - 187M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.4 (architecture=amd64,os=linux) - 199M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.4 (architecture=arm64,os=linux) - 188M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.5 (architecture=amd64,os=linux) - 200M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.15.5 (architecture=arm64,os=linux) - 188M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.0 (architecture=amd64,os=linux) - 213M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.0 (architecture=arm64,os=linux) - 201M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.1 (architecture=amd64,os=linux) - 213M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.1 (architecture=arm64,os=linux) - 201M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.2 (architecture=amd64,os=linux) - 213M
registry.rancher.com/rancher/mirrored-cilium-cilium:v1.16.2 (architecture=arm64,os=linux) - 201M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.0 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.0 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.2 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.2 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.4 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.14.4 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.1 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.1 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.4 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.4 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.5 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.15.5 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.0 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.0 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.1 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.2 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-cilium-clustermesh-apiserver:v1.16.2 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.0 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.0 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.2 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.2 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.4 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.14.4 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.1 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.4 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.4 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.5 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.15.5 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.1 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.2 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-hubble-relay:v1.16.2 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.12.0 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.12.0 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.12.1 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.12.1 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.13.0 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.13.0 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.13.1 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui-backend:v0.13.1 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.12.0 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.12.0 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.12.1 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.12.1 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.13.0 (architecture=amd64,os=linux) - 7.9M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.13.0 (architecture=arm64,os=linux) - 7.8M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.13.1 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-cilium-hubble-ui:v0.13.1 (architecture=arm64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.0 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.0 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.2 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.2 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.4 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cilium-kvstoremesh:v1.14.4 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.0 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.2 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.2 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.4 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.14.4 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.1 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.1 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.4 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.4 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.5 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.15.5 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.0 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.0 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.1 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.1 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.2 (architecture=amd64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-cilium-operator-aws:v1.16.2 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.0 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.0 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.2 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.2 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.4 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.14.4 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.1 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.4 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.4 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.5 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.15.5 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.0 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.0 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.1 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.1 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.2 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cilium-operator-azure:v1.16.2 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.0 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.0 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.2 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.2 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.4 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.14.4 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.1 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.4 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.4 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.5 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.15.5 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.0 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.0 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.1 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.1 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.2 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-cilium-operator-generic:v1.16.2 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.26.1 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.27.0 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.28.0 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.29.0 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-cpi-release-manager:v1.30.1 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.0.1 (architecture=amd64,os=windows,os.version=10.0.20348.1668) - 128M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.0.1 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 117M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.0.1 (architecture=amd64,os=windows,os.version=10.0.17763.4252) - 114M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.0.1 (architecture=amd64,os=linux) - 90M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.1.2 (architecture=amd64,os=windows,os.version=10.0.20348.2113) - 128M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.1.2 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 118M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.1.2 (architecture=amd64,os=windows,os.version=10.0.17763.5122) - 113M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.1.2 (architecture=amd64,os=linux) - 92M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.2.0 (architecture=amd64,os=windows,os.version=10.0.20348.2322) - 128M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.2.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 118M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.2.0 (architecture=amd64,os=windows,os.version=10.0.17763.5458) - 113M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.2.0 (architecture=amd64,os=linux) - 92M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.3.0 (architecture=amd64,os=windows,os.version=10.0.20348.2529) - 129M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.3.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 119M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.3.0 (architecture=amd64,os=windows,os.version=10.0.17763.5936) - 161M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-driver:v3.3.0 (architecture=amd64,os=linux) - 97M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-syncer:v3.0.1 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-syncer:v3.1.2 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-syncer:v3.2.0 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-cloud-provider-vsphere-csi-release-syncer:v3.3.0 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/mirrored-cluster-api-controller:v1.7.3 (architecture=amd64,os=linux) - 37M
registry.rancher.com/rancher/mirrored-cluster-api-controller:v1.7.3 (architecture=arm64,os=linux,variant=v8) - 34M
registry.rancher.com/rancher/mirrored-cluster-api-controller:v1.7.3 (architecture=arm,os=linux,variant=v7) - 34M
registry.rancher.com/rancher/mirrored-cluster-api-controller:v1.7.3 (architecture=s390x,os=linux) - 36M
registry.rancher.com/rancher/mirrored-cluster-proportional-autoscaler:v1.8.9 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/mirrored-cluster-proportional-autoscaler:v1.8.9 (architecture=arm64,os=linux) - 10M
registry.rancher.com/rancher/mirrored-cluster-proportional-autoscaler:v1.8.9 (architecture=arm,os=linux,variant=v7) - 11M
registry.rancher.com/rancher/mirrored-cluster-proportional-autoscaler:v1.8.9 (architecture=s390x,os=linux) - 11M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.10.1 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.10.1 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.10.1 (architecture=arm,os=linux,variant=v7) - 15M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.10.1 (architecture=s390x,os=linux) - 15M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.1 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.1 (architecture=arm64,os=linux) - 16M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.1 (architecture=arm,os=linux,variant=v7) - 17M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.1 (architecture=s390x,os=linux) - 17M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.3 (architecture=amd64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.3 (architecture=arm64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.3 (architecture=arm,os=linux,variant=v7) - 17M
registry.rancher.com/rancher/mirrored-coredns-coredns:1.11.3 (architecture=s390x,os=linux) - 18M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.10 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.10 (architecture=arm64,os=linux,variant=v8) - 19M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.10 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.12 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.12 (architecture=arm64,os=linux,variant=v8) - 19M
registry.rancher.com/rancher/mirrored-coreos-etcd:v3.5.12 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-curlimages-curl:7.85.0 (architecture=amd64,os=linux) - 8.2M
registry.rancher.com/rancher/mirrored-curlimages-curl:7.85.0 (architecture=arm64,os=linux) - 8.0M
registry.rancher.com/rancher/mirrored-curlimages-curl:7.85.0 (architecture=arm,os=linux,variant=v7) - 7.4M
registry.rancher.com/rancher/mirrored-curlimages-curl:7.85.0 (architecture=s390x,os=linux) - 7.3M
registry.rancher.com/rancher/mirrored-curlimages-curl:8.10.1 (architecture=amd64,os=linux) - 9.0M
registry.rancher.com/rancher/mirrored-curlimages-curl:8.10.1 (architecture=arm64,os=linux) - 9.5M
registry.rancher.com/rancher/mirrored-elemental-operator:1.6.5 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-elemental-operator:1.6.5 (architecture=arm64,os=linux,variant=v8) - 25M
registry.rancher.com/rancher/mirrored-elemental-seedimage-builder:1.6.5 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-elemental-seedimage-builder:1.6.5 (architecture=arm64,os=linux,variant=v8) - 82M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.21.4 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.21.4 (architecture=arm64,os=linux,variant=v8) - 24M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.21.4 (architecture=arm,os=linux,variant=v6) - 23M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.21.4 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.24.2 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.24.2 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.24.2 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.24.2 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.25.1 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.25.1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.25.1 (architecture=arm,os=linux,variant=v7) - 27M
registry.rancher.com/rancher/mirrored-flannel-flannel:v0.25.1 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4 (architecture=amd64,os=linux) - 36M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4 (architecture=arm,os=linux,variant=v7) - 33M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4 (architecture=s390x,os=linux) - 33M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4-debug (architecture=amd64,os=linux) - 425M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4-debug (architecture=arm64,os=linux) - 383M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4-debug (architecture=arm,os=linux,variant=v7) - 356M
registry.rancher.com/rancher/mirrored-fluent-fluent-bit:3.0.4-debug (architecture=s390x,os=linux) - 384M
registry.rancher.com/rancher/mirrored-grafana-grafana-image-renderer:3.10.5 (architecture=amd64,os=linux) - 379M
registry.rancher.com/rancher/mirrored-grafana-grafana-image-renderer:3.10.5 (architecture=arm64,os=linux) - 371M
registry.rancher.com/rancher/mirrored-grafana-grafana:10.4.9 (architecture=amd64,os=linux) - 114M
registry.rancher.com/rancher/mirrored-grafana-grafana:10.4.9 (architecture=arm64,os=linux) - 107M
registry.rancher.com/rancher/mirrored-grafana-grafana:10.4.9 (architecture=arm,os=linux,variant=v7) - 101M
registry.rancher.com/rancher/mirrored-idealista-prom2teams:4.2.1 (architecture=amd64,os=linux) - 93M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.1 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.1 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.1 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.3 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.3 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.3 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.3 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.4 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.4 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.4 (architecture=arm,os=linux,variant=v7) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v1.4.4 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20230312-helm-chart-4.5.2-28-g66a760794 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20230312-helm-chart-4.5.2-28-g66a760794 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20230312-helm-chart-4.5.2-28-g66a760794 (architecture=arm,os=linux,variant=v7) - 19M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20230312-helm-chart-4.5.2-28-g66a760794 (architecture=s390x,os=linux) - 19M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231011-8b53cabe0 (architecture=s390x,os=linux) - 22M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231226-1a7112e06 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231226-1a7112e06 (architecture=arm64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231226-1a7112e06 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-ingress-nginx-kube-webhook-certgen:v20231226-1a7112e06 (architecture=s390x,os=linux) - 22M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.18.2-distroless (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.18.2-distroless (architecture=arm64,os=linux) - 41M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.19.6-distroless (architecture=amd64,os=linux) - 40M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.19.6-distroless (architecture=arm64,os=linux) - 36M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.20.3-distroless (architecture=amd64,os=linux) - 41M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.20.3-distroless (architecture=arm64,os=linux) - 37M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.21.1-distroless (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.21.1-distroless (architecture=arm64,os=linux) - 40M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.22.1-distroless (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.22.1-distroless (architecture=arm64,os=linux) - 41M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.23.2-distroless (architecture=amd64,os=linux) - 41M
registry.rancher.com/rancher/mirrored-istio-install-cni:1.23.2-distroless (architecture=arm64,os=linux) - 36M
registry.rancher.com/rancher/mirrored-istio-pilot:1.18.2-distroless (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/mirrored-istio-pilot:1.18.2-distroless (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-istio-pilot:1.19.6-distroless (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-istio-pilot:1.19.6-distroless (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-istio-pilot:1.20.3-distroless (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-istio-pilot:1.20.3-distroless (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-istio-pilot:1.21.1-distroless (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-istio-pilot:1.21.1-distroless (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-istio-pilot:1.22.1-distroless (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-istio-pilot:1.22.1-distroless (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-istio-pilot:1.23.2-distroless (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-istio-pilot:1.23.2-distroless (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.18.2-distroless (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.18.2-distroless (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.19.6-distroless (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.19.6-distroless (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.20.3-distroless (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.20.3-distroless (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.21.1-distroless (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.21.1-distroless (architecture=arm64,os=linux) - 54M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.22.1-distroless (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.22.1-distroless (architecture=arm64,os=linux) - 54M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.23.2-distroless (architecture=amd64,os=linux) - 48M
registry.rancher.com/rancher/mirrored-istio-proxyv2:1.23.2-distroless (architecture=arm64,os=linux) - 47M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.47.0 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.47.0 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.47.0 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.52.0 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.52.0 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.52.0 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.53.0 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.53.0 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.53.0 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.56.0 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.56.0 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.56.0 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.57.0 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.57.0 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.57.0 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.60.0 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.60.0 (architecture=arm64,os=linux) - 32M
registry.rancher.com/rancher/mirrored-jaegertracing-all-in-one:1.60.0 (architecture=s390x,os=linux) - 33M
registry.rancher.com/rancher/mirrored-jimmidyson-configmap-reload:v0.8.0 (architecture=amd64,os=linux) - 4.1M
registry.rancher.com/rancher/mirrored-jimmidyson-configmap-reload:v0.8.0 (architecture=arm64,os=linux) - 3.9M
registry.rancher.com/rancher/mirrored-jimmidyson-configmap-reload:v0.8.0 (architecture=arm,os=linux) - 3.9M
registry.rancher.com/rancher/mirrored-jimmidyson-configmap-reload:v0.8.0 (architecture=s390x,os=linux) - 5.1M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28 (architecture=arm,os=linux,variant=v7) - 27M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.22.28 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.23.0 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.23.0 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.23.0 (architecture=arm,os=linux,variant=v7) - 27M
registry.rancher.com/rancher/mirrored-k8s-dns-dnsmasq-nanny:1.23.0 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.22.28 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.22.28 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.22.28 (architecture=arm,os=linux,variant=v7) - 22M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.22.28 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.23.0 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.23.0 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.23.0 (architecture=arm,os=linux,variant=v7) - 22M
registry.rancher.com/rancher/mirrored-k8s-dns-kube-dns:1.23.0 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.22.28 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.22.28 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.22.28 (architecture=arm,os=linux,variant=v7) - 31M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.22.28 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.23.0 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.23.0 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.23.0 (architecture=arm,os=linux,variant=v7) - 31M
registry.rancher.com/rancher/mirrored-k8s-dns-node-cache:1.23.0 (architecture=s390x,os=linux) - 31M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.22.28 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.22.28 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.22.28 (architecture=arm,os=linux,variant=v7) - 19M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.22.28 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.23.0 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.23.0 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.23.0 (architecture=arm,os=linux,variant=v7) - 19M
registry.rancher.com/rancher/mirrored-k8s-dns-sidecar:1.23.0 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.67.0 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.67.0 (architecture=arm64,os=linux) - 43M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.67.0 (architecture=s390x,os=linux) - 44M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.75.0 (architecture=amd64,os=linux) - 49M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.75.0 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.75.0 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.78.0 (architecture=amd64,os=linux) - 49M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.78.0 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.78.0 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.79.0 (architecture=amd64,os=linux) - 49M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.79.0 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.79.0 (architecture=s390x,os=linux) - 48M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.86.0 (architecture=amd64,os=linux) - 52M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.86.0 (architecture=arm64,os=linux) - 49M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.86.0 (architecture=s390x,os=linux) - 50M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.89.3 (architecture=amd64,os=linux) - 52M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.89.3 (architecture=arm64,os=linux) - 49M
registry.rancher.com/rancher/mirrored-kiali-kiali:v1.89.3 (architecture=s390x,os=linux) - 51M
registry.rancher.com/rancher/mirrored-kiwigrid-k8s-sidecar:1.26.1 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-kiwigrid-k8s-sidecar:1.26.1 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-kiwigrid-k8s-sidecar:1.26.1 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-kiwigrid-k8s-sidecar:1.26.1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-kube-logging-config-reloader:v0.0.5 (architecture=amd64,os=linux) - 7.6M
registry.rancher.com/rancher/mirrored-kube-logging-config-reloader:v0.0.5 (architecture=arm64,os=linux) - 7.1M
registry.rancher.com/rancher/mirrored-kube-logging-config-reloader:v0.0.5 (architecture=arm,os=linux,variant=v7) - 7.3M
registry.rancher.com/rancher/mirrored-kube-logging-fluentd:v1.16-4.8-full (architecture=amd64,os=linux) - 134M
registry.rancher.com/rancher/mirrored-kube-logging-fluentd:v1.16-4.8-full (architecture=arm64,os=linux) - 133M
registry.rancher.com/rancher/mirrored-kube-logging-logging-operator:4.8.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-kube-logging-logging-operator:4.8.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-kube-logging-logging-operator:4.8.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.14.0 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.14.0 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.14.0 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.15.0 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.15.0 (architecture=arm64,os=linux,variant=v8) - 23M
registry.rancher.com/rancher/mirrored-kube-rbac-proxy:v0.15.0 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/mirrored-kube-state-metrics-kube-state-metrics:v2.10.1 (architecture=amd64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-kube-state-metrics-kube-state-metrics:v2.10.1 (architecture=arm64,os=linux,variant=v8) - 12M
registry.rancher.com/rancher/mirrored-kube-state-metrics-kube-state-metrics:v2.10.1 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-kube-state-metrics-kube-state-metrics:v2.10.1 (architecture=s390x,os=linux) - 13M
registry.rancher.com/rancher/mirrored-kube-vip-kube-vip-iptables:v0.6.0 (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-kube-vip-kube-vip-iptables:v0.6.0 (architecture=arm64,os=linux) - 15M
registry.rancher.com/rancher/mirrored-kube-vip-kube-vip-iptables:v0.6.0 (architecture=arm,os=linux,variant=v7) - 15M
registry.rancher.com/rancher/mirrored-kube-vip-kube-vip-iptables:v0.6.0 (architecture=s390x,os=linux) - 16M
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=amd64,os=linux) - 743K
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=arm64,os=linux,variant=v8) - 797K
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=arm,os=linux,variant=v7) - 695K
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=arm,os=linux,variant=v6) - 918K
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=arm,os=linux,variant=v5) - 726K
registry.rancher.com/rancher/mirrored-library-busybox:1.31.1 (architecture=s390x,os=linux) - 2.1M
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=amd64,os=linux) - 2.5M
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=arm64,os=linux,variant=v8) - 2.0M
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=arm,os=linux,variant=v7) - 1.7M
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=arm,os=linux,variant=v6) - 934K
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=arm,os=linux,variant=v5) - 1.9M
registry.rancher.com/rancher/mirrored-library-busybox:1.34.1 (architecture=s390x,os=linux) - 2.0M
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=amd64,os=linux) - 2.1M
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=arm64,os=linux,variant=v8) - 1.8M
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=arm,os=linux,variant=v7) - 1.5M
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=arm,os=linux,variant=v6) - 927K
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=arm,os=linux,variant=v5) - 1.7M
registry.rancher.com/rancher/mirrored-library-busybox:1.36.1 (architecture=s390x,os=linux) - 1.8M
registry.rancher.com/rancher/mirrored-library-nginx:1.24.0-alpine (architecture=amd64,os=linux) - 17M
registry.rancher.com/rancher/mirrored-library-nginx:1.24.0-alpine (architecture=arm64,os=linux,variant=v8) - 16M
registry.rancher.com/rancher/mirrored-library-nginx:1.24.0-alpine (architecture=arm,os=linux,variant=v7) - 14M
registry.rancher.com/rancher/mirrored-library-nginx:1.24.0-alpine (architecture=arm,os=linux,variant=v6) - 15M
registry.rancher.com/rancher/mirrored-library-nginx:1.24.0-alpine (architecture=s390x,os=linux) - 16M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.5 (architecture=amd64,os=linux) - 42M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.5 (architecture=arm64,os=linux,variant=v8) - 39M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.5 (architecture=arm,os=linux,variant=v6) - 39M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.5 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.7 (architecture=amd64,os=linux) - 42M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.7 (architecture=arm64,os=linux,variant=v8) - 39M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.7 (architecture=arm,os=linux,variant=v6) - 39M
registry.rancher.com/rancher/mirrored-library-traefik:2.10.7 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.10 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.10 (architecture=arm64,os=linux,variant=v8) - 43M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.10 (architecture=arm,os=linux,variant=v6) - 43M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.10 (architecture=s390x,os=linux) - 44M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.8 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.8 (architecture=arm64,os=linux,variant=v8) - 43M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.8 (architecture=arm,os=linux,variant=v6) - 43M
registry.rancher.com/rancher/mirrored-library-traefik:2.11.8 (architecture=s390x,os=linux) - 44M
registry.rancher.com/rancher/mirrored-library-traefik:2.9.10 (architecture=amd64,os=linux) - 38M
registry.rancher.com/rancher/mirrored-library-traefik:2.9.10 (architecture=arm64,os=linux,variant=v8) - 35M
registry.rancher.com/rancher/mirrored-library-traefik:2.9.10 (architecture=arm,os=linux,variant=v6) - 36M
registry.rancher.com/rancher/mirrored-library-traefik:2.9.10 (architecture=s390x,os=linux) - 37M
registry.rancher.com/rancher/mirrored-longhornio-backing-image-manager:v1.7.2 (architecture=amd64,os=linux) - 129M
registry.rancher.com/rancher/mirrored-longhornio-backing-image-manager:v1.7.2 (architecture=arm64,os=linux) - 130M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v3.2.1 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v3.2.1 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v3.2.1 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.7.0 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.7.0 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.7.0 (architecture=arm,os=linux,variant=v7) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.7.0 (architecture=arm,os=linux,variant=v7) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-attacher:v4.7.0 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 156M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=amd64,os=windows,os.version=10.0.20348.2655) - 125M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.12.0 (architecture=s390x,os=linux) - 13M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.19042.1165) - 109M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.19041.1165) - 109M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.18363.1556) - 106M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=windows,os.version=10.0.17763.2114) - 106M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=amd64,os=linux) - 8.2M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=arm64,os=linux) - 7.8M
registry.rancher.com/rancher/mirrored-longhornio-csi-node-driver-registrar:v2.3.0 (architecture=s390x,os=linux) - 8.2M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v2.1.2 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v2.1.2 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v2.1.2 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v4.0.1-20241007 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v4.0.1-20241007 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v4.0.1-20241007 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v4.0.1-20241007 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-longhornio-csi-provisioner:v4.0.1-20241007 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.12.0 (architecture=amd64,os=linux) - 30M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.12.0 (architecture=arm64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.12.0 (architecture=arm,os=linux,variant=v7) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.12.0 (architecture=arm,os=linux,variant=v7) - 28M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.12.0 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.2.0 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.2.0 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/mirrored-longhornio-csi-resizer:v1.2.0 (architecture=s390x,os=linux) - 21M
registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v7.0.2-20241007 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v7.0.2-20241007 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v7.0.2-20241007 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v7.0.2-20241007 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-longhornio-csi-snapshotter:v7.0.2-20241007 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 157M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=amd64,os=windows,os.version=10.0.20348.2655) - 125M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-longhornio-livenessprobe:v2.14.0 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-engine:v1.7.2 (architecture=amd64,os=linux) - 149M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-engine:v1.7.2 (architecture=arm64,os=linux) - 146M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-instance-manager:v1.7.2 (architecture=amd64,os=linux) - 339M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-instance-manager:v1.7.2 (architecture=arm64,os=linux) - 364M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-manager:v1.7.2 (architecture=amd64,os=linux) - 113M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-manager:v1.7.2 (architecture=arm64,os=linux) - 113M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-share-manager:v1.7.2 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-share-manager:v1.7.2 (architecture=arm64,os=linux) - 82M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-ui:v1.7.2 (architecture=amd64,os=linux) - 70M
registry.rancher.com/rancher/mirrored-longhornio-longhorn-ui:v1.7.2 (architecture=arm64,os=linux) - 71M
registry.rancher.com/rancher/mirrored-longhornio-support-bundle-kit:v0.0.45 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/mirrored-longhornio-support-bundle-kit:v0.0.45 (architecture=arm64,os=linux) - 82M
registry.rancher.com/rancher/mirrored-messagebird-sachet:0.3.1 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/mirrored-metrics-server:v0.6.3 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-metrics-server:v0.6.3 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-metrics-server:v0.6.3 (architecture=arm,os=linux) - 28M
registry.rancher.com/rancher/mirrored-metrics-server:v0.6.3 (architecture=s390x,os=linux) - 29M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.0 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.0 (architecture=arm64,os=linux,variant=v8) - 17M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.0 (architecture=arm,os=linux,variant=v7) - 18M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.0 (architecture=s390x,os=linux) - 19M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.1 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.1 (architecture=arm64,os=linux,variant=v8) - 18M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.1 (architecture=arm,os=linux,variant=v7) - 18M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.1 (architecture=s390x,os=linux) - 19M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.2 (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.2 (architecture=arm64,os=linux,variant=v8) - 18M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.2 (architecture=arm,os=linux,variant=v7) - 18M
registry.rancher.com/rancher/mirrored-metrics-server:v0.7.2 (architecture=s390x,os=linux) - 19M
registry.rancher.com/rancher/mirrored-neuvector-compliance-config:1.0.0 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-neuvector-controller:5.4.0 (architecture=amd64,os=linux) - 124M
registry.rancher.com/rancher/mirrored-neuvector-controller:5.4.0 (architecture=arm64,os=linux) - 118M
registry.rancher.com/rancher/mirrored-neuvector-enforcer:5.4.0 (architecture=amd64,os=linux) - 121M
registry.rancher.com/rancher/mirrored-neuvector-enforcer:5.4.0 (architecture=arm64,os=linux) - 111M
registry.rancher.com/rancher/mirrored-neuvector-manager:5.4.0 (architecture=amd64,os=linux) - 191M
registry.rancher.com/rancher/mirrored-neuvector-manager:5.4.0 (architecture=arm64,os=linux) - 198M
registry.rancher.com/rancher/mirrored-neuvector-prometheus-exporter:1-1.0.0 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-neuvector-registry-adapter:0.1.2 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-neuvector-scanner:latest (architecture=amd64,os=linux) - 251M
registry.rancher.com/rancher/mirrored-neuvector-scanner:latest (architecture=arm64,os=linux) - 247M
registry.rancher.com/rancher/mirrored-neuvector-updater:latest (architecture=amd64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-neuvector-updater:latest (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-nginx-ingress-controller-defaultbackend:1.5-rancher1 (architecture=amd64,os=linux) - 2.0M
registry.rancher.com/rancher/mirrored-nginx-ingress-controller-defaultbackend:1.5-rancher1 (architecture=arm64,os=linux) - 1.8M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper-crds:v3.13.0 (architecture=amd64,os=linux) - 15M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper-crds:v3.13.0 (architecture=arm64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper-crds:v3.13.0 (architecture=arm,os=linux,variant=v7) - 15M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper:v3.13.0 (architecture=amd64,os=linux) - 37M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper:v3.13.0 (architecture=arm64,os=linux) - 35M
registry.rancher.com/rancher/mirrored-openpolicyagent-gatekeeper:v3.13.0 (architecture=arm,os=linux,variant=v7) - 35M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.20348.169) - 114M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.19042.1165) - 102M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.19041.1165) - 102M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.18363.1556) - 99M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.18362.1256) - 100M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=windows,os.version=10.0.17763.2114) - 100M
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=amd64,os=linux) - 290K
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=arm64,os=linux) - 243K
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=arm,os=linux,variant=v7) - 193K
registry.rancher.com/rancher/mirrored-pause:3.6 (architecture=s390x,os=linux) - 240K
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=amd64,os=windows,os.version=10.0.20348.587) - 114M
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=amd64,os=windows,os.version=10.0.19042.1586) - 103M
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=amd64,os=windows,os.version=10.0.17763.2686) - 100M
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=amd64,os=linux) - 300K
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=arm64,os=linux) - 258K
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=arm,os=linux,variant=v7) - 200K
registry.rancher.com/rancher/mirrored-pause:3.7 (architecture=s390x,os=linux) - 248K
registry.rancher.com/rancher/mirrored-prometheus-adapter-prometheus-adapter:v0.12.0 (architecture=amd64,os=linux) - 37M
registry.rancher.com/rancher/mirrored-prometheus-adapter-prometheus-adapter:v0.12.0 (architecture=arm64,os=linux,variant=v8) - 35M
registry.rancher.com/rancher/mirrored-prometheus-adapter-prometheus-adapter:v0.12.0 (architecture=arm,os=linux,variant=v7) - 34M
registry.rancher.com/rancher/mirrored-prometheus-adapter-prometheus-adapter:v0.12.0 (architecture=s390x,os=linux) - 36M
registry.rancher.com/rancher/mirrored-prometheus-alertmanager:v0.27.0 (architecture=amd64,os=linux) - 31M
registry.rancher.com/rancher/mirrored-prometheus-alertmanager:v0.27.0 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/mirrored-prometheus-alertmanager:v0.27.0 (architecture=arm,os=linux,variant=v7) - 30M
registry.rancher.com/rancher/mirrored-prometheus-alertmanager:v0.27.0 (architecture=s390x,os=linux) - 32M
registry.rancher.com/rancher/mirrored-prometheus-node-exporter:v1.7.0 (architecture=amd64,os=linux) - 12M
registry.rancher.com/rancher/mirrored-prometheus-node-exporter:v1.7.0 (architecture=arm64,os=linux,variant=v8) - 11M
registry.rancher.com/rancher/mirrored-prometheus-node-exporter:v1.7.0 (architecture=arm,os=linux,variant=v7) - 11M
registry.rancher.com/rancher/mirrored-prometheus-node-exporter:v1.7.0 (architecture=s390x,os=linux) - 13M
registry.rancher.com/rancher/mirrored-prometheus-operator-admission-webhook:v0.72.0 (architecture=amd64,os=linux) - 14M
registry.rancher.com/rancher/mirrored-prometheus-operator-admission-webhook:v0.72.0 (architecture=arm64,os=linux,variant=v8) - 13M
registry.rancher.com/rancher/mirrored-prometheus-operator-admission-webhook:v0.72.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-prometheus-operator-admission-webhook:v0.72.0 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-config-reloader:v0.72.0 (architecture=amd64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-config-reloader:v0.72.0 (architecture=arm64,os=linux,variant=v8) - 12M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-config-reloader:v0.72.0 (architecture=arm,os=linux,variant=v7) - 13M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-config-reloader:v0.72.0 (architecture=s390x,os=linux) - 14M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-operator:v0.72.0 (architecture=amd64,os=linux) - 16M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-operator:v0.72.0 (architecture=arm64,os=linux,variant=v8) - 15M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-operator:v0.72.0 (architecture=arm,os=linux,variant=v7) - 15M
registry.rancher.com/rancher/mirrored-prometheus-operator-prometheus-operator:v0.72.0 (architecture=s390x,os=linux) - 17M
registry.rancher.com/rancher/mirrored-prometheus-prometheus:v2.50.1 (architecture=amd64,os=linux) - 97M
registry.rancher.com/rancher/mirrored-prometheus-prometheus:v2.50.1 (architecture=arm64,os=linux,variant=v8) - 92M
registry.rancher.com/rancher/mirrored-prometheus-prometheus:v2.50.1 (architecture=arm,os=linux,variant=v7) - 90M
registry.rancher.com/rancher/mirrored-prometheus-prometheus:v2.50.1 (architecture=s390x,os=linux) - 96M
registry.rancher.com/rancher/mirrored-prometheus-windows-exporter:0.25.1 (architecture=amd64,os=windows,os.version=10.0.20348.2227) - 126M
registry.rancher.com/rancher/mirrored-prometheus-windows-exporter:0.25.1 (architecture=amd64,os=windows,os.version=10.0.17763.5329) - 111M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.2.0 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.2.0 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.2.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.2.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.2.0 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.3.0 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.3.0 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.3.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.3.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.3.0 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.0 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.1 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-attacher:v4.5.1 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=amd64,os=windows,os.version=10.0.20348.2159) - 122M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=amd64,os=windows,os.version=10.0.17763.5206) - 107M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=arm64,os=linux) - 9.9M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=arm,os=linux,variant=v7) - 9.8M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=arm,os=linux,variant=v7) - 9.8M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.0 (architecture=s390x,os=linux) - 11M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=amd64,os=windows,os.version=10.0.20348.2340) - 122M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=amd64,os=windows,os.version=10.0.17763.5576) - 107M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=arm64,os=linux) - 9.9M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=arm,os=linux,variant=v7) - 9.9M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=arm,os=linux,variant=v7) - 9.9M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.10.1 (architecture=s390x,os=linux) - 11M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=amd64,os=windows,os.version=10.0.20348.1366) - 122M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 111M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=amd64,os=windows,os.version=10.0.17763.3770) - 108M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=amd64,os=linux) - 9.7M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=arm64,os=linux) - 9.2M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=arm,os=linux,variant=v7) - 9.3M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=arm,os=linux,variant=v7) - 9.3M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.7.0 (architecture=s390x,os=linux) - 9.6M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=amd64,os=windows,os.version=10.0.20348.1668) - 123M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 111M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=amd64,os=windows,os.version=10.0.17763.4252) - 108M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=arm64,os=linux) - 9.5M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=arm,os=linux,variant=v7) - 9.6M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=arm,os=linux,variant=v7) - 9.6M
registry.rancher.com/rancher/mirrored-sig-storage-csi-node-driver-registrar:v2.8.0 (architecture=s390x,os=linux) - 10M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.4.0 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.5.0 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.5.0 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.5.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.5.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v3.5.0 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.0 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.0 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.0 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.1 (architecture=amd64,os=linux) - 29M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.1 (architecture=arm64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.1 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.1 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-provisioner:v4.0.1 (architecture=s390x,os=linux) - 28M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.0 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.0 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.0 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.0 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.1 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.10.1 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.7.0 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.7.0 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.7.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.7.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.7.0 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.8.0 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.8.0 (architecture=arm64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.8.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.8.0 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-resizer:v1.8.0 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v6.2.1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v6.2.1 (architecture=arm64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v6.2.1 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v6.2.1 (architecture=arm,os=linux,variant=v7) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v6.2.1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.1 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.1 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.1 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.2 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.2 (architecture=arm64,os=linux) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.2 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.2 (architecture=arm,os=linux,variant=v7) - 25M
registry.rancher.com/rancher/mirrored-sig-storage-csi-snapshotter:v7.0.2 (architecture=s390x,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=amd64,os=windows,os.version=10.0.20348.1668) - 122M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 110M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=amd64,os=windows,os.version=10.0.17763.4252) - 107M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=amd64,os=linux) - 9.2M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=arm64,os=linux) - 8.6M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=arm,os=linux,variant=v7) - 8.8M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=arm,os=linux,variant=v7) - 8.8M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.10.0 (architecture=s390x,os=linux) - 9.0M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=amd64,os=windows,os.version=10.0.20348.2227) - 124M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=amd64,os=windows,os.version=10.0.17763.5329) - 109M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=amd64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=arm64,os=linux) - 13M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=arm,os=linux,variant=v7) - 12M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=arm,os=linux,variant=v7) - 12M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.12.0 (architecture=s390x,os=linux) - 13M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=amd64,os=windows,os.version=10.0.20348.1366) - 121M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=amd64,os=windows,os.version=10.0.19042.1889) - 110M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=amd64,os=windows,os.version=10.0.17763.3770) - 107M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=amd64,os=linux) - 8.8M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=arm64,os=linux) - 8.3M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=arm,os=linux,variant=v7) - 8.4M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=arm,os=linux,variant=v7) - 8.4M
registry.rancher.com/rancher/mirrored-sig-storage-livenessprobe:v2.9.0 (architecture=s390x,os=linux) - 8.7M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v6.2.1 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v6.2.1 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v6.2.1 (architecture=arm,os=linux,variant=v7) - 22M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v6.2.1 (architecture=arm,os=linux,variant=v7) - 22M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v6.2.1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.1.0 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.1.0 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.1.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.1.0 (architecture=arm,os=linux,variant=v7) - 26M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-controller:v8.1.0 (architecture=s390x,os=linux) - 27M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v6.2.2 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v6.2.2 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v6.2.2 (architecture=arm,os=linux,variant=v7) - 20M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v6.2.2 (architecture=arm,os=linux,variant=v7) - 20M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v6.2.2 (architecture=s390x,os=linux) - 20M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v8.1.0 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v8.1.0 (architecture=arm64,os=linux) - 22M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v8.1.0 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v8.1.0 (architecture=arm,os=linux,variant=v7) - 21M
registry.rancher.com/rancher/mirrored-sig-storage-snapshot-validation-webhook:v8.1.0 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sonobuoy-sonobuoy:v0.57.2 (architecture=amd64,os=windows,os.version=10.0.20348.2655) - 141M
registry.rancher.com/rancher/mirrored-sonobuoy-sonobuoy:v0.57.2 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/mirrored-sonobuoy-sonobuoy:v0.57.2 (architecture=arm64,os=linux,variant=v8) - 22M
registry.rancher.com/rancher/mirrored-sonobuoy-sonobuoy:v0.57.2 (architecture=s390x,os=linux) - 22M
registry.rancher.com/rancher/mirrored-thanos-thanos:v0.34.1 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/mirrored-thanos-thanos:v0.34.1 (architecture=arm64,os=linux,variant=v8) - 76M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.11.3-rancher1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.11.3-rancher1 (architecture=arm64,os=linux) - 100M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.7.1-hardened1 (architecture=amd64,os=linux) - 321M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.7.1-hardened1 (architecture=arm64,os=linux) - 324M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.7.1-hardened1 (architecture=s390x,os=linux) - 536M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.3-hardened1 (architecture=amd64,os=linux) - 319M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.3-hardened1 (architecture=arm64,os=linux) - 324M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.3-hardened1 (architecture=s390x,os=linux) - 616M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.4-rancher1 (architecture=amd64,os=linux) - 108M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.4-rancher1 (architecture=arm,os=linux,variant=v7) - 103M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.4-rancher1 (architecture=arm64,os=linux) - 104M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.4-rancher1 (architecture=s390x,os=linux) - 106M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.6-hardened1 (architecture=amd64,os=linux) - 311M
registry.rancher.com/rancher/nginx-ingress-controller:nginx-1.9.6-hardened1 (architecture=arm64,os=linux) - 318M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.1-hardened1 (architecture=amd64,os=linux) - 283M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.1-hardened1 (architecture=arm64,os=linux) - 280M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.1-hardened1 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.1-hardened1 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened2 (architecture=amd64,os=linux) - 283M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened2 (architecture=arm64,os=linux) - 280M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened2 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened2 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened3 (architecture=amd64,os=linux) - 281M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened3 (architecture=arm64,os=linux) - 278M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened3 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.4-hardened3 (architecture=unknown,os=unknown) - 1.3K
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.5-hardened3 (architecture=amd64,os=linux) - 284M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.5-hardened3 (architecture=arm64,os=linux) - 281M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.5-hardened3 (architecture=unknown,os=unknown) - 7.4M
registry.rancher.com/rancher/nginx-ingress-controller:v1.10.5-hardened3 (architecture=unknown,os=unknown) - 7.4M
registry.rancher.com/rancher/prometheus-federator:v0.3.4 (architecture=amd64,os=linux) - 22M
registry.rancher.com/rancher/prometheus-federator:v0.3.4 (architecture=arm64,os=linux) - 20M
registry.rancher.com/rancher/pushprox-client:v0.1.3-rancher2-client (architecture=amd64,os=linux) - 7.1M
registry.rancher.com/rancher/pushprox-client:v0.1.3-rancher2-client (architecture=arm64,os=linux) - 6.7M
registry.rancher.com/rancher/pushprox-client:v0.1.3-rancher2-client (architecture=unknown,os=unknown) - 12K
registry.rancher.com/rancher/pushprox-client:v0.1.3-rancher2-client (architecture=unknown,os=unknown) - 12K
registry.rancher.com/rancher/pushprox-proxy:v0.1.3-rancher2-proxy (architecture=amd64,os=linux) - 6.9M
registry.rancher.com/rancher/pushprox-proxy:v0.1.3-rancher2-proxy (architecture=arm64,os=linux) - 6.6M
registry.rancher.com/rancher/pushprox-proxy:v0.1.3-rancher2-proxy (architecture=unknown,os=unknown) - 11K
registry.rancher.com/rancher/pushprox-proxy:v0.1.3-rancher2-proxy (architecture=unknown,os=unknown) - 11K
registry.rancher.com/rancher/rancher-agent:v2.9.4 (architecture=amd64,os=windows,os.version=10.0.17763.6532) - 2.1G
registry.rancher.com/rancher/rancher-agent:v2.9.4 (architecture=amd64,os=windows,os.version=10.0.20348.2762) - 1.9G
registry.rancher.com/rancher/rancher-agent:v2.9.4 (architecture=amd64,os=linux) - 560M
registry.rancher.com/rancher/rancher-agent:v2.9.4 (architecture=arm64,os=linux) - 554M
registry.rancher.com/rancher/rancher-csp-adapter:v4.0.0 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/rancher-csp-adapter:v4.0.0 (architecture=unknown,os=unknown) - 6.2K
registry.rancher.com/rancher/rancher-webhook:v0.5.4 (architecture=arm64,os=linux) - 26M
registry.rancher.com/rancher/rancher-webhook:v0.5.4 (architecture=unknown,os=unknown) - 5.4K
registry.rancher.com/rancher/rancher-webhook:v0.5.4 (architecture=amd64,os=linux) - 28M
registry.rancher.com/rancher/rancher-webhook:v0.5.4 (architecture=unknown,os=unknown) - 5.4K
registry.rancher.com/rancher/rancher:v2.9.4 (architecture=amd64,os=linux) - 869M
registry.rancher.com/rancher/rancher:v2.9.4 (architecture=unknown,os=unknown) - 4.2M
registry.rancher.com/rancher/rancher:v2.9.4 (architecture=arm64,os=linux) - 844M
registry.rancher.com/rancher/rancher:v2.9.4 (architecture=unknown,os=unknown) - 4.2M
registry.rancher.com/rancher/rke-tools:v0.1.100 (architecture=arm64,os=linux) - 127M
registry.rancher.com/rancher/rke-tools:v0.1.100 (architecture=unknown,os=unknown) - 42K
registry.rancher.com/rancher/rke-tools:v0.1.100 (architecture=amd64,os=linux) - 135M
registry.rancher.com/rancher/rke-tools:v0.1.100 (architecture=unknown,os=unknown) - 42K
registry.rancher.com/rancher/rke-tools:v0.1.105 (architecture=amd64,os=linux) - 125M
registry.rancher.com/rancher/rke-tools:v0.1.105 (architecture=unknown,os=unknown) - 41K
registry.rancher.com/rancher/rke-tools:v0.1.105 (architecture=arm64,os=linux) - 117M
registry.rancher.com/rancher/rke-tools:v0.1.105 (architecture=unknown,os=unknown) - 41K
registry.rancher.com/rancher/rke2-cloud-provider:v1.26.3-build20230608 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/rke2-cloud-provider:v1.26.3-build20230608 (architecture=arm64,os=linux) - 60M
registry.rancher.com/rancher/rke2-cloud-provider:v1.26.3-build20230608 (architecture=s390x,os=linux) - 58M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.13-build20240910 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.13-build20240910 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.13-build20240910 (architecture=unknown,os=unknown) - 18K
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.13-build20240910 (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.15-0.20241016053552-63bfb1936862-build20241016 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.15-0.20241016053552-63bfb1936862-build20241016 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.15-0.20241016053552-63bfb1936862-build20241016 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.15-0.20241016053552-63bfb1936862-build20241016 (architecture=unknown,os=unknown) - 21K
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.2-build20231016 (architecture=amd64,os=linux) - 65M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.2-build20231016 (architecture=arm64,os=linux) - 64M
registry.rancher.com/rancher/rke2-cloud-provider:v1.28.2-build20231016 (architecture=s390x,os=linux) - 62M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.10-0.20241016053521-9510ac25fefb-build20241016 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.10-0.20241016053521-9510ac25fefb-build20241016 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.10-0.20241016053521-9510ac25fefb-build20241016 (architecture=unknown,os=unknown) - 241K
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.10-0.20241016053521-9510ac25fefb-build20241016 (architecture=unknown,os=unknown) - 243K
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240412 (architecture=amd64,os=linux) - 65M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240412 (architecture=arm64,os=linux) - 64M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240515 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240515 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240515 (architecture=unknown,os=unknown) - 17K
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.3-build20240515 (architecture=unknown,os=unknown) - 19K
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.8-build20240910 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.8-build20240910 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.8-build20240910 (architecture=unknown,os=unknown) - 18K
registry.rancher.com/rancher/rke2-cloud-provider:v1.29.8-build20240910 (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.4-build20240910 (architecture=amd64,os=linux) - 20M
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.4-build20240910 (architecture=arm64,os=linux) - 18M
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.4-build20240910 (architecture=unknown,os=unknown) - 18K
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.4-build20240910 (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.6-0.20241016053533-5ec454f50e7a-build20241016 (architecture=amd64,os=linux) - 21M
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.6-0.20241016053533-5ec454f50e7a-build20241016 (architecture=arm64,os=linux) - 19M
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.6-0.20241016053533-5ec454f50e7a-build20241016 (architecture=unknown,os=unknown) - 241K
registry.rancher.com/rancher/rke2-cloud-provider:v1.30.6-0.20241016053533-5ec454f50e7a-build20241016 (architecture=unknown,os=unknown) - 243K
registry.rancher.com/rancher/rke2-runtime:v1.27.10-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.10-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.10-rke2r1 (architecture=amd64,os=windows) - 205M
registry.rancher.com/rancher/rke2-runtime:v1.27.11-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.11-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.11-rke2r1 (architecture=amd64,os=windows) - 224M
registry.rancher.com/rancher/rke2-runtime:v1.27.12-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.12-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.12-rke2r1 (architecture=amd64,os=windows) - 224M
registry.rancher.com/rancher/rke2-runtime:v1.27.13-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.13-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.13-rke2r1 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.27.14-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.14-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.14-rke2r1 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.27.15-rke2r1 (architecture=amd64,os=linux) - 102M
registry.rancher.com/rancher/rke2-runtime:v1.27.15-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.15-rke2r1 (architecture=amd64,os=windows) - 224M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r1 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r2 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r2 (architecture=arm64,os=linux) - 93M
registry.rancher.com/rancher/rke2-runtime:v1.27.16-rke2r2 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.27.5-rke2r1 (architecture=amd64,os=linux) - 101M
registry.rancher.com/rancher/rke2-runtime:v1.27.5-rke2r1 (architecture=arm64,os=linux) - 90M
registry.rancher.com/rancher/rke2-runtime:v1.27.5-rke2r1 (architecture=amd64,os=windows) - 204M
registry.rancher.com/rancher/rke2-runtime:v1.27.5-rke2r1 (architecture=s390x,os=linux) - 90M
registry.rancher.com/rancher/rke2-runtime:v1.27.7-rke2r2 (architecture=amd64,os=linux) - 102M
registry.rancher.com/rancher/rke2-runtime:v1.27.7-rke2r2 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.7-rke2r2 (architecture=amd64,os=windows) - 204M
registry.rancher.com/rancher/rke2-runtime:v1.27.7-rke2r2 (architecture=s390x,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.8-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.27.8-rke2r1 (architecture=arm64,os=linux) - 91M
registry.rancher.com/rancher/rke2-runtime:v1.27.8-rke2r1 (architecture=amd64,os=windows) - 205M
registry.rancher.com/rancher/rke2-runtime:v1.28.10-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.10-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.28.10-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.28.11-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.28.11-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.28.11-rke2r1 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.28.12-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.28.12-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.28.12-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.28.13-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.13-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.28.13-rke2r1 (architecture=amd64,os=windows) - 230M
registry.rancher.com/rancher/rke2-runtime:v1.28.14-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.14-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.28.14-rke2r1 (architecture=amd64,os=windows) - 230M
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 835K
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 835K
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=amd64,os=windows) - 230M
registry.rancher.com/rancher/rke2-runtime:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 1.3M
registry.rancher.com/rancher/rke2-runtime:v1.28.8-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.8-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.28.8-rke2r1 (architecture=amd64,os=windows) - 225M
registry.rancher.com/rancher/rke2-runtime:v1.28.9-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.28.9-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.28.9-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 837K
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=arm64,os=linux) - 95M
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 837K
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=amd64,os=windows) - 232M
registry.rancher.com/rancher/rke2-runtime:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 1.3M
registry.rancher.com/rancher/rke2-runtime:v1.29.3-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.3-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.29.3-rke2r1 (architecture=amd64,os=windows) - 227M
registry.rancher.com/rancher/rke2-runtime:v1.29.4-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.4-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.29.4-rke2r1 (architecture=amd64,os=windows) - 228M
registry.rancher.com/rancher/rke2-runtime:v1.29.5-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.5-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.29.5-rke2r1 (architecture=amd64,os=windows) - 228M
registry.rancher.com/rancher/rke2-runtime:v1.29.6-rke2r1 (architecture=amd64,os=linux) - 104M
registry.rancher.com/rancher/rke2-runtime:v1.29.6-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.29.6-rke2r1 (architecture=amd64,os=windows) - 227M
registry.rancher.com/rancher/rke2-runtime:v1.29.7-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.7-rke2r1 (architecture=arm64,os=linux) - 94M
registry.rancher.com/rancher/rke2-runtime:v1.29.7-rke2r1 (architecture=amd64,os=windows) - 228M
registry.rancher.com/rancher/rke2-runtime:v1.29.8-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.8-rke2r1 (architecture=arm64,os=linux) - 95M
registry.rancher.com/rancher/rke2-runtime:v1.29.8-rke2r1 (architecture=amd64,os=windows) - 232M
registry.rancher.com/rancher/rke2-runtime:v1.29.9-rke2r1 (architecture=amd64,os=linux) - 105M
registry.rancher.com/rancher/rke2-runtime:v1.29.9-rke2r1 (architecture=arm64,os=linux) - 95M
registry.rancher.com/rancher/rke2-runtime:v1.29.9-rke2r1 (architecture=amd64,os=windows) - 232M
registry.rancher.com/rancher/rke2-runtime:v1.30.1-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.30.1-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.30.1-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.30.2-rke2r1 (architecture=amd64,os=linux) - 102M
registry.rancher.com/rancher/rke2-runtime:v1.30.2-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.30.2-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.30.3-rke2r1 (architecture=amd64,os=linux) - 102M
registry.rancher.com/rancher/rke2-runtime:v1.30.3-rke2r1 (architecture=arm64,os=linux) - 92M
registry.rancher.com/rancher/rke2-runtime:v1.30.3-rke2r1 (architecture=amd64,os=windows) - 226M
registry.rancher.com/rancher/rke2-runtime:v1.30.4-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.30.4-rke2r1 (architecture=arm64,os=linux) - 93M
registry.rancher.com/rancher/rke2-runtime:v1.30.4-rke2r1 (architecture=amd64,os=windows) - 231M
registry.rancher.com/rancher/rke2-runtime:v1.30.5-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.30.5-rke2r1 (architecture=arm64,os=linux) - 93M
registry.rancher.com/rancher/rke2-runtime:v1.30.5-rke2r1 (architecture=amd64,os=windows) - 231M
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=amd64,os=linux) - 103M
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 811K
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=arm64,os=linux) - 93M
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 811K
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=amd64,os=windows) - 231M
registry.rancher.com/rancher/rke2-runtime:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 1.3M
registry.rancher.com/rancher/rke2-upgrade:v1.27.10-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.27.11-rke2r1 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.12-rke2r1 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.13-rke2r1 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.14-rke2r1 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.15-rke2r1 - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.16-rke2r1 - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.16-rke2r2 - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.27.5-rke2r1 (architecture=amd64,os=linux) - 47M
registry.rancher.com/rancher/rke2-upgrade:v1.27.5-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/rke2-upgrade:v1.27.7-rke2r2 (architecture=amd64,os=linux) - 47M
registry.rancher.com/rancher/rke2-upgrade:v1.27.7-rke2r2 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/rke2-upgrade:v1.27.8-rke2r1 (architecture=amd64,os=linux) - 47M
registry.rancher.com/rancher/rke2-upgrade:v1.28.10-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.11-rke2r1 - 53M
registry.rancher.com/rancher/rke2-upgrade:v1.28.12-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.13-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.14-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.15-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.15-rke2r1 (architecture=arm64,os=linux) - 50M
registry.rancher.com/rancher/rke2-upgrade:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/rke2-upgrade:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/rke2-upgrade:v1.28.8-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.28.9-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.10-rke2r1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.29.10-rke2r1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/rke2-upgrade:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/rke2-upgrade:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/rke2-upgrade:v1.29.3-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.4-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.5-rke2r1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.6-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.7-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.8-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.29.9-rke2r1 - 54M
registry.rancher.com/rancher/rke2-upgrade:v1.30.1-rke2r1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.2-rke2r1 - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.3-rke2r1 - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.4-rke2r1 - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.5-rke2r1 - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.6-rke2r1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/rke2-upgrade:v1.30.6-rke2r1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/rke2-upgrade:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/rke2-upgrade:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 15K
registry.rancher.com/rancher/security-scan:v0.4.0 (architecture=amd64,os=linux) - 99M
registry.rancher.com/rancher/security-scan:v0.4.0 (architecture=arm64,os=linux) - 95M
registry.rancher.com/rancher/security-scan:v0.4.0 (architecture=unknown,os=unknown) - 2.9M
registry.rancher.com/rancher/security-scan:v0.4.0 (architecture=unknown,os=unknown) - 2.9M
registry.rancher.com/rancher/shell:v0.2.1 (architecture=amd64,os=linux) - 94M
registry.rancher.com/rancher/shell:v0.2.1 (architecture=arm64,os=linux) - 88M
registry.rancher.com/rancher/shell:v0.2.1 (architecture=s390x,os=linux) - 91M
registry.rancher.com/rancher/shell:v0.2.1 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/shell:v0.2.1 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/shell:v0.2.1 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/shell:v0.2.2 (architecture=amd64,os=linux) - 95M
registry.rancher.com/rancher/shell:v0.2.2 (architecture=arm64,os=linux) - 88M
registry.rancher.com/rancher/shell:v0.2.2 (architecture=s390x,os=linux) - 92M
registry.rancher.com/rancher/shell:v0.2.2 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/shell:v0.2.2 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/shell:v0.2.2 (architecture=unknown,os=unknown) - 2.0K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.10-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.10-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.12-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.12-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.13-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.13-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.14-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.14-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.4-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.5-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.5-k3s2 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.6-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.7-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.8-k3s2 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.8-k3s2 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.9-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.21.9-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.10-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.10-k3s1 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.11-k3s2 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.11-k3s2 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.13-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.13-k3s1 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.15-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.15-k3s1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.16-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.16-k3s1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.16-k3s1 (architecture=arm,os=linux) - 39M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.16-k3s1 (architecture=arm64,os=linux) - 39M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.17-k3s1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.17-k3s1 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.17-k3s1 (architecture=arm,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.17-k3s1 (architecture=arm64,os=linux) - 39M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.4-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.5-k3s2 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.5-k3s2 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.6-k3s1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.6-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.7-k3s1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.7-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.9-k3s1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.22.9-k3s1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.10-k3s1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.10-k3s1 (architecture=s390x,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.13-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.13-k3s1 (architecture=s390x,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.14-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.14-k3s1 (architecture=s390x,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.14-k3s1 (architecture=arm,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.14-k3s1 (architecture=arm64,os=linux) - 48M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.15-k3s1 (architecture=amd64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.15-k3s1 (architecture=s390x,os=linux) - 49M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.15-k3s1 (architecture=arm,os=linux) - 49M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.15-k3s1 (architecture=arm64,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.16-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.16-k3s1 (architecture=s390x,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.16-k3s1 (architecture=arm64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.17-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.17-k3s1 (architecture=s390x,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.17-k3s1 (architecture=arm64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.4-k3s1 (architecture=amd64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.4-k3s1 (architecture=s390x,os=linux) - 8.4K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.6-k3s1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.6-k3s1 (architecture=s390x,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.7-k3s1 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.7-k3s1 (architecture=s390x,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.8-k3s2 (architecture=amd64,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.23.8-k3s2 (architecture=s390x,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.10-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.10-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.10-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.11-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.11-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.11-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.13-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.13-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.13-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.14-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.14-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.14-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.15-k3s1 (architecture=amd64,os=linux) - 60M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.15-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.15-k3s1 (architecture=arm64,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.16-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.16-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.16-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.17-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.17-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.17-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.2-k3s2 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.2-k3s2 (architecture=s390x,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.4-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.4-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.7-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.7-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.8-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.8-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.8-k3s1 (architecture=arm,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.8-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.9-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.9-k3s2 (architecture=s390x,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.24.9-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.10-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.10-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.10-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.11-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.11-k3s1 (architecture=s390x,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.11-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.12-k3s1 (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.12-k3s1 (architecture=s390x,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.12-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.13-k3s1 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.13-k3s1 (architecture=s390x,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.13-k3s1 (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.15-k3s2 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.15-k3s2 (architecture=s390x,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.15-k3s2 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.16-k3s4 (architecture=amd64,os=linux) - 62M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.16-k3s4 (architecture=arm64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.7-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.7-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.7-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.9-k3s1 (architecture=amd64,os=linux) - 58M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.9-k3s1 (architecture=s390x,os=linux) - 54M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.25.9-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.10-k3s2 (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.10-k3s2 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.10-k3s2 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.11-k3s2 (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.11-k3s2 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.13-k3s2 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.13-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.14-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.14-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.15-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.15-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.5-k3s1 (architecture=amd64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.5-k3s1 (architecture=s390x,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.5-k3s1 (architecture=arm64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.6-k3s1 (architecture=amd64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.6-k3s1 (architecture=s390x,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.6-k3s1 (architecture=arm64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.7-k3s1 (architecture=amd64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.7-k3s1 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.7-k3s1 (architecture=arm64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.8-k3s1 (architecture=amd64,os=linux) - 50M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.8-k3s1 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.26.8-k3s1 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.10-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.10-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.11-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.11-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.12-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.12-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.13-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.13-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.14-k3s1 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.14-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.15-k3s2 (architecture=amd64,os=linux) - 55M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.15-k3s2 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.16-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.16-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.16-k3s1 (architecture=arm64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.16-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.5-k3s1 (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.5-k3s1 (architecture=s390x,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.5-k3s1 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.7-k3s2 (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.7-k3s2 (architecture=s390x,os=linux) - 48M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.7-k3s2 (architecture=arm64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.8-k3s2 (architecture=amd64,os=linux) - 51M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.27.8-k3s2 (architecture=arm64,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.10-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.10-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.11-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.11-k3s2 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.12-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.12-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.12-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.12-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.13-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.13-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.13-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.13-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.14-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.14-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.14-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.14-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.15-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.15-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.15-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.15-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.8-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.8-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.9-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.28.9-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.10-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.10-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.10-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.10-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.3-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.3-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.4-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.4-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.5-k3s1 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.5-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.6-k3s2 (architecture=amd64,os=linux) - 56M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.6-k3s2 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.7-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.7-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.7-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.7-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.8-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.8-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.8-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.8-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.9-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.9-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.9-k3s1 (architecture=arm64,os=linux) - 52M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.29.9-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.1-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.1-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.2-k3s2 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.2-k3s2 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.3-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.3-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.3-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.3-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.4-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.4-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.4-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.4-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.5-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.5-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.5-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.5-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.6-k3s1 (architecture=amd64,os=linux) - 57M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.6-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.6-k3s1 (architecture=arm64,os=linux) - 53M
registry.rancher.com/rancher/system-agent-installer-k3s:v1.30.6-k3s1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.10-rke2r2 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2686) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.587) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.10-rke2r2 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r1 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r2 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.12-rke2r2 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.13-rke2r2 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.13-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2928) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.13-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.707) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.13-rke2r2 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.14-rke2r1 (architecture=amd64,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3046) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.768) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.14-rke2r1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.4-rke2r2 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.5-rke2r1 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.5-rke2r2 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.5-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2183) - 2.6G
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.6-rke2r1 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2237) - 179M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.7-rke2r2 (architecture=amd64,os=linux) - 81M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2300) - 179M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.350) - 193M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.8-rke2r2 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.8-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2451) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.8-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.469) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.8-rke2r2 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.9-rke2r1 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2458) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.473) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.21.9-rke2r1 (architecture=s390x,os=linux) - 40M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.10-rke2r2 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2928) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.707) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.10-rke2r2 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.11-rke2r1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3046) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.768) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.11-rke2r1 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.13-rke2r1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3287) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.887) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.13-rke2r1 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.15-rke2r2 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.15-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.3532) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.15-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.1129) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.15-rke2r2 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.16-rke2r1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3650) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1249) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.16-rke2r1 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.17-rke2r1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3770) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1366) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.17-rke2r1 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.4-rke2r2 (architecture=amd64,os=linux) - 83M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.4-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2300) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.4-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.350) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.5-rke2r2 (architecture=amd64,os=linux) - 84M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.5-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2451) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.5-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.469) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.5-rke2r2 (architecture=s390x,os=linux) - 5.9K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.6-rke2r1 (architecture=amd64,os=linux) - 84M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2458) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.473) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.6-rke2r1 (architecture=s390x,os=linux) - 5.9K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.7-rke2r2 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2686) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.587) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.7-rke2r2 (architecture=s390x,os=linux) - 5.9K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r1 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r1 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r2 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.22.9-rke2r2 (architecture=s390x,os=linux) - 41M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.10-rke2r1 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3287) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.887) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.10-rke2r1 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.13-rke2r1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3532) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1129) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.13-rke2r1 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.14-rke2r1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3650) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1249) - 200M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.14-rke2r1 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.15-rke2r1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3770) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1366) - 200M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.15-rke2r1 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.16-rke2r1 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3887) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1487) - 202M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.16-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.17-rke2r1 (architecture=amd64,os=linux) - 23M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4010) - 165M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1547) - 180M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.17-rke2r1 (architecture=s390x,os=linux) - 22M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.4-rke2r2 (architecture=amd64,os=linux) - 85M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.4-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2686) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.4-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.587) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.4-rke2r2 (architecture=s390x,os=linux) - 5.9K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r1 (architecture=amd64,os=linux) - 86M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r1 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r2 (architecture=amd64,os=linux) - 86M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2803) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.643) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.6-rke2r2 (architecture=s390x,os=linux) - 42M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.7-rke2r2 (architecture=amd64,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.2928) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.707) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.7-rke2r2 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.8-rke2r1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3046) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.768) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.23.8-rke2r1 (architecture=s390x,os=linux) - 43M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.10-rke2r1 (architecture=amd64,os=linux) - 47M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3887) - 189M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1487) - 203M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.10-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.11-rke2r1 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4010) - 167M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1547) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.11-rke2r1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.13-rke2r1 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4252) - 167M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1668) - 182M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.13-rke2r1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.14-rke2r1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4377) - 167M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1726) - 182M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.14-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.15-rke2r1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4499) - 170M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1787) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.15-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.16-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4645) - 171M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1850) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.16-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.17-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.17-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.2K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4737) - 172M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.17-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1906) - 187M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.17-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.2-rke2r1 (architecture=amd64,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.2-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3046) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.2-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.768) - 200M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.2-rke2r1 (architecture=s390x,os=linux) - 44M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.4-rke2r1 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3287) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.887) - 202M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.4-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.7-rke2r1 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3532) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1129) - 202M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.7-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.8-rke2r1 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.3650) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1249) - 202M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.8-rke2r1 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.9-rke2r2 (architecture=amd64,os=linux) - 46M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.9-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.3887) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.9-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.1487) - 202M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.24.9-rke2r2 (architecture=s390x,os=linux) - 45M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.10-rke2r1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4377) - 167M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1726) - 182M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.10-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.11-rke2r1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4499) - 170M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1787) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.11-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.12-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4645) - 171M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1850) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.12-rke2r1 (architecture=s390x,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.13-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.13-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.2K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4737) - 172M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1906) - 187M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.13-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.15-rke2r2 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.15-rke2r2 (architecture=arm64,os=linux,variant=v8) - 7.3K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.15-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.4974) - 172M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.15-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.2031) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.15-rke2r2 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.16-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.16-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.3K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5122) - 172M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2113) - 188M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.7-rke2r1 (architecture=amd64,os=linux) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4010) - 167M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1547) - 182M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.7-rke2r1 (architecture=s390x,os=linux) - 6.8K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.9-rke2r1 (architecture=amd64,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4252) - 168M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1668) - 182M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.25.9-rke2r1 (architecture=s390x,os=linux) - 23M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.10-rke2r2 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.10-rke2r2 (architecture=arm64,os=linux,variant=v8) - 7.3K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.4974) - 171M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.10-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.2031) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.10-rke2r2 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.11-rke2r1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.11-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.3K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5122) - 171M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2113) - 187M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.13-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.13-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.4K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5329) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2227) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.14-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.14-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.4K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5458) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2322) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.15-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.15-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.4K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5576) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2340) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.5-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4377) - 166M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1726) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.5-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.6-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4499) - 169M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1787) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.6-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.7-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4645) - 170M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1850) - 185M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.7-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.8-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.8-rke2r1 (architecture=arm64,os=linux,variant=v8) - 7.2K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4737) - 171M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1906) - 186M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.26.8-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.10-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.10-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5329) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2227) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.11-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.11-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5458) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2322) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.12-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.12-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5576) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2340) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.13-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.13-rke2r1 (architecture=arm64,os=linux,variant=v8) - 29M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5696) - 181M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2402) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.14-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.14-rke2r1 (architecture=arm64,os=linux,variant=v8) - 29M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5820) - 228M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2461) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.15-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.15-rke2r1 (architecture=arm64,os=linux,variant=v8) - 29M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5936) - 228M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2529) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6054) - 229M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 228M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 195M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=amd64,os=linux) - 32M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=arm64,os=linux) - 29M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.16-rke2r2 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.5-rke2r1 (architecture=amd64,os=linux) - 26M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.5-rke2r1 (architecture=arm64,os=linux,variant=v8) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.4737) - 168M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.1906) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.5-rke2r1 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.7-rke2r2 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.7-rke2r2 (architecture=arm64,os=linux,variant=v8) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.17763.4974) - 168M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.7-rke2r2 (architecture=amd64,os=windows,os.version=10.0.20348.2031) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.7-rke2r2 (architecture=s390x,os=linux) - 25M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.8-rke2r1 (architecture=amd64,os=linux) - 27M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.8-rke2r1 (architecture=arm64,os=linux,variant=v8) - 24M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5122) - 169M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.27.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2113) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.10-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.10-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5820) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2461) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.11-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.11-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5936) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.11-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2529) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6054) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.12-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.13-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6293) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2700) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.14-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6414) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2762) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.15-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.8-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.8-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5576) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2340) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.9-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.9-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5696) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.28.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2402) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6414) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2762) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.10-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.3-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.3-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.3-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5576) - 184M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.3-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2340) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.4-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.4-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5696) - 183M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2402) - 199M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.5-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.5-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5820) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2461) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.6-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.6-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5936) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2529) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6054) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.7-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.8-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6293) - 231M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2700) - 198M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.29.9-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.1-rke2r1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.1-rke2r1 (architecture=arm64,os=linux,variant=v8) - 31M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.1-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5820) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.1-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2461) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.2-rke2r1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.2-rke2r1 (architecture=arm64,os=linux,variant=v8) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.2-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.5936) - 229M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.2-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2529) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6054) - 229M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.3-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6189) - 229M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2582) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=amd64,os=linux) - 33M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.4-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6293) - 230M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2700) - 197M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=arm64,os=linux) - 31M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.5-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.17763.6414) - 229M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=amd64,os=windows,os.version=10.0.20348.2762) - 196M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=amd64,os=linux) - 34M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=arm64,os=linux) - 30M
registry.rancher.com/rancher/system-agent-installer-rke2:v1.30.6-rke2r1 (architecture=unknown,os=unknown) - 3.7K
registry.rancher.com/rancher/system-agent:v0.3.10-suc (architecture=amd64,os=linux) - 61M
registry.rancher.com/rancher/system-agent:v0.3.10-suc (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/system-agent:v0.3.10-suc (architecture=arm64,os=linux) - 55M
registry.rancher.com/rancher/system-agent:v0.3.10-suc (architecture=unknown,os=unknown) - 20K
registry.rancher.com/rancher/system-upgrade-controller:v0.13.4 (architecture=amd64,os=linux) - 11M
registry.rancher.com/rancher/system-upgrade-controller:v0.13.4 (architecture=arm64,os=linux) - 9.4M
registry.rancher.com/rancher/ui-plugin-catalog:3.0.0 - 236M
Total images: 2595
Total size: 172G
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment