Home System Tutorial LINUX First introduction to Google Kubernetes Engine (GKE)

First introduction to Google Kubernetes Engine (GKE)

Jul 20, 2024 am 10:52 AM
linux linux tutorial Red Hat linux system linux command linux certification red hat linux linux video

初识Google Kubernetes Engine(GKE)

But so far, there are very few cloud service providers that can provide k8s fully managed services. Even AWS, which is currently the dominant cloud provider, does not fully provide k8s managed services and only provides limited customized services. In this regard, It's not mature yet.

However, Google’s k8s hosting service, namely GKE, has taken k8s hosting service to the extreme (at least for now). It not only provides a full set of k8s hosting services, but what is even more striking is that Google has integrated Autoscaler and k8s to achieve With the automatic scaling mechanism of k8s nodes, nodes can be automatically added or deleted according to the needs of pods. When existing nodes cannot carry new services, nodes will be added automatically to meet demand. When existing nodes are idle enough, the adjustment mechanism will be enabled to automatically shrink. Node, in a sense, this almost achieves the concept of serverless.

However, this may be just the tip of the iceberg, and more powerful functions need to be further explored. This article is just an introductory guide, which mainly provides guidance to quickly get started with GKE services (k8s hosting services) based on Google Cloud Platform.

GKE Getting Started Guide

Next, we will provide step-by-step instructions on how to use GKE to deploy services. The premise is that you have some understanding of k8s and can simply use the kubectl command.

1. Install and configure Google Cloud SDK

Google Cloud SDK is a set of command line tools for accessing various resources on the GCP (Google Cloud Platform) platform, similar to the aws command line tool of aws.

Not much to say about installation and configuration. Click the link below to select the tar package of the corresponding operating system version to download, then unzip it and add google-cloud-sdk/bin to the PATH environment variable

2. Initialize Google Cloud SDK

Initializing the Google Cloud SDK is to bind the gcloud command to the Google account and set some other default values, such as region, proxy, account, project (new project in the Google account), etc.

Before executing gcloud init initialization, you must first configure the HTTP proxy (you know GFW) for gcloud. Please see my previous article for the specific configuration. Then execute gcloud init to complete the initialization and just follow the wizard.

3. Go to the Google Cloud Platform console to create a k8s cluster and remember the name
初识Google Kubernetes Engine(GKE)
4. Install gcloud kubectl component
gcloud components install kubectl 
Copy after login
5. Get the authentication credentials for the cluster

After creating the cluster, you need to obtain authentication credentials to interact with the cluster. To authenticate to the cluster, run the following command:

gcloud container clusters get-credentials <上一步创建的集群名称> 
Copy after login
6. Next deploy a simple hello-server service to GKE
kubectl run hello-server --image gcr.io/google-samples/hello-app:1.0 --port 8080
Copy after login
Related links
https://cloud.google.com/kubernetes-engine/docs/quickstart 
https://cloud.google.com/sdk/docs/quickstart-macos?hl=zh-cn
Copy after login
Appendix
gloud common commands
gcloud auth login --no-launch-browser # gcloud 登录认证
gcloud config set compute/zone [COMPUTE_ZONE] # 设置默认区域
gcloud components list # 列出可安装组件
gcloud components install [组件名称] # 安装组件
gcloud components update  # 更新所有已安装组件
gcloud components remove [组件名称] # 卸载已安装组件
Copy after login
设置 gcloud http 代理
gcloud config set proxy/type http
gcloud config set proxy/address 127.0.0.1
gcloud config set proxy/port 1087
Copy after login
设置集群 docker 私服认证
kubectl create secret docker-registry regcred --docker-server= --docker-username= --docker-password= --docker-email=
Copy after login

注意:设置 docker 私服后,要在 GKE 部署 k8s 服务,必须得在 k8s 资源文件(yaml 格式)中的 container
同一级指定 imagePullSecrets 键,要不然仍然无法拉取配置的私服的镜像,示例资源文件如下:

apiVersion: v1
kind: Pod
metadata:
  name: private-reg
spec:
  containers:
  - name: private-reg-container
    image: 
  imagePullSecrets:
  - name: regcred
Copy after login
查看集群 docker 私服配置
kubectl get secret regcred --output=yaml      #base64 格式 显示
kubectl get secret regcred --output="jsonpath={.data.\.dockerconfigjson}" | base64 -d # base64
Copy after login

The above is the detailed content of First introduction to Google Kubernetes Engine (GKE). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1677
14
PHP Tutorial
1278
29
C# Tutorial
1257
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

How to set important Git configuration global properties How to set important Git configuration global properties Apr 17, 2025 pm 12:21 PM

There are many ways to customize a development environment, but the global Git configuration file is one that is most likely to be used for custom settings such as usernames, emails, preferred text editors, and remote branches. Here are the key things you need to know about global Git configuration files.

How to use sublime shortcut keys How to use sublime shortcut keys Apr 16, 2025 am 08:57 AM

Sublime Text provides shortcuts to improve development efficiency, including commonly used (save, copy, cut, etc.), editing (indentation, formatting, etc.), navigation (project panel, file browsing, etc.), and finding and replacing shortcuts. Proficiency in using these shortcut keys can significantly improve Sublime's efficiency.

See all articles