快速入門:在 Azure Spring Apps 中啟用和停用 Spring Cloud Config Server
注意
基本、標準和企業方案將從 2025 年 3 月中旬開始淘汰,並停用 3 年。 建議您轉換至 Azure Container Apps。 如需詳細資訊,請參閱 Azure Spring Apps 淘汰公告。
標準 耗用量和專用 方案將從 2024 年 9 月 30 日起淘汰,並在六個月後完成關閉。 建議您轉換至 Azure Container Apps。 如需詳細資訊,請參閱 將 Azure Spring Apps 標準取用和專用方案遷移至 Azure Container Apps。
本文適用於: ✔️ 標準取用和專用 (預覽) ❌ 基本/標準 ❌ 企業
本文說明如何在 Azure Spring Apps 中啟用和停用 Spring Cloud Config Server 以進行服務註冊和探索。 Spring Cloud Config Server 是分散式系統的集中式設定服務。 Config Server 使用目前支援本機記憶體、Git 和 Subversion 的可插式存放庫層。 在本快速入門中,您會設定組態伺服器以從 Git 存放庫取得數據。
必要條件
- Azure 訂用帳戶。 如果您沒有訂用帳戶,請先建立免費帳戶,再開始操作。
- Azure CLI。 使用下列命令安裝 Azure Spring 應用程式延伸模組:
az extension add --name spring
。 - Git。
- 快速入門完成 :布建 Azure Spring Apps 標準取用和專用方案服務實例。
設定 Config Server
使用下列命令,以 參數所 --uri
指定的項目設定 Config Server。 此範例使用 Azure Spring Apps 的 Git 存放庫作為範例專案。
az spring config-server git set \
--name <Azure-Spring-Apps-instance-name> \
--uri https://github.com/Azure-Samples/azure-spring-apps-samples \
--search-paths steeltoe-sample/config
提示
如需使用 Config Server 私人存放庫的詳細資訊,請參閱 在 Azure Spring Apps 中設定受控 Spring Cloud Config Server。
啟用組態伺服器
使用下列命令來啟用 Config Server:
az spring config-server enable \
--resource-group <resource-group-name> \
--name <Azure-Spring-Apps-instance-name>
停用組態伺服器
使用下列命令來停用 Config Server:
az spring config-server disable \
--resource-group <resource-group-name> \
--name <Azure-Spring-Apps-instance-name>