2018-06-05 13:51:22 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package lua
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
|
|
|
"k8s.io/ingress-nginx/test/e2e/framework"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = framework.IngressNginxDescribe("Dynamic Certificate", func() {
|
|
|
|
f := framework.NewDefaultFramework("dynamic-certificate")
|
|
|
|
host := "foo.com"
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-10-29 21:39:04 +00:00
|
|
|
f.NewEchoDeploymentWithReplicas(1)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("picks up the certificate when we add TLS spec to existing ingress", func() {
|
2018-12-20 13:48:03 +00:00
|
|
|
ensureIngress(f, host, "http-svc")
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ing, err := f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
ing.Spec.TLS = []extensions.IngressTLS{
|
|
|
|
{
|
|
|
|
Hosts: []string{host},
|
|
|
|
SecretName: host,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
_, err = framework.CreateIngressTLSSecret(f.KubeClientSet,
|
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2019-02-22 14:03:42 +00:00
|
|
|
_, err = f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Update(ing)
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("picks up the previously missing secret for a given ingress without reloading", func() {
|
2019-02-22 14:03:42 +00:00
|
|
|
ing := framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, "http-svc", 80, nil)
|
2018-10-29 21:39:04 +00:00
|
|
|
f.EnsureIngress(ing)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-10-29 21:39:04 +00:00
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2018-10-29 21:39:04 +00:00
|
|
|
_, err := framework.CreateIngressTLSSecret(f.KubeClientSet,
|
2018-06-05 13:51:22 +00:00
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
|
|
|
|
By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(host,
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "ssl_certificate_by_lua_block") &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate_key /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
strings.Contains(server, "listen 443")
|
|
|
|
})
|
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("serving the configured certificate on HTTPS endpoint")
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
log, err := f.NginxLogs()
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(log).ToNot(BeEmpty())
|
|
|
|
index := strings.Index(log, "id=dummy_log_splitter_foo_bar")
|
|
|
|
restOfLogs := log[index:]
|
|
|
|
|
|
|
|
By("skipping Nginx reload")
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logRequireBackendReload))
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logBackendReloadSuccess))
|
|
|
|
})
|
|
|
|
|
|
|
|
Context("given an ingress with TLS correctly configured", func() {
|
|
|
|
BeforeEach(func() {
|
2019-02-22 14:03:42 +00:00
|
|
|
ing := f.EnsureIngress(framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, "http-svc", 80, nil))
|
2018-10-29 21:39:04 +00:00
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2018-10-29 21:39:04 +00:00
|
|
|
_, err := framework.CreateIngressTLSSecret(f.KubeClientSet,
|
2018-06-05 13:51:22 +00:00
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(ing.Spec.TLS[0].Hosts[0],
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "ssl_certificate_by_lua_block") &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate_key /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
strings.Contains(server, "listen 443")
|
|
|
|
})
|
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("serving the configured certificate on HTTPS endpoint")
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2019-07-04 22:39:29 +00:00
|
|
|
/*
|
|
|
|
TODO(elvinefendi): this test currently does not work as expected
|
|
|
|
because Go transport code strips (https://github.com/golang/go/blob/431b5c69ca214ce4291f008c1ce2a50b22bc2d2d/src/crypto/tls/handshake_messages.go#L424)
|
|
|
|
trailing dot from SNI as suggest by the standard (https://tools.ietf.org/html/rfc6066#section-3).
|
|
|
|
*/
|
2019-06-28 20:21:59 +00:00
|
|
|
It("supports requests with domain with trailing dot", func() {
|
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host+".", host)
|
|
|
|
})
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
It("picks up the updated certificate without reloading", func() {
|
2019-02-22 14:03:42 +00:00
|
|
|
ing, err := f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
|
2018-10-30 16:31:07 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
_, err = framework.CreateIngressTLSSecret(f.KubeClientSet,
|
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(ing.Spec.TLS[0].Hosts[0],
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "ssl_certificate_by_lua_block") &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
!strings.Contains(server, fmt.Sprintf("ssl_certificate_key /etc/ingress-controller/ssl/%s-%s.pem;", ing.Namespace, host)) &&
|
|
|
|
strings.Contains(server, "listen 443")
|
|
|
|
})
|
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("serving the configured certificate on HTTPS endpoint")
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
log, err := f.NginxLogs()
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(log).ToNot(BeEmpty())
|
|
|
|
index := strings.Index(log, "id=dummy_log_splitter_foo_bar")
|
|
|
|
restOfLogs := log[index:]
|
|
|
|
|
|
|
|
By("skipping Nginx reload")
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logRequireBackendReload))
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logBackendReloadSuccess))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("falls back to using default certificate when secret gets deleted without reloading", func() {
|
2019-02-22 14:03:42 +00:00
|
|
|
ing, err := f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
f.KubeClientSet.CoreV1().Secrets(ing.Namespace).Delete(ing.Spec.TLS[0].SecretName, nil)
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(ing.Spec.TLS[0].Hosts[0],
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "ssl_certificate_by_lua_block") &&
|
|
|
|
strings.Contains(server, "ssl_certificate /etc/ingress-controller/ssl/default-fake-certificate.pem;") &&
|
|
|
|
strings.Contains(server, "ssl_certificate_key /etc/ingress-controller/ssl/default-fake-certificate.pem;") &&
|
|
|
|
strings.Contains(server, "listen 443")
|
|
|
|
})
|
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
|
|
|
By("serving the default certificate on HTTPS endpoint")
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
log, err := f.NginxLogs()
|
|
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
Expect(log).ToNot(BeEmpty())
|
|
|
|
index := strings.Index(log, "id=dummy_log_splitter_foo_bar")
|
|
|
|
restOfLogs := log[index:]
|
|
|
|
|
|
|
|
By("skipping Nginx reload")
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logRequireBackendReload))
|
|
|
|
Expect(restOfLogs).ToNot(ContainSubstring(logBackendReloadSuccess))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("picks up a non-certificate only change", func() {
|
|
|
|
newHost := "foo2.com"
|
2019-02-22 14:03:42 +00:00
|
|
|
ing, err := f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
ing.Spec.Rules[0].Host = newHost
|
2019-02-22 14:03:42 +00:00
|
|
|
_, err = f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Update(ing)
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2018-08-24 22:52:09 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
By("serving the configured certificate on HTTPS endpoint")
|
2019-02-22 14:03:42 +00:00
|
|
|
ensureHTTPSRequest(f.GetURL(framework.HTTPS), newHost, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("removes HTTPS configuration when we delete TLS spec", func() {
|
2019-02-22 14:03:42 +00:00
|
|
|
ing, err := f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Get(host, metav1.GetOptions{})
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
ing.Spec.TLS = []extensions.IngressTLS{}
|
2019-02-22 14:03:42 +00:00
|
|
|
_, err = f.KubeClientSet.ExtensionsV1beta1().Ingresses(f.Namespace).Update(ing)
|
2018-06-05 13:51:22 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2018-08-24 22:52:09 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2018-08-24 22:52:09 +00:00
|
|
|
ensureRequest(f, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|