2018-11-16 20:33:56 +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 settings
|
|
|
|
|
|
|
|
import (
|
2019-02-17 22:12:10 +00:00
|
|
|
"context"
|
2018-11-16 20:33:56 +00:00
|
|
|
"fmt"
|
2019-02-17 22:12:10 +00:00
|
|
|
"net"
|
2020-02-19 03:08:56 +00:00
|
|
|
"net/http"
|
2023-02-16 14:15:39 +00:00
|
|
|
"regexp"
|
2018-11-16 20:33:56 +00:00
|
|
|
"strings"
|
2020-03-23 20:05:15 +00:00
|
|
|
"time"
|
2018-11-16 20:33:56 +00:00
|
|
|
|
2022-07-31 16:16:28 +00:00
|
|
|
"github.com/onsi/ginkgo/v2"
|
2020-02-19 03:08:56 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-11-16 20:33:56 +00:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
2020-03-23 20:05:15 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
2018-11-16 20:33:56 +00:00
|
|
|
|
|
|
|
"k8s.io/ingress-nginx/test/e2e/framework"
|
|
|
|
)
|
|
|
|
|
2020-02-16 18:27:58 +00:00
|
|
|
var _ = framework.IngressNginxDescribe("[TCP] tcp-services", func() {
|
2018-11-16 20:33:56 +00:00
|
|
|
f := framework.NewDefaultFramework("tcp")
|
2023-02-16 14:15:39 +00:00
|
|
|
var ip string
|
|
|
|
|
|
|
|
ginkgo.BeforeEach(func() {
|
|
|
|
ip = f.GetNginxIP()
|
|
|
|
})
|
2018-11-16 20:33:56 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("should expose a TCP service", func() {
|
2022-02-02 13:12:22 +00:00
|
|
|
f.NewEchoDeployment()
|
2018-11-16 20:33:56 +00:00
|
|
|
|
2023-02-16 14:15:39 +00:00
|
|
|
cm := f.GetConfigMap(f.Namespace, "tcp-services")
|
|
|
|
cm.Data = map[string]string{
|
|
|
|
"8080": fmt.Sprintf("%v/%v:80", f.Namespace, framework.EchoService),
|
2018-11-16 20:33:56 +00:00
|
|
|
}
|
2023-02-16 14:15:39 +00:00
|
|
|
f.EnsureConfigMap(cm)
|
2018-11-16 20:33:56 +00:00
|
|
|
|
2023-02-16 14:15:39 +00:00
|
|
|
svc := f.GetService(f.Namespace, "nginx-ingress-controller")
|
2018-11-16 20:33:56 +00:00
|
|
|
svc.Spec.Ports = append(svc.Spec.Ports, corev1.ServicePort{
|
2019-09-01 18:16:52 +00:00
|
|
|
Name: framework.EchoService,
|
2018-11-16 20:33:56 +00:00
|
|
|
Port: 8080,
|
|
|
|
TargetPort: intstr.FromInt(8080),
|
|
|
|
})
|
2023-02-16 14:15:39 +00:00
|
|
|
_, err := f.KubeClientSet.
|
2018-11-16 20:33:56 +00:00
|
|
|
CoreV1().
|
2019-02-22 14:03:42 +00:00
|
|
|
Services(f.Namespace).
|
2020-03-24 13:44:13 +00:00
|
|
|
Update(context.TODO(), svc, metav1.UpdateOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err, "unexpected error updating service")
|
2018-11-16 20:33:56 +00:00
|
|
|
|
|
|
|
f.WaitForNginxConfiguration(
|
|
|
|
func(cfg string) bool {
|
2020-03-23 21:09:21 +00:00
|
|
|
return strings.Contains(cfg, fmt.Sprintf(`ngx.var.proxy_upstream_name="tcp-%v-%v-80"`,
|
|
|
|
f.Namespace, framework.EchoService))
|
2018-11-16 20:33:56 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
f.HTTPTestClient().
|
|
|
|
GET("/").
|
|
|
|
WithURL(fmt.Sprintf("http://%v:8080", ip)).
|
|
|
|
Expect().
|
|
|
|
Status(http.StatusOK)
|
2018-11-16 20:33:56 +00:00
|
|
|
})
|
2019-02-17 22:12:10 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("should expose an ExternalName TCP service", func() {
|
2019-02-17 22:12:10 +00:00
|
|
|
// Setup:
|
|
|
|
// - Create an external name service for DNS lookups on port 5353. Point it to google's DNS server
|
|
|
|
// - Expose port 5353 on the nginx ingress NodePort service to open a hole for this test
|
|
|
|
// - Update the `tcp-services` configmap to proxy traffic to the configured external name service
|
|
|
|
|
|
|
|
// Create an external service for DNS
|
|
|
|
externalService := &corev1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: "dns-external-name-svc",
|
2019-02-22 14:03:42 +00:00
|
|
|
Namespace: f.Namespace,
|
2019-02-17 22:12:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Spec: corev1.ServiceSpec{
|
|
|
|
ExternalName: "google-public-dns-a.google.com",
|
|
|
|
Ports: []corev1.ServicePort{
|
|
|
|
{
|
|
|
|
Name: "dns-external-name-svc",
|
|
|
|
Port: 5353,
|
|
|
|
TargetPort: intstr.FromInt(53),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Type: corev1.ServiceTypeExternalName,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
f.EnsureService(externalService)
|
|
|
|
|
2023-02-16 14:15:39 +00:00
|
|
|
// Expose the `external name` port on the `ingress-nginx-controller` service
|
|
|
|
svc := f.GetService(f.Namespace, "nginx-ingress-controller")
|
2019-02-17 22:12:10 +00:00
|
|
|
svc.Spec.Ports = append(svc.Spec.Ports, corev1.ServicePort{
|
|
|
|
Name: "dns-svc",
|
|
|
|
Port: 5353,
|
|
|
|
TargetPort: intstr.FromInt(5353),
|
|
|
|
})
|
2023-02-16 14:15:39 +00:00
|
|
|
_, err := f.KubeClientSet.
|
2019-02-17 22:12:10 +00:00
|
|
|
CoreV1().
|
2019-02-22 14:03:42 +00:00
|
|
|
Services(f.Namespace).
|
2020-03-24 13:44:13 +00:00
|
|
|
Update(context.TODO(), svc, metav1.UpdateOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err, "unexpected error updating service")
|
2019-02-17 22:12:10 +00:00
|
|
|
|
|
|
|
// Update the TCP configmap to link port 5353 to the DNS external name service
|
2023-02-16 14:15:39 +00:00
|
|
|
config := f.GetConfigMap(f.Namespace, "tcp-services")
|
|
|
|
config.Data = map[string]string{
|
|
|
|
"5353": fmt.Sprintf("%v/dns-external-name-svc:5353", f.Namespace),
|
2019-02-17 22:12:10 +00:00
|
|
|
}
|
2023-02-16 14:15:39 +00:00
|
|
|
f.EnsureConfigMap(config)
|
2019-02-17 22:12:10 +00:00
|
|
|
|
|
|
|
// Validate that the generated nginx config contains the expected `proxy_upstream_name` value
|
|
|
|
f.WaitForNginxConfiguration(
|
|
|
|
func(cfg string) bool {
|
2019-02-22 14:03:42 +00:00
|
|
|
return strings.Contains(cfg, fmt.Sprintf(`ngx.var.proxy_upstream_name="tcp-%v-dns-external-name-svc-5353"`, f.Namespace))
|
2019-02-17 22:12:10 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// Execute the test. Use the `external name` service to resolve a domain name.
|
|
|
|
resolver := net.Resolver{
|
|
|
|
PreferGo: true,
|
2024-03-07 10:39:53 +00:00
|
|
|
Dial: func(ctx context.Context, _, _ string) (net.Conn, error) {
|
2019-02-17 22:12:10 +00:00
|
|
|
d := net.Dialer{}
|
2019-02-22 14:03:42 +00:00
|
|
|
return d.DialContext(ctx, "tcp", fmt.Sprintf("%v:5353", ip))
|
2019-02-17 22:12:10 +00:00
|
|
|
},
|
|
|
|
}
|
2020-03-23 20:05:15 +00:00
|
|
|
|
|
|
|
// add retries to LookupHost to avoid random e2e errors
|
|
|
|
retry := wait.Backoff{
|
|
|
|
Steps: 10,
|
|
|
|
Duration: 2 * time.Second,
|
|
|
|
Factor: 0.8,
|
|
|
|
Jitter: 0.2,
|
|
|
|
}
|
|
|
|
|
|
|
|
var ips []string
|
2023-08-31 07:36:48 +00:00
|
|
|
var errRetry error
|
2020-03-23 20:05:15 +00:00
|
|
|
err = wait.ExponentialBackoff(retry, func() (bool, error) {
|
2023-08-31 07:36:48 +00:00
|
|
|
ips, errRetry = resolver.LookupHost(context.Background(), "google-public-dns-b.google.com")
|
|
|
|
if errRetry == nil {
|
2020-03-23 20:05:15 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
})
|
2023-08-31 07:36:48 +00:00
|
|
|
//nolint:staticcheck // TODO: will replace it since wait.ErrWaitTimeout is deprecated
|
2020-03-23 20:05:15 +00:00
|
|
|
if err == wait.ErrWaitTimeout {
|
2023-08-31 07:36:48 +00:00
|
|
|
err = errRetry
|
2020-03-23 20:05:15 +00:00
|
|
|
}
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err, "unexpected error from DNS resolver")
|
|
|
|
assert.Contains(ginkgo.GinkgoT(), ips, "8.8.4.4")
|
2019-02-17 22:12:10 +00:00
|
|
|
})
|
2023-02-16 14:15:39 +00:00
|
|
|
|
|
|
|
ginkgo.It("should reload after an update in the configuration", func() {
|
|
|
|
ginkgo.By("setting up a first deployment")
|
|
|
|
f.NewEchoDeployment(framework.WithDeploymentName("first-service"))
|
|
|
|
|
|
|
|
cm := f.GetConfigMap(f.Namespace, "tcp-services")
|
|
|
|
cm.Data = map[string]string{
|
|
|
|
"8080": fmt.Sprintf("%v/first-service:80", f.Namespace),
|
|
|
|
}
|
|
|
|
f.EnsureConfigMap(cm)
|
|
|
|
|
|
|
|
checksumRegex := regexp.MustCompile(`Configuration checksum:\s+(\d+)`)
|
|
|
|
checksum := ""
|
|
|
|
|
|
|
|
f.WaitForNginxConfiguration(
|
|
|
|
func(cfg string) bool {
|
|
|
|
// before returning, extract the current checksum
|
|
|
|
match := checksumRegex.FindStringSubmatch(cfg)
|
|
|
|
if len(match) > 0 {
|
|
|
|
checksum = match[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Contains(cfg, fmt.Sprintf(`ngx.var.proxy_upstream_name="tcp-%v-first-service-80"`,
|
|
|
|
f.Namespace))
|
|
|
|
})
|
|
|
|
assert.NotEmpty(ginkgo.GinkgoT(), checksum)
|
|
|
|
|
|
|
|
ginkgo.By("updating the tcp service to a second deployment")
|
|
|
|
f.NewEchoDeployment(framework.WithDeploymentName("second-service"))
|
|
|
|
|
|
|
|
cm = f.GetConfigMap(f.Namespace, "tcp-services")
|
|
|
|
cm.Data["8080"] = fmt.Sprintf("%v/second-service:80", f.Namespace)
|
|
|
|
f.EnsureConfigMap(cm)
|
|
|
|
|
|
|
|
newChecksum := ""
|
|
|
|
f.WaitForNginxConfiguration(
|
|
|
|
func(cfg string) bool {
|
|
|
|
match := checksumRegex.FindStringSubmatch(cfg)
|
|
|
|
if len(match) > 0 {
|
|
|
|
newChecksum = match[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Contains(cfg, fmt.Sprintf(`ngx.var.proxy_upstream_name="tcp-%v-second-service-80"`,
|
|
|
|
f.Namespace))
|
|
|
|
})
|
|
|
|
assert.NotEqual(ginkgo.GinkgoT(), checksum, newChecksum)
|
|
|
|
|
|
|
|
logs, err := f.NginxLogs()
|
|
|
|
assert.Nil(ginkgo.GinkgoT(), err, "obtaining nginx logs")
|
|
|
|
assert.Contains(ginkgo.GinkgoT(), logs, "Backend successfully reloaded")
|
|
|
|
})
|
2018-11-16 20:33:56 +00:00
|
|
|
})
|