You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/aks-extension-vs-code-draft-deployment.md
+31-12Lines changed: 31 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,24 +19,43 @@ Before you begin, make sure you have the following resources:
19
19
* An active folder with code open in Visual Studio Code.
20
20
* The Azure Kubernetes Service (AKS) extension for Visual Studio Code downloaded. For more information, see [Install the Azure Kubernetes Service (AKS) extension for Visual Studio Code][install-aks-vscode].
21
21
22
-
## Create a Kubernetes deployment with the Azure Kubernetes Service (AKS) extension
22
+
## Create a Kubernetes deployment using the Azure Kubernetes Service (AKS) extension
23
23
24
-
To use the command pallete to create a Kubernetes deployment, press "crtl + shift + p" on your keyboard to open the command pallete. Then type "Automated Deployments: Create a Deployment". Once the screen pops up, the following information must be filled out.
24
+
You can access the screen to create a Kubernetes deployment using the command palette or the explorer view.
25
25
26
-
To use the explorer view, right click on the explorer pane where your active folder is open and select "Create a Deployment".
26
+
### [Command palette](#tab/command-palette)
27
27
28
-
Both methods will bring you to a screen where the following information must be filled out.
28
+
1. On your keyboard, press `Ctrl+Shift+P` to open the command palette.
29
+
2. In the search bar, search for and select **Automated Deployments: Create a Deployment**.
30
+
3. Enter the following information:
29
31
30
-
***Subscription**: Choose your Azure subscription.
31
-
***Location**: Choose a location where you would like to save your Kubernetes deployment files.
32
-
***Deployment options**: Choose between `Kubernetes manifests`, `Helm`, or `Kustmoize` for your deployment options.
33
-
***Target port**: The port in which your applications listens to in your deployment. This port usually matches what is exposted in your Dockerfile.
34
-
***Service port**: The port in which the service will listen to for incoming traffic.
35
-
***Namespace**: Namespace in which your application will be deployed into.
32
+
***Subscription**: Select your Azure subscription.
33
+
***Location**: Select a location where you want to save your Kubernetes deployment files.
34
+
***Deployment options**: Select `Kubernetes manifests`, `Helm`, or `Kustomize`.
35
+
***Target port**: Select the port in which your applications listen to in your deployment. This port usually matches what is exposed in your Dockerfile.
36
+
***Service port**: Select the port in which the service listens to for incoming traffic.
37
+
***Namespace**: Select the namespace in which your application will be deployed into.
36
38
37
-
Once all information is filled out, press create. Your deployment files will now be created in your app folder.
39
+
4. Select **Create**.
38
40
39
-
For more information, see [AKS extension for Visual Studio Code features](https://code.visualstudio.com/docs/azure/aksextensions#_features).
41
+
42
+
### [Explorer view](#tab/explorer-view)
43
+
44
+
1. Right click on the explorer pane where your active folder is open and select **Create a Deployment**.
45
+
2. Enter the following information:
46
+
47
+
***Subscription**: Select your Azure subscription.
48
+
***Location**: Select a location where you want to save your Kubernetes deployment files.
49
+
***Deployment options**: Select `Kubernetes manifests`, `Helm`, or `Kustomize`.
50
+
***Target port**: Select the port in which your applications listen to in your deployment. This port usually matches what is exposed in your Dockerfile.
51
+
***Service port**: Select the port in which the service listens to for incoming traffic.
52
+
***Namespace**: Select the namespace in which your application will be deployed into.
53
+
54
+
3. Select **Create**.
55
+
56
+
---
57
+
58
+
For more information, see [AKS extension for Visual Studio Code features][aks-vscode-features].
0 commit comments