From 3464d1c5e3144afc1970ae6d711e907368f28aa6 Mon Sep 17 00:00:00 2001 From: Prashanth Balasubramanian Date: Sun, 3 Apr 2016 22:23:24 -0700 Subject: [PATCH] Readme for tls example. --- controllers/gce/https_example/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 controllers/gce/https_example/README.md diff --git a/controllers/gce/https_example/README.md b/controllers/gce/https_example/README.md new file mode 100644 index 000000000..dcbb40cde --- /dev/null +++ b/controllers/gce/https_example/README.md @@ -0,0 +1,20 @@ +# Simple TLS example + +Create secret +```console +$ make keys secret +$ kubectl create -f /tmp/tls.json +``` + +Make sure you have the l7 controller running: +```console +$ kubectl --namespace=kube-system get pod -l name=glbc +NAME +l7-lb-controller-v0.6.0-1770t ... +``` +Also make sure you have a [firewall rule](https://github.com/kubernetes/contrib/blob/master/ingress/controllers/gce/BETA_LIMITATIONS.md#creating-the-fir-glbc-health-checks) for the node port of the Service. + +Create Ingress +```console +$ kubectl create -f tls-app.yaml +```