@@ -32,9 +32,9 @@ In this tutorial, you'll complete these tasks:
32
32
> * Create an Azure service principal so Jenkins
33
33
> can access Azure without using your credentials.
34
34
> * Add your service principal to Jenkins.
35
- > * Create a Jenkins pipeline for building and deploying
35
+ > * Create the Jenkins pipeline that builds and deploys
36
36
> the sample app each time you update the app in GitHub.
37
- > * Create a build and deployment script that your Jenkins pipeline can use .
37
+ > * Create build and deployment files for your Jenkins pipeline.
38
38
> * Point your Jenkins pipeline at the build and deployment script.
39
39
> * Deploy your sample app to Azure by running a manual build.
40
40
> * Push an app update in GitHub, which triggers Jenkins to build and redeploy to Azure.
@@ -163,7 +163,7 @@ to Azure resources. To create this service principal, run the Azure CLI command
163
163
either from your local command line or Azure Cloud Shell, for example:
164
164
165
165
``` azurecli-interactive
166
- az ad sp create-for-rbac --name "yourServicePrincipalName " --password yourSecurePassword
166
+ az ad sp create-for-rbac --name "yourAzureServicePrincipalName " --password yourSecurePassword
167
167
```
168
168
169
169
Make sure you use quotation marks around the service principal name.
@@ -224,7 +224,7 @@ choose **Verify Service Principal**. When you're done, choose **OK**.
224
224
225
225
Next, create the Jenkins pipeline that builds and deploys your app.
226
226
227
- ## Create pipeline
227
+ ## Create Jenkins pipeline
228
228
229
229
In Jenkins, create the pipeline job for building and deploying your app.
230
230
@@ -262,7 +262,7 @@ can deploy to Azure without using your own credentials.
262
262
263
263
Next, create build and deployment scripts for Jenkins.
264
264
265
- ## Create scripts
265
+ ## Create build and deployment files
266
266
267
267
Now create the files that Jenkins uses for building and deploying your app.
268
268
0 commit comments