Home > OS >  GKE - Hybrid Kubernetes cluster
GKE - Hybrid Kubernetes cluster

Time:11-26

I've been reading the Google Cloud documentation about hybrid GKE cluster with enter image description here

For the above solution, the master node is managed by GCloud, but the ideal solution is to manage multiple node masters (High availability) on cloud and nodes on prem. Graphical example:

enter image description here

Is it possible to apply some or both of the proposed solutions on Google Cloud with GKE?

CodePudding user response:

If you want to maintain hybrid clusters, mixing on prem and cloud nodes, you need to use Anthos.

Anthos is a modern application management platform that provides a consistent development and operations experience for cloud and on-premises environments.

The primary computing environment for Anthos uses Anthos clusters, which extend GKE for use on Google Cloud, on-premises, or multicloud to manage Kubernetes installations in the environments where you intend to deploy your applications. These offerings bundle upstream Kubernetes releases and provide management capabilities for creating, scaling, and upgrading conformant Kubernetes clusters. With Kubernetes installed and running, you have access to a common orchestration layer that manages application deployment, configuration, upgrade, and scaling.

If you want to know more about Anthon in GCP please follow this link.

  • Related