首頁 >web前端 >js教程 >使用 Kind、Metalb 和 Ingress 在 Kubernetes 上部署聊天應用程式

使用 Kind、Metalb 和 Ingress 在 Kubernetes 上部署聊天應用程式

Susan Sarandon
Susan Sarandon原創
2025-01-02 19:39:40964瀏覽

本指南提供了使用 Kind、Metalb 和 Ingress 在 Kubernetes 上部署全端聊天應用程式的逐步說明。它旨在幫助開發人員建立強大的 Kubernetes 集群,以便在虛擬專用伺服器 (VPS) 上託管容器化應用程式。

部署包括設定基本的 Kubernetes 工具、配置負載平衡器、整合 SSL 以實現安全通訊以及部署前端和後端服務。此外,可選部分涵蓋使用 Prometheus 和 Grafana 監控應用程序,以增強可觀察性和效能追蹤。

無論您是部署用於生產的聊天應用程式還是探索 Kubernetes 功能,本指南都將作為一個全面的路線圖,幫助您的應用程式高效啟動和運行。

? k8s 入門

下表可協助您快速導覽至特定的工具安裝部分。

Tech stack Installation
Docker Install and configure Docker
Kind & Kubectl Install and configure Kind & Kubectl
Metallb Install Metallb
Ingress Install and configure Ingress
Helm Helm Install and configure
SSL Certificate Install and configure Cert Manager
Project Deploy Project Deploy and Others
Monitoring Namespace Create for Groping Prometheus and grafana and Other
Prometheus Install and configure Prometheus
Grafana Install and configure Grafana

?實施該計畫的先決條件:

[!注意]
vps 最低需求

  • 記憶體 - 4GB
  • CPU - 2 核
  • 儲存 - 20 GB
  • 一個域

Docker安裝與設定

sudo apt-get update

sudo apt-get install docker.io -y
sudo usermod -aG docker $USER && newgrp docker

Kind 和 Kubectl 安裝與設定

使用提供的腳本安裝 KIND 和 kubectl。建立 kind_kubectl_config.yaml 檔案:

#!/bin/bash

# For AMD64 / x86_64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-linux-amd64
chmod +x ./kind
sudo cp ./kind /usr/local/bin/kind

VERSION="v1.31.0"
URL="https://dl.k8s.io/release/${VERSION}/bin/linux/amd64/kubectl"
INSTALL_DIR="/usr/local/bin"

curl -LO "$URL"
chmod +x kubectl
sudo mv kubectl $INSTALL_DIR/
kubectl version --client

rm -f kubectl
rm -rf kind

echo "kind & kubectl installation complete."
./kind_kubectl_config.yaml

