add allow-named-tls annotation
This commit is contained in:
parent
95d6900342
commit
3b31095474
1 changed files with 7 additions and 0 deletions
|
@ -45,6 +45,13 @@ const (
|
||||||
// rules for port 443 based on the TLS section.
|
// rules for port 443 based on the TLS section.
|
||||||
allowHTTPKey = "kubernetes.io/ingress.allow-http"
|
allowHTTPKey = "kubernetes.io/ingress.allow-http"
|
||||||
|
|
||||||
|
// useNamedTLS tells the Ingress controller to use a specific GCE
|
||||||
|
// SSL certificate for its target proxies. If specified, the Ingress controller
|
||||||
|
// assigns the SSL certifiate by this name to the target proxies of the given
|
||||||
|
// Ingress. The controller *does not* manage this certificate, it is the users
|
||||||
|
// responsibility to create/delete it.
|
||||||
|
useNamedTLS = "kubernetes.io/ingress.use-named-tls"
|
||||||
|
|
||||||
// staticIPNameKey tells the Ingress controller to use a specific GCE
|
// staticIPNameKey tells the Ingress controller to use a specific GCE
|
||||||
// static ip for its forwarding rules. If specified, the Ingress controller
|
// static ip for its forwarding rules. If specified, the Ingress controller
|
||||||
// assigns the static ip by this name to the forwarding rules of the given
|
// assigns the static ip by this name to the forwarding rules of the given
|
||||||
|
|
Loading…
Reference in a new issue