Viewing Kubernetes Version Information
When you install a Kubernetes cluster, you deploy a specific Kubernetes version. To verify the version information for each node in your cluster, run:Understanding Kubernetes Versioning
Kubernetes versions follow a three-part structure that includes a major, minor, and patch number. For example, the version “v1.11.3” is broken down as follows:- Major (1): The primary release series.
- Minor (11): Introduces new features and capabilities.
- Patch (3): Focuses on bug fixes and minor improvements.

Release Types
- Minor Releases: Rolled out every few months, these include significant enhancements and new functionalities.
- Patch Releases: Issued more frequently, these updates address security patches and critical bug fixes.

Alpha, Beta, and Stable Releases
Kubernetes also offers alpha and beta release channels:- Alpha Releases: Feature new additions that are disabled by default and may be unstable.
- Beta Releases: As features mature, they enter beta, where they are enabled by default and have been thoroughly tested.
- Stable Releases: Finalized and fully supported for production use.
kubernetes.tar.gz, includes executables for all Kubernetes components along with detailed download links and checksum information.

Keep in mind that while the main package includes all control plane components at the same version, other components like the etcd cluster and CoreDNS servers have independent versioning. For detailed dependency information, consult the specific release notes.