在Build up API Gateway-APISIX之前,我們要先了解有幾種部署方式,再選適用於我們需求的Deploy mode來部署。目前目標是希望找輕量及可以部署於Kubernetes的Deploy mode。
Notice: Control Plane 是做決策和配置管理的,而 Data Plane 是負責實際執行這些決策和處理 API 流量的。
local yaml
載入。Notice: 啟用 APISIX 節點的獨立模式(Standalone mode)後,將不再使用預設的 etcd 作為配置中心。
Standalone mode 因為沒有etcd,所以相對輕量。而其運作是載入Yaml,所以可以更適用於GitOps與Kubernetes的整合方式來部署。
deployment:
role: data_plane
role_data_plane:
config_provider: yaml
#END