Skip to content

Commit 78a2b99

Browse files
authored
Merge pull request #94334 from jpconnock/spring-cloud-cli-ext
Updating CLI install command
2 parents 01617cb + 6a177e0 commit 78a2b99

9 files changed

+53
-60
lines changed

articles/spring-cloud/spring-cloud-howto-persistent-storage.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
title: How to use persistent storage in Azure Spring Cloud | Microsoft Docs
33
description: How to use persistent storage in Azure Spring Cloud
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: gwallace
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/07/2019
11+
ms.date: 10/31/2019
1212
ms.author: jeconnoc
1313

1414
---
@@ -51,6 +51,12 @@ When persistent storage is enabled, its size and path are shown both on this pag
5151

5252
## Use the Azure CLI to modify persistent storage
5353

54+
If necessary, install the Spring Cloud extension for the Azure CLI:
55+
56+
```azurecli
57+
az extension add --name spring-cloud
58+
```
59+
5460
Create an app with persistent disk enabled:
5561

5662
```azurecli

articles/spring-cloud/spring-cloud-howto-staging-environment.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Set up a staging environment in Azure Spring Cloud | Microsoft Docs
33
description: Learn how to use blue-green deployment with Azure Spring Cloud
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: gwallace
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/07/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515

@@ -28,18 +28,13 @@ If you have a different application that you'd like to use for this example, you
2828
2929
To complete this article:
3030

31-
1. [Install Git](https://git-scm.com/)
32-
1. [Install JDK 8](https://docs.microsoft.com/java/azure/jdk/?view=azure-java-stable)
33-
1. [Install Maven 3.0 or above](https://maven.apache.org/download.cgi)
34-
1. [Install the Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest)
35-
1. [Sign up for an Azure subscription](https://azure.microsoft.com/free/)
3631

3732
## Install the Azure CLI extension
3833

3934
Install the Azure Spring Cloud extension for the Azure CLI using the following command
4035

4136
```azurecli
42-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
37+
az extension add --name spring-cloud
4338
```
4439

4540
## View all deployments

articles/spring-cloud/spring-cloud-howto-start-stop-delete.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: How to start, stop, and delete your Azure Spring Cloud application | Microsoft Docs
33
description: How to start, stop, and delete your Azure Spring Cloud application
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: jeconnoc
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/07/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515
# How to start, stop, and delete your Azure Spring Cloud application
@@ -28,24 +28,30 @@ Once you have an application deployed, you can **Start**, **Stop**, and **Delete
2828
## Using the Azure CLI
2929

3030
> [!NOTE]
31-
> You can use optional parameters and configure defaults with the Azure CLI. Learn more about by reading our [reference documentation](spring-cloud-cli-reference.md).
31+
> You can use optional parameters and configure defaults with the Azure CLI. Learn more about by reading our [reference documentation](spring-cloud-cli-reference.md).
32+
33+
Install the Spring Cloud extension for the Azure CLI:
34+
35+
```azurecli
36+
az extension add --name spring-cloud
37+
```
3238

3339
* To start your application:
34-
```Azure CLI
40+
```azurecli
3541
az spring-cloud app start -n <application name> -g <resource group> -s <Azure Spring Cloud name>
3642
```
3743
3844
* To stop your application:
39-
```Azure CLI
45+
```azurecli
4046
az spring-cloud app stop -n <application name> -g <resource group> -s <Azure Spring Cloud name>
4147
```
4248
4349
* To restart your application:
44-
```Azure CLI
50+
```azurecli
4551
az spring-cloud app restart -n <application name> -g <resource group> -s <Azure Spring Cloud name>
4652
```
4753
4854
* To delete your application:
49-
```Azure CLI
55+
```azurecli
5056
az spring-cloud app delete -n <application name> -g <resource group> -s <Azure Spring Cloud name>
5157
```

articles/spring-cloud/spring-cloud-launch-from-source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: jpconnock
55

66
ms.service: spring-cloud
77
ms.topic: conceptual
8-
ms.date: 10/30/2019
8+
ms.date: 10/31/2019
99
ms.author: jeconnoc
1010
---
1111

@@ -45,7 +45,7 @@ Before you begin, ensure that your Azure subscription has the required dependenc
4545
Install the Azure Spring Cloud extension for the Azure CLI with the following command
4646

4747
```Azure CLI
48-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
48+
az extension add --name spring-cloud
4949
```
5050

5151
## Provision a service instance using the Azure CLI

articles/spring-cloud/spring-cloud-quickstart-launch-app-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Launch a Java Spring application using the Azure CLI
33
description: In this quickstart, you deploy a sample application to Azure Spring Cloud on the Azure CLI.
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: jeconnoc
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/04/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515
# Quickstart: Launch a Java Spring application using the Azure CLI
@@ -48,7 +48,7 @@ To complete this quickstart:
4848
Install the Azure Spring Cloud extension for the Azure CLI using the following command
4949

5050
```azurecli
51-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
51+
az extension add --name spring-cloud
5252
```
5353

5454
## Provision a service instance on the Azure CLI

articles/spring-cloud/spring-cloud-quickstart-launch-app-maven.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/30/2019
11+
ms.date: 10/31/2019
1212
ms.author: jeconnoc
1313

1414
---
@@ -45,7 +45,7 @@ To complete this quickstart:
4545
Install the Azure Spring Cloud extension for the Azure CLI by using the following command:
4646

4747
```Azure CLI
48-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
48+
az extension add --name spring-cloud
4949
```
5050

5151
## Provision a service instance on the Azure portal

articles/spring-cloud/spring-cloud-quickstart-launch-app-portal.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Launch an Azure Spring Cloud application using the Azure portal
33
description: Deploy a sample application to the Azure Spring Cloud using the Azure portal.
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: jeconnoc
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/04/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515
# Quickstart: Launch an Azure Spring Cloud application using the Azure portal
@@ -48,7 +48,7 @@ To complete this quickstart:
4848
Install the Azure Spring Cloud extension for the Azure CLI using the following command
4949

5050
```Azure CLI
51-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
51+
az extension add --name spring-cloud
5252
```
5353

5454
## Provision a service instance on the Azure portal

articles/spring-cloud/spring-cloud-tutorial-bind-mysql.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: How to bind Azure Database for MySQL to your Azure Spring Cloud application | Microsoft Docs
33
description: This article will show you how to bind Azure MySQL to your Azure Spring Cloud application
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: gwallace
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/07/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515

@@ -23,14 +23,7 @@ Azure Spring Cloud allows you to bind select Azure services to your applications
2323
* An Azure Database for MySQL account
2424
* Azure CLI
2525

26-
If necessary, install the Azure Spring Cloud extension for the Azure CLI using the following command:
27-
28-
```azurecli
29-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
30-
```
31-
32-
>[!TIP]
33-
> The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article. It has common Azure tools preinstalled, including the latest versions of Git, JDK, Maven, and the Azure CLI. If you are logged in to your Azure subscription, launch your [Azure Cloud Shell](https://shell.azure.com) from shell.azure.com. You can learn more about Azure Cloud Shell by [reading our documentation](../cloud-shell/overview.md)
26+
If you do not have a deployed Azure Spring Cloud instance, follow the steps in this [quickstart](spring-cloud-quickstart-launch-app-portal.md) to deploy your first Spring Cloud app.
3427

3528
## Bind Azure Database for MySQL
3629

articles/spring-cloud/spring-cloud-tutorial-bind-redis.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: How to bind Azure Cache for Redis to your Azure Spring Cloud application | Microsoft Docs
33
description: Learn how to bind Azure Cache for Redis to your Azure Spring Cloud application
44
services: spring-cloud
5-
author: v-vasuke
6-
manager: gwallace
5+
author: jpconnock
6+
manager: barbkess
77
editor: ''
88

99
ms.service: spring-cloud
1010
ms.topic: quickstart
11-
ms.date: 10/06/2019
12-
ms.author: v-vasuke
11+
ms.date: 10/31/2019
12+
ms.author: jeconnoc
1313

1414
---
1515

@@ -23,14 +23,7 @@ Azure Spring Cloud allows you to bind select Azure services to your applications
2323
* An Azure Cache for Redis service instance
2424
* Azure Spring Cloud extension for the Azure CLI
2525

26-
If necessary, install the Azure Spring Cloud extension for the Azure CLI using the following command:
27-
28-
```azurecli
29-
az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
30-
```
31-
32-
>[!TIP]
33-
> The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article. It has common Azure tools preinstalled, including the latest versions of Git, JDK, Maven, and the Azure CLI. If you are logged in to your Azure subscription, launch your [Azure Cloud Shell](https://shell.azure.com) from shell.azure.com. You can learn more about Azure Cloud Shell by [reading our documentation](../cloud-shell/overview.md)
26+
If you do not have a deployed Azure Spring Cloud instance, follow the steps in this [quickstart](spring-cloud-quickstart-launch-app-portal.md) to deploy your first Spring Cloud app.
3427

3528
## Bind Azure Cache for Redis
3629

0 commit comments

Comments
 (0)