fix some styling error

This commit is contained in:
Rieon 2017-08-06 22:34:47 +08:00 committed by GitHub
parent e283f2ec2a
commit 37918dbff7

View File

@ -19,16 +19,14 @@ Azure 云控制台是一个免费的 Bash shell ,你可以直接在 Azure 网
[![ Cloud Shell 截图](https://docs.microsoft.com/en-us/azure/includes/media/cloud-shell-try-it/cloud-shell-safari.png)][7]
此快速入门教程所用的 Azure CLI 的版本最低要求为 2.0.4 。如果您选择在本地安装和使用 CLI 工具,请运行`az --version' 来检查已安装的版本。 如果您需要安装或升级请参阅[安装 Azure CLI 2.0 ] [8]。
此快速入门教程所用的 Azure CLI 的版本最低要求为 2.0.4 。如果您选择在本地安装和使用 CLI 工具,请运行 `az --version` 来检查已安装的版本。 如果您需要安装或升级请参阅[安装 Azure CLI 2.0 ][8]。
### 创建一个资源组
使用 [az group create] 命令[9]创建一个资源组,一个 Azure 资源组是 Azure 资源部署和管理的逻辑组。
使用 [az group create][9] 命令创建一个资源组,一个 Azure 资源组是 Azure 资源部署和管理的逻辑组。
以下示例在 _eastus_ 位置中创建名为 _myResourceGroup_ 的资源组。
Azure CLICopyTry It
```
az group create --name myResourceGroup --location eastus
@ -36,7 +34,6 @@ az group create --name myResourceGroup --location eastus
输出:
JSONCopy
```
{
@ -72,7 +69,6 @@ az acs create --orchestrator-type=kubernetes --resource-group myResourceGroup --
要配置 kubectl 连接到您的 Kubernetes 群集,请运行 [az acs kubernetes get-credentials][13] 命令下载凭据并配置 Kubernetes CLI 以使用它们。
Azure CLICopyTry It
```
az acs kubernetes get-credentials --resource-group=myResourceGroup --name=myK8sCluster
@ -81,7 +77,6 @@ az acs kubernetes get-credentials --resource-group=myResourceGroup --name=myK8sC
要验证与集群的连接,请使用 [kubectl get][14] 命令查看集群节点的列表。
Azure CLICopyTry It
```
kubectl get nodes
@ -90,7 +85,6 @@ kubectl get nodes
输出:
bashCopy
```
NAME STATUS AGE VERSION
@ -107,7 +101,6 @@ Kubernetes 清单文件为集群定义了一个所需的状态,包括了集群
创建一个名为 `azure-vote.yaml` ,将下面的内容拷贝到 YAML 中。
yamlCopy
```
apiVersion: apps/v1beta1
@ -173,8 +166,6 @@ spec:
使用 [kubectl create][15] 命令来运行该应用程序。
Azure CLICopyTry It
```
kubectl create -f azure-vote.yaml
@ -182,7 +173,6 @@ kubectl create -f azure-vote.yaml
输出:
bashCopy
```
deployment "azure-vote-back" created
@ -208,8 +198,6 @@ kubectl get service azure-vote-front --watch
Initially the EXTERNAL-IP for the  _azure-vote-front_  service appears as  _pending_ . Once the EXTERNAL-IP address has changed from  _pending_  to an  _IP address_ , use `CTRL-C` to stop the kubectl watch process.
最初_azure-vote-front_ 服务的 EXTERNAL-IP 显示为 _pending_ 。 一旦 EXTERNAL-IP 地址从 _pending_ 变成一个具体的IP地址请使用 “CTRL-C” 来停止 kubectl 监视进程。
bashCopy
```
azure-vote-front 10.0.34.242 <pending> 80:30676/TCP 7s
azure-vote-front 10.0.34.242 52.179.23.131 80:30676/TCP 2m
@ -225,7 +213,6 @@ You can now browse to the external IP address to see the Azure Vote App.
当不再需要集群时,可以使用 [az group delete][18] 命令删除资源组,容器服务和所有相关资源。
Azure CLICopyTry It
```
az group delete --name myResourceGroup --yes --no-wait