1
1
---
2
- title : How to deploy Azure Spring Cloud with Azure PowerShell
3
- description : How to deploy Azure Spring Cloud with Azure PowerShell
2
+ title : Create and deploy applications in Azure Spring Cloud using PowerShell
3
+ description : How to create and deploy applications in Azure Spring Cloud using PowerShell
4
4
author : karlerickson
5
5
ms.author : karler
6
6
ms.topic : conceptual
7
7
ms.service : spring-cloud
8
8
ms.devlang : azurepowershell
9
- ms.date : 11/16/2020
9
+ ms.date : 2/15/2022
10
10
ms.custom : devx-track-azurepowershell
11
11
---
12
12
13
- # Deploy Azure Spring Cloud with Azure PowerShell
13
+ # Create and deploy applications using PowerShell
14
14
15
- This article describes how you can create an instance of Azure Spring Cloud using the
15
+ This article describes how you can create and deploy an app in Azure Spring Cloud using the
16
16
[ Az.SpringCloud] ( /powershell/module/Az.SpringCloud ) PowerShell module.
17
17
18
18
## Requirements
@@ -23,9 +23,9 @@ before you begin.
23
23
[ !INCLUDE [ azure-powershell-requirements-no-header.md] ( ../../includes/azure-powershell-requirements-no-header.md )]
24
24
25
25
> [ !IMPORTANT]
26
- > While the ** Az.SpringCloud** PowerShell module is in preview, you must install it separately using
26
+ > While the ** Az.SpringCloud** PowerShell module is in preview, you must install it using
27
27
> the ` Install-Module ` cmdlet. After this PowerShell module becomes generally available, it will be
28
- > part of future Az PowerShell module releases and available by default from within Azure Cloud
28
+ > part of future Az PowerShell releases and available by default from within Azure Cloud
29
29
> Shell.
30
30
31
31
``` azurepowershell-interactive
@@ -64,21 +64,21 @@ resource group.
64
64
New-AzSpringCloud -ResourceGroupName <resource group name> -name <service instance name> -Location eastus
65
65
```
66
66
67
- ## Create a new Azure Spring Cloud app
67
+ ## Create a new application in Azure Spring Cloud
68
68
69
69
To create a new App, you use the
70
70
[ New-AzSpringCloudApp] ( /powershell/module/az.springcloud/new-azspringcloudapp ) cmdlet. The following
71
- example creates an Azure Spring Cloud app named ` gateway ` .
71
+ example creates an app in Azure Spring Cloud named ` gateway ` .
72
72
73
73
``` azurepowershell-interactive
74
74
New-AzSpringCloudApp -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway
75
75
```
76
76
77
- ## Create a new Azure Spring Cloud deployment
77
+ ## Create a new app deployment in Azure Spring Cloud
78
78
79
- To create a new Deployment, you use the
79
+ To create a new app Deployment, you use the
80
80
[ New-AzSpringCloudAppDeployment] ( /powershell/module/az.springcloud/new-azspringcloudappdeployment )
81
- cmdlet. The following example creates an Azure Spring Cloud deployment named ` default ` for the
81
+ cmdlet. The following example creates an app deployment in Azure Spring Cloud named ` default ` for the
82
82
` gateway ` app.
83
83
84
84
``` azurepowershell-interactive
@@ -95,19 +95,19 @@ example retrieves information about the specified Azure Spring Cloud service.
95
95
Get-AzSpringCloud -ResourceGroupName <resource group name> -ServiceName <service instance name>
96
96
```
97
97
98
- ## Get an Azure Spring Cloud app
98
+ ## Get an application in Azure Spring Cloud
99
99
100
- To get an Azure Spring Cloud app and its properties, you use the
100
+ To get an app and its properties in Azure Spring Cloud , you use the
101
101
[ Get-AzSpringCloudApp] ( /powershell/module/az.springcloud/get-azspringcloudapp ) cmdlet. The following
102
- example retrieves information about the ` gateway ` Spring Cloud app .
102
+ example retrieves information about the app ` gateway ` .
103
103
104
104
``` azurepowershell-interactive
105
105
Get-AzSpringCloudApp -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway
106
106
```
107
107
108
- ## Get an Azure Spring Cloud deployment
108
+ ## Get an app deployment in Azure Spring Cloud
109
109
110
- To get an Azure Spring Cloud deployment and its properties, you use the
110
+ To get an app deployment and its properties in Azure Spring Cloud , you use the
111
111
[ Get-AzSpringCloudAppDeployment] ( /powershell/module/az.springcloud/get-azspringcloudappdeployment )
112
112
cmdlet. The following example retrieves information about the ` default ` Spring Cloud deployment.
113
113
@@ -120,20 +120,20 @@ Get-AzSpringCloudAppDeployment -ResourceGroupName <resource group name> -Service
120
120
If the resources created in this article aren't needed, you can delete them by running the following
121
121
examples.
122
122
123
- ### Delete an Azure Spring Cloud deployment
123
+ ### Delete an app deployment in Azure Spring Cloud
124
124
125
- To remove an Azure Spring Cloud deployment , you use the
125
+ To remove an app deployment in Azure Spring Cloud, you use the
126
126
[ Remove-AzSpringCloudAppDeployment] ( /powershell/module/az.springcloud/remove-azspringcloudappdeployment )
127
- cmdlet. The following example deletes an Azure Spring Cloud app deployment named ` default ` for the
127
+ cmdlet. The following example deletes an app deployed in Azure Spring Cloud named ` default ` for the
128
128
specified service and app.
129
129
130
130
``` azurepowershell-interactive
131
131
Remove-AzSpringCloudAppDeployment -ResourceGroupName <resource group name> -ServiceName <service instance name> -AppName gateway -DeploymentName default
132
132
```
133
133
134
- ### Delete an Azure Spring Cloud app
134
+ ### Delete an app in Azure Spring Cloud
135
135
136
- To remove a Spring Cloud app , you use the
136
+ To remove an app in Azure Spring Cloud, you use the
137
137
[ Remove-AzSpringCloudApp] ( /powershell/module/Az.SpringCloud/remove-azspringcloudapp ) cmdlet. The
138
138
following example deletes the ` gateway ` app in the specified service and resource group.
139
139
0 commit comments