Download Kubernetes
Kubernetes ships binaries for each component as well as a standard set of client applications to bootstrap or interact with a cluster. Components like the Kube API Server are capable of running within container images inside of a cluster. Those components are also shipped in container images as part of the official release process. All binaries as well as container images are available for multiple operating systems as well as hardware architectures.
Container Images
All Kubernetes container images are deployed to the k8s.gcr.io container registry.
Kubernetes v1.24 [alpha]
From the beginning of Kubernetes v1.24, the following container images are signed using cosign signatures:
Container Image | Supported Architectures |
---|---|
k8s.gcr.io/kube-apiserver:v1.24.0 | amd64, arm, arm64, ppc64le, s390x |
k8s.gcr.io/kube-controller-manager:v1.24.0 | amd64, arm, arm64, ppc64le, s390x |
k8s.gcr.io/kube-proxy:v1.24.0 | amd64, arm, arm64, ppc64le, s390x |
k8s.gcr.io/kube-scheduler:v1.24.0 | amd64, arm, arm64, ppc64le, s390x |
k8s.gcr.io/conformance:v1.24.0 | amd64, arm, arm64, ppc64le, s390x |
All container images are available for multiple architectures, whereas the
container runtime should choose the correct one based on the underlying
platform. It is also possible to pull a dedicated architecture by suffixing the
container image name, for example
k8s.gcr.io/kube-apiserver-arm64:v1.24.0
. All
those derivations are signed in the same way as the multi-architecture manifest lists.
Binaries
Find links to download Kubernetes components (and their checksums) in the CHANGELOG files.
Alternately, use downloadkubernetes.com to filter by version and architecture.
kubectl
The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes clusters.
You can use kubectl to deploy applications, inspect and manage cluster resources,
and view logs. For more information including a complete list of kubectl operations, see the
kubectl
reference documentation.
kubectl is installable on a variety of Linux platforms, macOS and Windows. Find your preferred operating system below.