Skip to content

Commit

Permalink
Merge pull request #27 from timmyreilly/patch-1
Browse files Browse the repository at this point in the history
Discrepancy in cni configuration
  • Loading branch information
ivanfioravanti authored Dec 7, 2018
2 parents aed0f1e + 1ddd814 commit b6ed8a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/09-bootstrapping-kubernetes-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/virtual-machine

```shell
POD_CIDR="$(echo $(curl --silent -H Metadata:true "http://169.254.169.254/metadata/instance/compute/tags?api-version=2017-08-01&format=text") | cut -d : -f2)"
cat > 10-bridge.conf <<EOF
cat <<EOF | sudo tee /etc/cni/net.d/10-bridge.conf
{
"cniVersion": "0.3.1",
"name": "bridge",
Expand All @@ -116,7 +116,7 @@ EOF
Create the `loopback` network configuration file:

```shell
cat > 99-loopback.conf <<EOF
cat <<EOF | sudo tee /etc/cni/net.d/99-loopback.conf
{
"cniVersion": "0.3.1",
"type": "loopback"
Expand Down

0 comments on commit b6ed8a7

Please sign in to comment.