GCP IP range

您可以查看文件 [1],有提供兩個文件可供參考。第一個文件 [2] 是 Google 自己使用的網段內,第二個文件 [3] 是全球或地域性的 IP 範圍 for Google Cloud 的資源。另外,我們也發現 Github 上有個 repository [9] 幫忙列出所有 IP range from Google (Cloud & GoogleBot)。

URL 的部分,這邊為您收集以下常見之服務的 Service endpoint。 GCE API:

https://compute.googleapis.com

[4] GKE API:

https://container.googleapis.com

[5] Cloud SQL admin API:

https://sqladmin.googleapis.com

[6] Private Google Access API:private.googleapis.com, restricted.googleapis.com [7] Cloud Logging API:

https://logging.googleapis.com

[8]

從上述一些 API 所示,您可以發現 root domain 皆是 googleapis.com 此 URL。

如您有其他疑慮,歡迎隨時回覆此單,非常感謝您。

[1]

https://support.google.com/a/answer/10026322?hl=zh-Hant

[2]

https://www.gstatic.com/ipranges/goog.json

[3]

https://www.gstatic.com/ipranges/cloud.json

[4]

https://cloud.google.com/compute/docs/reference/rest/v1#service-endpoint

[5]

https://cloud.google.com/sql/docs/mysql/admin-api/rest#service-endpoint

[6]

https://cloud.google.com/kubernetes-engine/docs/reference/rest#service-endpoint

[7]

https://cloud.google.com/vpc/docs/configure-private-google-access#domain-options

[8]

https://cloud.google.com/logging/docs/reference/v2/rest#service-endpoint

[9]

https://github.com/lord-alfred/ipranges

Read more

如何安裝 KubeSphere 以及管理 Workspace 和新增 Label

前言 在 Kubernetes 的世界中,KubeSphere 是一個功能強大的開源容器平台,它不僅讓 Kubernetes 的管理更簡單,還集成了多集群管理、DevOps、微服務治理等功能。本篇文章將教您如何使用 Helm 快速安裝 KubeSphere,並如何通過管理 Workspace 和新增 Label 來實現資源的高效管理。 一、使用 Helm 安裝 KubeSphere 1. 為什麼選擇 Helm 安裝? Helm 是 Kubernetes 中廣泛使用的包管理工具,使用 Helm 安裝 KubeSphere 有以下優點: * 自動化:簡化安裝過程,減少手動配置。 * 靈活性:可以根據需求自定義安裝的模組。 * 版本控制:支持管理和回滾安裝的不同版本。 2. 安裝前準備 在開始安裝之前,請確保以下條件:

By Tim Chiagn

我的經驗

1. 網絡與安全 (Networking & Security) * Fortigate: 防火牆來管理網路環境 * Traefik: 用於 K8s 的 2. 虛擬化與存儲 (Virtualization & Storage) * Esxi: 買了一台server 使用 Esxi 管理 vm * TrueNAS: 還沒有買 NAS 使用這個加減用一下 3. DevOps 與持續交付 (DevOps & CI/CD) * ArgoCD: GitOps 工具,用於 Kubernetes 的應用交付和管理,支持自動化部署和同步。 * KubeSphere:提供完整的 CI/CD 工作流管理、應用部署和 DevOps 整合功能,是 Kubernetes

By Tim Chiagn