Since Kubernetes release 1.2.0, Ingress resources are supporting TLS. It would be great if this image would be compatible with Ingress.
What needs to be done is to change secret data format to:
"data": {
"tls.crt": "$CERT",
"tls.key": "$KEY",
"dhparam": "$DHPARAM"
}
And response with 200 HTTP code when root URI (/) is requested (for health checks).
P.S. I will be happy to prepare a PR later today.