[!注意]
如果您的Vps ARM64 則使用此[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-linux- amd64
運行這個腳本,它會創建 kubectl 和友善的環境。
請安裝更多資訊

?️ 設定 KIND 叢集

建立 kind-cluster-config.yaml 檔案:

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4

nodes:
- role: control-plane
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
  extraPortMappings:
  - containerPort: 80
    hostPort: 80
    protocol: TCP
  - containerPort: 443
    hostPort: 443
    protocol: TCP

使用設定檔建​​立叢集:

kind create cluster --config kind-cluster-config.yaml --name my-kind-cluster

驗證叢集:

kubectl get nodes
kubectl cluster-info

[!注意]
這裡我增加了額外的PortMappings來運行Ingress

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

Metallb 安裝

[!注意]
我正在使用 Metallb 來使用 LoadBalance。假設您使用的是 Aws/Azure/DigitalOcean 等,它們提供 kubernates loadBalance 設施,然後不需要 Metallb。這裡我從一家本地公司購買VPS。他們提供一個 IP 位址來存取 VPS。

kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.14.9/config/manifests/metallb-frr.yaml

檢查 Metallb 設定

kubectl get all -n metallb-system

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

?️ 建立 Metallb_config.yaml 檔案:

apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
  name: first-pool
  namespace: metallb-system
spec:
  addresses:
  - 160.191.163.33-160.191.163.33

套用 metallb_config.yaml 檔案

kubectl apply -f metallb_config.yaml

[!注意]
我的 VPS IP 位址是 160.191.163.33。根據您的要求更改此 IP

♻️ Ingress 安裝與設定

kubectl apply -f https://kind.sigs.k8s.io/examples/ingress/deploy-ingress-nginx.yaml

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

[!注意]
這裡 service/ingress-nginx-controller 顯示 EXTERNAL-IP 是您的 VPS IP。我的VPS IP是160.191.163.33。它確保我們的 Metallb LoadBalance 正常工作。

Helm 安裝與設定

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh

./get_helm.sh

檢查 Helm 版本

helm version

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

?? 安裝與設定憑證管理員 || SSL 憑證

sudo apt-get update

sudo apt-get install docker.io -y
sudo usermod -aG docker $USER && newgrp docker

安裝憑證管理員 CRD

#!/bin/bash

# For AMD64 / x86_64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-linux-amd64
chmod +x ./kind
sudo cp ./kind /usr/local/bin/kind

VERSION="v1.31.0"
URL="https://dl.k8s.io/release/${VERSION}/bin/linux/amd64/kubectl"
INSTALL_DIR="/usr/local/bin"

curl -LO "$URL"
chmod +x kubectl
sudo mv kubectl $INSTALL_DIR/
kubectl version --client

rm -f kubectl
rm -rf kind

echo "kind & kubectl installation complete."

https://artifacthub.io/packages/helm/cert-manager/cert-manager

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

專案部署及其他

第一步

在您的 VPS 中複製以下項目

./kind_kubectl_config.yaml

第二步

進入k8s資料夾,可以看到這個檔案

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

第三步

創造 Nampe 空間

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4

nodes:
- role: control-plane
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
  extraPortMappings:
  - containerPort: 80
    hostPort: 80
    protocol: TCP
  - containerPort: 443
    hostPort: 443
    protocol: TCP

第四步

應用所有秘密文件

kind create cluster --config kind-cluster-config.yaml --name my-kind-cluster

第五步

清除 Mongodb 捲和其他

kubectl get nodes
kubectl cluster-info

第六步

應用其他文件的其餘部分

kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.14.9/config/manifests/metallb-frr.yaml

第七步

設定SSL憑證域。開啟 ssl_certificate.yaml 並編輯您想要的網域名稱

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

套用 ssl_certificate.yaml 檔案

kubectl get all -n metallb-system

第八步

配置 Ingress 檔案。 開啟 ingress.yaml 並新增您所需的網域。

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

應用 ingress.yaml 檔案

apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
  name: first-pool
  namespace: metallb-system
spec:
  addresses:
  - 160.191.163.33-160.191.163.33

檢查證書

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

檢查命名空間

kubectl apply -f metallb_config.yaml

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

?瀏覽器視圖

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

?結論

恭喜!您已成功部署 全端聊天應用程式 。現在您可以存取您的聊天應用程式。

監控及其他[可選]

現在我們正在做額外的功能,例如監控。它可以幫助您了解伺服器和應用程式。

建立命名空間

sudo apt-get update

sudo apt-get install docker.io -y
sudo usermod -aG docker $USER && newgrp docker

檢查命名空間

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

[!注意]
這個命名空間有助於控制所有監控應用程序,例如 Prometheus、Grafana、Loki 等

Prometheus 和 Grafana 安裝和配置

安裝

#!/bin/bash

# For AMD64 / x86_64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-linux-amd64
chmod +x ./kind
sudo cp ./kind /usr/local/bin/kind

VERSION="v1.31.0"
URL="https://dl.k8s.io/release/${VERSION}/bin/linux/amd64/kubectl"
INSTALL_DIR="/usr/local/bin"

curl -LO "$URL"
chmod +x kubectl
sudo mv kubectl $INSTALL_DIR/
kubectl version --client

rm -f kubectl
rm -rf kind

echo "kind & kubectl installation complete."

透過連接埠運行 Prometheus

./kind_kubectl_config.yaml

現在您可以使用此連接埠存取 Prometheus。喜歡

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4

nodes:
- role: control-plane
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
- role: worker
  image: kindest/node:v1.31.2
  extraPortMappings:
  - containerPort: 80
    hostPort: 80
    protocol: TCP
  - containerPort: 443
    hostPort: 443
    protocol: TCP

[!注意]
更改IP位址

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

Grafana 安裝與設定
透過連接埠運行 Grafana

kind create cluster --config kind-cluster-config.yaml --name my-kind-cluster

取得 Grafana 使用者名稱和密碼

使用者名稱

kubectl get nodes
kubectl cluster-info

密碼

kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.14.9/config/manifests/metallb-frr.yaml

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

[!注意]
您可以更改密碼

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

Grafana 儀表板。

在這裡您可以選擇不同類型的演算法儀表板

Chat App Deploy on Kubernetes Using Kind, Metallb and Ingress

僅此而已。快樂學習:) .
[如果有幫助,給儲存庫一個星星? ]

專案 Github 連結
https://github.com/kamruzzamanripon/k8-node-react-mongodb-app

以上是使用 Kind、Metalb 和 Ingress 在 Kubernetes 上部署聊天應用程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn