Skip to content

Commit b374017

Browse files
Merge pull request #51061 from KarlErickson/karler-metadata
BULK UPDATE: changed author metadata to reassign modules to SMEs
2 parents decd8f1 + c0f7ce5 commit b374017

File tree

115 files changed

+1655
-1765
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+1655
-1765
lines changed

learn-pr/advocates/create-hello-world-app-service/1-introduction.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.introduction
33
title: Introduction
44
metadata:
55
description: Module introduction
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content

learn-pr/advocates/create-hello-world-app-service/2-azure-app-service-explanation.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.what-is-app-service
33
title: Introduction to Azure App Service
44
metadata:
55
description: What is Azure App Service? Find out more in this module.
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content

learn-pr/advocates/create-hello-world-app-service/3-exercise-create-simple-java-app.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.create-web-app
33
title: "Exercise: Create a Simple Java Web App"
44
metadata:
55
description: Create a simple Java web app and deploy it locally.
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content

learn-pr/advocates/create-hello-world-app-service/4-exercise-deploy-to-app-service.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.deploy-web-app
33
title: "Exercise: Deploy a web app to Azure App Service"
44
metadata:
55
description: Deploy the web app from the previous section to App Service.
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content

learn-pr/advocates/create-hello-world-app-service/5-knowledge-check.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.knowledge-check
33
title: Module assessment
44
metadata:
55
description: Knowledge Check
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content

learn-pr/advocates/create-hello-world-app-service/6-summary.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ uid: learn.azure.create-hello-app-service.summary
33
title: Summary
44
metadata:
55
description: Summary and cleanup of Azure resources.
6-
author: KarlErickson
7-
ms.author: karler
8-
ms.reviewer: ayangupta
6+
author: ayangupt
7+
ms.author: ayangupta
98
ms.date: 12/11/2024
109
ms.topic: unit
1110
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java, linux-related-content
Lines changed: 40 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
1-
### YamlMime:Module
2-
uid: learn.azure.create-hello-app-service
3-
metadata:
4-
title: Deploy a simple Java Web App to Azure App Service
5-
description: Learn how to create a Java web application and deploy it to Azure App Service.
6-
ms.date: 12/11/2024
7-
author: KarlErickson
8-
ms.author: karler
9-
ms.reviewer: ayangupta
10-
ms.topic: module
11-
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java
12-
ms.service: azure-app-service
13-
ms.subservice: web-apps
14-
title: Deploy a simple Java web app to Azure App Service
15-
summary: In this module, you explore how to create, configure, and deploy a simple Java web application to Azure App Service using Maven.
16-
abstract: |
17-
After you complete this module, you'll be able to:
18-
- Create a simple Hello World Java app
19-
- Configure your Java project to deploy to Azure App Service.
20-
- Deploy your Java web application to Azure App Service.
21-
iconUrl: /training/achievements/build-webapp-java-tomcat.svg
22-
levels:
23-
- beginner
24-
roles:
25-
- developer
26-
products:
27-
- azure
28-
prerequisites: |
29-
- Your own Azure subscription.
30-
- The [Azure CLI](/cli/azure/install-azure-cli) installed on your computer.
31-
- [JDK 17](https://www.oracle.com/java/technologies/downloads/).
32-
- [Maven 3.9.9](https://maven.apache.org/download.cgi?.=).
33-
units:
34-
- learn.azure.create-hello-app-service.introduction
35-
- learn.azure.create-hello-app-service.what-is-app-service
36-
- learn.azure.create-hello-app-service.create-web-app
37-
- learn.azure.create-hello-app-service.deploy-web-app
38-
- learn.azure.create-hello-app-service.knowledge-check
39-
- learn.azure.create-hello-app-service.summary
40-
badge:
41-
uid: learn.azure.create-hello-app-service.badge
1+
### YamlMime:Module
2+
uid: learn.azure.create-hello-app-service
3+
metadata:
4+
title: Deploy a simple Java Web App to Azure App Service
5+
description: Learn how to create a Java web application and deploy it to Azure App Service.
6+
ms.date: 12/11/2024
7+
author: ayangupt
8+
ms.author: ayangupta
9+
ms.topic: module
10+
ms.custom: team=cloud_advocates, devx-track-java, devx-track-extended-java
11+
ms.service: azure-app-service
12+
ms.subservice: web-apps
13+
title: Deploy a simple Java web app to Azure App Service
14+
summary: In this module, you explore how to create, configure, and deploy a simple Java web application to Azure App Service using Maven.
15+
abstract: |
16+
After you complete this module, you'll be able to:
17+
- Create a simple Hello World Java app
18+
- Configure your Java project to deploy to Azure App Service.
19+
- Deploy your Java web application to Azure App Service.
20+
iconUrl: /training/achievements/build-webapp-java-tomcat.svg
21+
levels:
22+
- beginner
23+
roles:
24+
- developer
25+
products:
26+
- azure
27+
prerequisites: |
28+
- Your own Azure subscription.
29+
- The [Azure CLI](/cli/azure/install-azure-cli) installed on your computer.
30+
- [JDK 17](https://www.oracle.com/java/technologies/downloads/).
31+
- [Maven 3.9.9](https://maven.apache.org/download.cgi?.=).
32+
units:
33+
- learn.azure.create-hello-app-service.introduction
34+
- learn.azure.create-hello-app-service.what-is-app-service
35+
- learn.azure.create-hello-app-service.create-web-app
36+
- learn.azure.create-hello-app-service.deploy-web-app
37+
- learn.azure.create-hello-app-service.knowledge-check
38+
- learn.azure.create-hello-app-service.summary
39+
badge:
40+
uid: learn.azure.create-hello-app-service.badge

learn-pr/advocates/create-java-webapp-to-app-service-linux/1-introduction.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ metadata:
55
title: Introduction
66
description: Introduces a training module that shows you how to deploy Java-based web apps.
77
ms.date: 02/20/2025
8-
author: KarlErickson
9-
ms.author: karler
10-
ms.reviewer: ayangupta
8+
author: ayangupt
9+
ms.author: ayangupta
1110
ms.topic: unit
1211
ms.custom: team=cloud_advocates, devx-track-extended-java, devx-track-java, linux-related-content
1312
durationInMinutes: 2

learn-pr/advocates/create-java-webapp-to-app-service-linux/2-azure-app-service-explanation.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ metadata:
55
title: Introduction to Azure App Service
66
description: Describes Azure App Service.
77
ms.date: 02/20/2025
8-
author: KarlErickson
9-
ms.author: karler
10-
ms.reviewer: ayangupta
8+
author: ayangupt
9+
ms.author: ayangupta
1110
ms.topic: unit
1211
ms.custom: team=cloud_advocates, devx-track-extended-java, devx-track-java, linux-related-content
1312
durationInMinutes: 2

learn-pr/advocates/create-java-webapp-to-app-service-linux/3-exercise-create-simple-java-app.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ metadata:
55
title: Exercise - Create a Simple Tomcat Java Web App
66
description: Shows you how to create a simple Java web app and deploy it locally.
77
ms.date: 02/20/2025
8-
author: KarlErickson
9-
ms.author: karler
10-
ms.reviewer: ayangupta
8+
author: ayangupt
9+
ms.author: ayangupta
1110
ms.topic: unit
1211
ms.custom: team=cloud_advocates, devx-track-extended-java, devx-track-java, linux-related-content
1312
durationInMinutes: 10

0 commit comments

Comments
 (0)