Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brief initial firewall setup details for Azure #20212

Merged
merged 1 commit into from Feb 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/user-guide/services-firewalls.md
Expand Up @@ -50,6 +50,22 @@ the wilds of the internet.

This will be fixed in an upcoming release of Kubernetes.


### Microsoft Azure

After following the [installation instuctions](https://azure.microsoft.com/en-gb/documentation/articles/xplat-cli-install/) for the Azure command line tools, the following command will create a public hole in the Kubernetes cluster.

```console
$ ./node_modules/.bin/azure vm endpoint create kube-00 80 <port>
```

Use the following to show the endpoint setup (and most importantly the cluster's external IP):

```console
$ ./node_modules/.bin/azure vm endpoint show kube-00 tcp-80-<port>
```


### Other cloud providers

Coming soon.
Expand Down