From 2fc014494fd32e91f6879db13a6e80521a48e7d3 Mon Sep 17 00:00:00 2001 From: Steve Lasker Date: Wed, 25 Jan 2017 16:31:23 -0800 Subject: [PATCH] Update user-guide/quick-start.md to include Azure Added Azure as a target --- docs/user-guide/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/quick-start.md b/docs/user-guide/quick-start.md index 6ad7940526..e1b0829843 100644 --- a/docs/user-guide/quick-start.md +++ b/docs/user-guide/quick-start.md @@ -13,7 +13,7 @@ This guide will help you get oriented to Kubernetes and running your first conta ## Launching a simple application, and exposing it to the Internet Once your application is packaged into a container and pushed to an image registry, you're ready to deploy it to Kubernetes. -Through integration with some cloud providers (for example Google Compute Engine and AWS EC2), Kubernetes also enables you to request it to provision a public IP address for your application. +Through integration with some cloud providers (for example Google Compute Engine, AWS EC2, Azure ACS), Kubernetes also enables you to request it to provision a public IP address for your application. For example, [nginx](http://wiki.nginx.org/Main) is a popular HTTP server, with a [pre-built container on Docker hub](https://registry.hub.docker.com/_/nginx/). The [`kubectl run`](/docs/user-guide/kubectl/kubectl_run) commands below will create two nginx replicas, listening on port 80, and a public IP address for your application.