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/virtual-network/deploy-container-networking-docker-linux.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.custom: template-how-to
12
12
13
13
# Deploy container networking for a stand-alone Linux Docker host
14
14
15
-
The Azure CNI plugin enables per container/pod networking for stand-alone docker hosts and Kubernetes clusters. In this article, you'll learn how to install and configure the CNI plugin for a standalone Linux Docker host.
15
+
The Azure CNI plugin enables per container/pod networking for stand-alone docker hosts and Kubernetes clusters. In this article, you learn how to install and configure the CNI plugin for a standalone Linux Docker host.
16
16
17
17
## Prerequisites
18
18
@@ -26,9 +26,9 @@ It can take a few minutes for the Bastion host to deploy. You can continue with
26
26
27
27
## Add IP configuration
28
28
29
-
The Azure CNI plugin allocates IP addresses to containers based on a pool of IP addresses you create on the virtual network interface of the virtual machine. For every container on the host, an IP configuration must exist on the virtual network interface. If the number of containers on the server outnumber the IP configurations on the virtual network interface, the container will start but won't have an IP address.
29
+
The Azure CNI plugin allocates IP addresses to containers based on a pool of IP addresses you create on the virtual network interface of the virtual machine. For every container on the host, an IP configuration must exist on the virtual network interface. If the number of containers on the server outnumber the IP configurations on the virtual network interface, the container starts but doesn't have an IP address.
30
30
31
-
In this section, you'll add an IP configuration to the virtual network interface of the virtual machine you created previously.
31
+
In this section, you add an IP configuration to the virtual network interface of the virtual machine you created previously.
32
32
33
33
1. In the search box at the top of the portal, enter **Virtual machine**. Select **Virtual machines** in the search results.
34
34
@@ -89,7 +89,7 @@ After Docker is installed on your virtual machine, continue with the steps in th
89
89
90
90
## Install CNI plugin and create a test container
91
91
92
-
The Azure CNI plugin is maintained as a GitHub project and is available for download from the project's GitHub page. For this article, you'll use **`git`** within the virtual machine to clone the repository for the plugin and then install and configure the plugin.
92
+
The Azure CNI plugin is maintained as a GitHub project and is available for download from the project's GitHub page. For this article, you use **`git`** within the virtual machine to clone the repository for the plugin and then install and configure the plugin.
93
93
94
94
For more information about the Azure CNI plugin, see [Microsoft Azure Container Networking](https://github.com/Azure/azure-container-networking).
95
95
@@ -109,7 +109,7 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
109
109
sudo apt-get update
110
110
sudo apt-get install jq
111
111
```
112
-
7. Next, you'll clone the repository for the CNI plugin. Use the following example to clone the repository:
112
+
7. Next, you clone the repository for the CNI plugin. Use the following example to clone the repository:
@@ -124,7 +124,7 @@ For more information about the Azure CNI plugin, see [Microsoft Azure Container
124
124
chmod u+x docker-run.sh
125
125
```
126
126
127
-
9. To start a container with the CNI plugin, you must use a special script that comes with the plugin to create and start the container. The following example will create an Alpine container with the CNI plugin script:
127
+
9. To start a container with the CNI plugin, you must use a special script that comes with the plugin to create and start the container. The following example creates an Alpine container with the CNI plugin script:
0 commit comments