ingress-nginx-helm/controllers/gce/examples/https/README.md

21 lines
523 B
Markdown
Raw Normal View History

2016-04-04 05:23:24 +00:00
# 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 ...
```
2017-08-08 09:50:14 +00:00
Also make sure you have a [firewall rule](https://github.com/kubernetes/ingress/blob/master/controllers/gce/BETA_LIMITATIONS.md#creating-the-fir-glbc-health-checks) for the node port of the Service.
2016-04-04 05:23:24 +00:00
Create Ingress
```console
$ kubectl create -f tls-app.yaml
```