Skip to content

Commit 90278ac

Browse files
committed
Fix metadata, TOC, and include folder
1 parent 03865d0 commit 90278ac

34 files changed

+60
-37
lines changed

connected-environment/docfx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"breadcrumb_path": "/visualstudio/connected-environment/breadcrumb/toc.json",
4242
"extendBreadcrumb": true,
4343
"ms.service": "connected-environment",
44-
"ROBOTS": "NOINDEX,NOFOLLOW"
44+
"ROBOTS": "NOINDEX,NOFOLLOW",
45+
"titleSuffix": "Visual Studio Connected Environment"
4546
},
4647
"fileMetadata": {},
4748
"template": [],

connected-environment/get-started-netcore-01.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ manager: "ghogen"
1111
---
1212
# Get Started on Connected Environment with .NET Core
1313

14-
[!INCLUDE[](common/learning-objectives.md)]
14+
[!INCLUDE[](includes/learning-objectives.md)]
1515

16-
[!INCLUDE[](common/see-troubleshooting.md)]
16+
[!INCLUDE[](includes/see-troubleshooting.md)]
1717

18-
[!INCLUDE[](common/install-cli-and-vscode.md)]
18+
[!INCLUDE[](includes/install-cli-and-vscode.md)]
1919

2020
We're now ready to create a Kubernetes-based development environment in Azure.
2121

connected-environment/get-started-netcore-02.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Install tools](get-started-netcore-01.md)
1515

16-
[!INCLUDE[](common/sign-into-azure.md)]
16+
[!INCLUDE[](includes/sign-into-azure.md)]
1717

18-
[!INCLUDE[](common/create-env-cli.md)]
18+
[!INCLUDE[](includes/create-env-cli.md)]
1919

2020
While we're waiting for the environment to be create, let's start developing code.
2121

connected-environment/get-started-netcore-03.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ dotnet new mvc --name webfrontend
2121

2222
Alternatively, **download sample code from GitHub** by navigating to https://github.com/Azure/vsce and select **Clone or Download** to download the GitHub repository to your local environment. The code for this guide is in `vsce/samples/dotnetcore/getting-started/webfrontend`.
2323

24-
[!INCLUDE[](common/vsce-init.md)]
24+
[!INCLUDE[](includes/vsce-init.md)]
2525

26-
[!INCLUDE[](common/ensure-env-created.md)]
26+
[!INCLUDE[](includes/ensure-env-created.md)]
2727

28-
[!INCLUDE[](common/build-and-run-in-k8s-cli.md)]
28+
[!INCLUDE[](includes/build-and-run-in-k8s-cli.md)]
2929

3030
## Update a content file
3131
Connected Environment isn't just about getting code running in Kubernetes - it's about enabling you to quickly and iteratively see your code changes take effect in a Kubernetes environment in the cloud.

connected-environment/get-started-netcore-04.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Create an ASP.NET Core Web App](get-started-netcore-03.md)
1515

16-
[!INCLUDE[](common/debug-intro.md)]
16+
[!INCLUDE[](includes/debug-intro.md)]
1717

18-
[!INCLUDE[](common/init-debug-assets-vscode.md)]
18+
[!INCLUDE[](includes/init-debug-assets-vscode.md)]
1919

2020

2121
## Select the VSCE debug configuration
@@ -33,7 +33,7 @@ Hit **F5** to debug your code in Kubernetes.
3333

3434
As with the `up` command, code is synced to the development environment, and a container is built and deployed to Kubernetes. This time, of course, the debugger is attached to the remote container.
3535

36-
[!INCLUDE[](common/tip-vscode-status-bar-url.md)]
36+
[!INCLUDE[](includes/tip-vscode-status-bar-url.md)]
3737

3838
Set a breakpoint in a server-side code file, for example within the `Index()` function in the `Controllers/HomeController.cs` source file. Refreshing the browser page causes the breakpoint to hit.
3939

connected-environment/get-started-netcore-06.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager: "ghogen"
1313

1414
Previous step: [Call another container](get-started-netcore-05.md)
1515

16-
[!INCLUDE[](common/team-development-1.md)]
16+
[!INCLUDE[](includes/team-development-1.md)]
1717

