LoginSignup
3
1

More than 5 years have passed since last update.

Azure Kubernetes Dashboardの起動

Posted at

概要

Microsoft Azure Kubernetes Dashboard の起動方法を紹介します。
image.png

1. AzureにKubernetes serviceを作成します。

image.png

2. Clusterができます。

image.png

3. Kubernetes ダッシュボードを表示をクリックすると手順が表示されます。

image.png
image.png

4 Azure CLI 2.0のインストール

5 Azure CLI 2.0の起動

image.png

6 ログイン

az login

image.png

7. CLI に kubectl がまだインストールされていない場合、次のコマンドを実行します。

azure-kubctlをインストールします。パスを設定します。

az aks install-cli
set path=%path%;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Users\admintemp\.azure-kubectl

image.png

8. 次のコマンドを実行して、クラスターの資格情報を取得します。

az aks get-credentials --resource-group test-snoro-aks --name cluster1

image.png

9. 次のコマンドを実行して、Kubernetes ダッシュボードを開きます。

az aks get-credentials --resource-group test-snoro-aks --name cluster1

Azure Kubernetes Dashboardが起動しました。
image.png

10. ノードが3つ出来ています。

image.png

Azure上では仮想マシンが3つできています。
image.png

OSもLinuxです。
image.png

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1