2018-05-17 12:35:11 +00:00
|
|
|
/*
|
2019-06-19 02:53:49 +00:00
|
|
|
Copyright 2019 The Kubernetes Authors.
|
2018-05-17 12:35:11 +00:00
|
|
|
|
|
|
|
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 annotations
|
|
|
|
|
|
|
|
import (
|
2019-06-19 02:53:49 +00:00
|
|
|
"crypto/tls"
|
2018-05-17 12:35:11 +00:00
|
|
|
"fmt"
|
2019-06-19 02:53:49 +00:00
|
|
|
"strings"
|
2018-05-17 12:35:11 +00:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
2019-06-19 02:53:49 +00:00
|
|
|
pb "github.com/moul/pb/grpcbin/go-grpc"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/credentials"
|
|
|
|
core "k8s.io/api/core/v1"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
|
|
|
2018-05-17 12:35:11 +00:00
|
|
|
"k8s.io/ingress-nginx/test/e2e/framework"
|
|
|
|
)
|
|
|
|
|
2019-06-19 02:53:49 +00:00
|
|
|
var _ = framework.IngressNginxDescribe("Annotations - GRPC", func() {
|
2018-05-17 12:35:11 +00:00
|
|
|
f := framework.NewDefaultFramework("grpc")
|
|
|
|
|
2020-02-13 14:49:00 +00:00
|
|
|
BeforeEach(func() {
|
2018-10-29 21:39:04 +00:00
|
|
|
f.NewGRPCFortuneTellerDeployment()
|
2020-02-13 14:49:00 +00:00
|
|
|
})
|
2019-06-19 02:53:49 +00:00
|
|
|
|
2020-02-13 14:49:00 +00:00
|
|
|
It("should use grpc_pass in the configuration file", func() {
|
2019-06-19 02:53:49 +00:00
|
|
|
host := "grpc"
|
|
|
|
|
|
|
|
annotations := map[string]string{
|
|
|
|
"nginx.ingress.kubernetes.io/backend-protocol": "GRPC",
|
|
|
|
}
|
|
|
|
|
2019-12-13 05:47:11 +00:00
|
|
|
ing := framework.NewSingleIngress(host, "/", host, f.Namespace, "fortune-teller", 50051, annotations)
|
2019-06-19 02:53:49 +00:00
|
|
|
f.EnsureIngress(ing)
|
|
|
|
|
|
|
|
f.WaitForNginxServer(host,
|
|
|
|
func(server string) bool {
|
|
|
|
return Expect(server).Should(ContainSubstring(fmt.Sprintf("server_name %v", host)))
|
|
|
|
})
|
|
|
|
|
|
|
|
f.WaitForNginxServer(host,
|
|
|
|
func(server string) bool {
|
|
|
|
return Expect(server).Should(ContainSubstring("grpc_pass")) &&
|
|
|
|
Expect(server).Should(ContainSubstring("grpc_set_header")) &&
|
|
|
|
Expect(server).ShouldNot(ContainSubstring("proxy_pass"))
|
|
|
|
})
|
2018-05-17 12:35:11 +00:00
|
|
|
})
|
|
|
|
|
2019-06-19 02:53:49 +00:00
|
|
|
It("should return OK for service with backend protocol GRPC", func() {
|
2020-02-13 14:49:00 +00:00
|
|
|
Skip("GRPC test temporarily disabled")
|
|
|
|
|
|
|
|
f.NewGRPCBinDeployment()
|
|
|
|
|
2019-06-19 02:53:49 +00:00
|
|
|
host := "echo"
|
|
|
|
|
|
|
|
svc := &core.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2020-02-13 14:49:00 +00:00
|
|
|
Name: "grpcbin-test",
|
2019-06-19 02:53:49 +00:00
|
|
|
Namespace: f.Namespace,
|
|
|
|
},
|
|
|
|
Spec: corev1.ServiceSpec{
|
2020-02-13 14:49:00 +00:00
|
|
|
ExternalName: fmt.Sprintf("grpcbin.%v.svc.cluster.local", f.Namespace),
|
2019-06-19 02:53:49 +00:00
|
|
|
Type: corev1.ServiceTypeExternalName,
|
|
|
|
Ports: []corev1.ServicePort{
|
|
|
|
{
|
|
|
|
Name: host,
|
|
|
|
Port: 9000,
|
|
|
|
TargetPort: intstr.FromInt(9000),
|
|
|
|
Protocol: "TCP",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
f.EnsureService(svc)
|
|
|
|
|
2019-12-13 05:47:11 +00:00
|
|
|
annotations := map[string]string{
|
2019-06-19 02:53:49 +00:00
|
|
|
"nginx.ingress.kubernetes.io/backend-protocol": "GRPC",
|
|
|
|
}
|
|
|
|
|
2020-02-13 14:49:00 +00:00
|
|
|
ing := framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, "grpcbin-test", 9000, annotations)
|
2019-06-19 02:53:49 +00:00
|
|
|
|
|
|
|
f.EnsureIngress(ing)
|
|
|
|
|
|
|
|
f.WaitForNginxServer(host,
|
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "grpc_pass grpc://upstream_balancer;")
|
|
|
|
})
|
|
|
|
|
|
|
|
conn, _ := grpc.Dial(f.GetNginxIP()+":443",
|
|
|
|
grpc.WithTransportCredentials(
|
|
|
|
credentials.NewTLS(&tls.Config{
|
|
|
|
ServerName: "echo",
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
client := pb.NewGRPCBinClient(conn)
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
res, err := client.HeadersUnary(ctx, &pb.EmptyMessage{})
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
|
|
|
|
metadata := res.GetMetadata()
|
|
|
|
Expect(metadata["content-type"].Values[0]).Should(Equal("application/grpc"))
|
|
|
|
})
|
|
|
|
|
|
|
|
It("should return OK for service with backend protocol GRPCS", func() {
|
2020-02-13 14:49:00 +00:00
|
|
|
Skip("GRPC test temporarily disabled")
|
|
|
|
|
|
|
|
f.NewGRPCBinDeployment()
|
|
|
|
|
2019-06-19 02:53:49 +00:00
|
|
|
host := "echo"
|
|
|
|
|
|
|
|
svc := &core.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2020-02-13 14:49:00 +00:00
|
|
|
Name: "grpcbin-test",
|
2019-06-19 02:53:49 +00:00
|
|
|
Namespace: f.Namespace,
|
|
|
|
},
|
|
|
|
Spec: corev1.ServiceSpec{
|
2020-02-13 14:49:00 +00:00
|
|
|
ExternalName: fmt.Sprintf("grpcbin.%v.svc.cluster.local", f.Namespace),
|
2019-06-19 02:53:49 +00:00
|
|
|
Type: corev1.ServiceTypeExternalName,
|
|
|
|
Ports: []corev1.ServicePort{
|
|
|
|
{
|
|
|
|
Name: host,
|
|
|
|
Port: 9001,
|
|
|
|
TargetPort: intstr.FromInt(9001),
|
|
|
|
Protocol: "TCP",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
f.EnsureService(svc)
|
|
|
|
|
2019-12-13 05:47:11 +00:00
|
|
|
annotations := map[string]string{
|
2019-06-19 02:53:49 +00:00
|
|
|
"nginx.ingress.kubernetes.io/backend-protocol": "GRPCS",
|
|
|
|
"nginx.ingress.kubernetes.io/configuration-snippet": `
|
|
|
|
# without this setting NGINX sends echo instead
|
|
|
|
grpc_ssl_name grpcb.in;
|
|
|
|
grpc_ssl_server_name on;
|
|
|
|
grpc_ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
2020-02-13 14:49:00 +00:00
|
|
|
ing := framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, "grpcbin-test", 9001, annotations)
|
2019-06-19 02:53:49 +00:00
|
|
|
f.EnsureIngress(ing)
|
|
|
|
|
|
|
|
f.WaitForNginxServer(host,
|
|
|
|
func(server string) bool {
|
|
|
|
return strings.Contains(server, "grpc_pass grpcs://upstream_balancer;")
|
|
|
|
})
|
|
|
|
|
|
|
|
conn, _ := grpc.Dial(f.GetNginxIP()+":443",
|
|
|
|
grpc.WithTransportCredentials(
|
|
|
|
credentials.NewTLS(&tls.Config{
|
|
|
|
ServerName: "echo",
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
client := pb.NewGRPCBinClient(conn)
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
res, err := client.HeadersUnary(ctx, &pb.EmptyMessage{})
|
|
|
|
Expect(err).Should(BeNil())
|
|
|
|
|
|
|
|
metadata := res.GetMetadata()
|
|
|
|
Expect(metadata["content-type"].Values[0]).Should(Equal("application/grpc"))
|
2018-05-17 12:35:11 +00:00
|
|
|
})
|
|
|
|
})
|