1818
Let's see it in action:
1919
1. Go to the VS Code window for `mywebapi` and make a code edit to the `string Get(int id)` method, for example:
@@ -26,7 +26,7 @@ public string Get(int id)
2626
}
2727
```
2828

29-
[!INCLUDE[](common/team-development-2.md)]
29+
[!INCLUDE[](includes/team-development-2.md)]
3030

3131
> [!div class="nextstepaction"]
3232
> [Next](get-started-netcore-07.md)

connected-environment/get-started-netcore-07.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Learn about team development](get-started-netcore-06.md)
1515

16-
[!INCLUDE[](common/well-done.md)]
16+
[!INCLUDE[](includes/well-done.md)]
1717

18-
[!INCLUDE[](common/take-survey.md)]
18+
[!INCLUDE[](includes/take-survey.md)]
1919

20-
[!INCLUDE[](common/clean-up.md)]
20+
[!INCLUDE[](includes/clean-up.md)]
2121

connected-environment/get-started-netcore-visualstudio-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this guide, you will learn how to:
1818
1. Independently develop two separate services, and used Kubernetes' DNS service discovery to make a call to another service.
1919
1. Productively develop and test your code in a team environment.
2020

21-
[!INCLUDE[](common/see-troubleshooting.md)]
21+
[!INCLUDE[](includes/see-troubleshooting.md)]
2222

2323
## Install the Connected Environment CLI
2424
Connected Environment requires minimal local machine setup. Most of your development environment's configuration gets stored in the cloud, and is shareable with other users.

connected-environment/get-started-netcore-visualstudio-07.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Learn about team development](get-started-netcore-visualstudio-06.md)
1515

16-
[!INCLUDE[](common/well-done.md)]
16+
[!INCLUDE[](includes/well-done.md)]
1717

18-
[!INCLUDE[](common/take-survey.md)]
18+
[!INCLUDE[](includes/take-survey.md)]
1919

20-
[!INCLUDE[](common/clean-up.md)]
20+
[!INCLUDE[](includes/clean-up.md)]
2121

connected-environment/get-started-nodejs-01.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ manager: "ghogen"
1111
---
1212
# Get Started on Connected Environment with Node.js
1313

14-
[!INCLUDE[](common/learning-objectives.md)]
14+
[!INCLUDE[](includes/learning-objectives.md)]
1515

16-
[!INCLUDE[](common/see-troubleshooting.md)]
16+
[!INCLUDE[](includes/see-troubleshooting.md)]
1717

18-
[!INCLUDE[](common/install-cli-and-vscode.md)]
18+
[!INCLUDE[](includes/install-cli-and-vscode.md)]
1919

2020

2121
We're now ready to create a Kubernetes-based development environment in Azure.

connected-environment/get-started-nodejs-02.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Install tools](get-started-nodejs-01.md)
1515

16-
[!INCLUDE[](common/sign-into-azure.md)]
16+
[!INCLUDE[](includes/sign-into-azure.md)]
1717

18-
[!INCLUDE[](common/create-env-cli.md)]
18+
[!INCLUDE[](includes/create-env-cli.md)]
1919

2020
While we're waiting for the environment to be create, let's start developing code!
2121

connected-environment/get-started-nodejs-03.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Previous step: [Create a Kubernetes development environment in Azure](get-starte
1616
## Create a Node.js Web App
1717
Download code from GitHub by navigating to https://github.com/Azure/vsce and select **Clone or Download** to download the GitHub repository to your local environment. The code for this guide is in `vsce/samples/nodejs/getting-started/webfrontend`.
1818

19-
[!INCLUDE[](common/vsce-init.md)]
19+
[!INCLUDE[](includes/vsce-init.md)]
2020

21-
[!INCLUDE[](common/ensure-env-created.md)]
21+
[!INCLUDE[](includes/ensure-env-created.md)]
2222

23-
[!INCLUDE[](common/build-and-run-in-k8s-cli.md)]
23+
[!INCLUDE[](includes/build-and-run-in-k8s-cli.md)]
2424

2525
## Update a content file
2626
Connected Environment isn't just about getting code running in Kubernetes - it's about enabling you to quickly and iteratively see your code changes take effect in a Kubernetes environment in the cloud.

connected-environment/get-started-nodejs-04.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ manager: "ghogen"
1313

1414
Previous step: [Create a Node.js container in Kubernetes](get-started-nodejs-03.md)
1515

16-
[!INCLUDE[](common/debug-intro.md)]
16+
[!INCLUDE[](includes/debug-intro.md)]
1717

18-
[!INCLUDE[](common/init-debug-assets-vscode.md)]
18+
[!INCLUDE[](includes/init-debug-assets-vscode.md)]
1919

2020

2121
## Select the VSCE debug configuration
@@ -32,7 +32,7 @@ Hit **F5** to debug your code in Kubernetes!
3232

3333
Similar to the `up` command, code is synced to the development environment when you start debugging, and a container is built and deployed to Kubernetes. This time, of course, the debugger is attached to the remote container.
3434

35-
[!INCLUDE[](common/tip-vscode-status-bar-url.md)]
35+
[!INCLUDE[](includes/tip-vscode-status-bar-url.md)]
3636

3737
Set a breakpoint in a server-side code file, for example within the `app.get('/api'...` in `server.js`. Refresh the browser page, or press the 'Say It Again' button, and you should hit the breakpoint and be able to step through code.
3838

connected-environment/get-started-nodejs-06.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager: "ghogen"
1313

1414
Previous step: [Call a service running in a separate container](get-started-nodejs-05.md)
1515

16-
[!INCLUDE[](common/team-development-1.md)]
16+
[!INCLUDE[](includes/team-development-1.md)]
1717

1818
Let's see it in action:
1919
1. Go to the VS Code window for `mywebapi` and make a code edit to the default GET `/` handler, for example:
@@ -24,7 +24,7 @@ app.get('/', function (req, res) {
2424
});
2525
```
2626

27-
[!INCLUDE[](common/team-development-2.md)]
27+
[!INCLUDE[](includes/team-development-2.md)]
2828

2929
> [!div class="nextstepaction"]
3030
> [Next](get-started-nodejs-07.md)

connected-environment/get-started-nodejs-07.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ manager: "ghogen"
1313

1414
Previous step: [Learn about team development](get-started-nodejs-06.md)
1515

16-
[!INCLUDE[](common/well-done.md)]
16+
[!INCLUDE[](includes/well-done.md)]
1717

18-
[!INCLUDE[](common/take-survey.md)]
18+
[!INCLUDE[](includes/take-survey.md)]
1919

20-
[!INCLUDE[](common/clean-up.md)]
20+
[!INCLUDE[](includes/clean-up.md)]

connected-environment/how-to/share-dev-environment.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
---
2+
title: "How to share a development environment | Microsoft Docs"
3+
author: "johnsta"
4+
ms.author: "johnsta"
5+
ms.date: "3/12/2018"
6+
ms.topic: "article"
7+
ms.technology: "vsce-kubernetes"
8+
description: "Rapid Kubernetes development with containers and microservices on Azure"
9+
keywords: "Docker, Kubernetes, Azure, AKS, Azure Container Service, containers"
10+
manager: "ghogen"
11+
---
112
# Share a Development Environment
213

314
With Connected Environment, you can share your development environment with others on your team. Each developer can work in their own space without fear of breaking others. Also, working together in one environment can enable you to test code end-to-end without having to create mocks or simulate dependencies. See the [Learn about team development](../get-started-nodejs-06.md) guide for more information.

connected-environment/how-to/use-kubectl-with-vsce.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
---
2+
title: "How to use kubectl with a Connected Environment | Microsoft Docs"
3+
author: "johnsta"
4+
ms.author: "johnsta"
5+
ms.date: "03/12/2018"
6+
ms.topic: "article"
7+
ms.technology: "vsce-kubernetes"
8+
description: "Rapid Kubernetes development with containers and microservices on Azure"
9+
keywords: "Docker, Kubernetes, Azure, AKS, Azure Container Service, containers"
10+
manager: "ghogen"
11+
---
112
# Use `kubectl` with a Connected Environment
213

314
You can access the Kubernetes cluster within a Connected Environment, and use existing Kubernetes tools like `kubectl`.

0 commit comments

Comments
 (0)