File tree 7 files changed +45
-43
lines changed
7 files changed +45
-43
lines changed Original file line number Diff line number Diff line change @@ -740,9 +740,9 @@ spec:
740
740
selector :
741
741
app : backendtlspolicy-test
742
742
ports :
743
- - protocol : TCP
744
- port : 443
745
- targetPort : 8443
743
+ - protocol : TCP
744
+ port : 443
745
+ targetPort : 8443
746
746
---
747
747
apiVersion : apps/v1
748
748
kind : Deployment
@@ -762,34 +762,33 @@ spec:
762
762
app : backendtlspolicy-test
763
763
spec :
764
764
containers :
765
- - name : backendtlspolicy-test
766
- image : gcr.io/k8s-staging-gateway-api/echo-basic:v20240412-v1.0.0-394-g40c666fd
767
- volumeMounts :
768
- - name : secret-volume
769
- mountPath : /etc/secret-volume
770
- env :
771
- - name : POD_NAME
772
- valueFrom :
773
- fieldRef :
774
- fieldPath : metadata.name
775
- - name : NAMESPACE
776
- valueFrom :
777
- fieldRef :
778
- fieldPath : metadata.namespace
779
- - name : CA_CERT
780
- value : /etc/secret-volume/crt
781
- - name : CA_CERT_KEY
782
- value : /etc/secret-volume/key
783
- resources :
784
- requests :
785
- cpu : 10m
786
- volumes :
765
+ - name : backendtlspolicy-test
766
+ image : gcr.io/k8s-staging-gateway-api/echo-basic:v20240412-v1.0.0-394-g40c666fd
767
+ volumeMounts :
787
768
- name : secret-volume
788
- secret :
789
- secretName : backend-tls-checks-certificate
790
- items :
791
- - key : tls.crt
792
- path : crt
793
- - key : tls.key
794
- path : key
795
- ---
769
+ mountPath : /etc/secret-volume
770
+ env :
771
+ - name : POD_NAME
772
+ valueFrom :
773
+ fieldRef :
774
+ fieldPath : metadata.name
775
+ - name : NAMESPACE
776
+ valueFrom :
777
+ fieldRef :
778
+ fieldPath : metadata.namespace
779
+ - name : CA_CERT
780
+ value : /etc/secret-volume/crt
781
+ - name : CA_CERT_KEY
782
+ value : /etc/secret-volume/key
783
+ resources :
784
+ requests :
785
+ cpu : 10m
786
+ volumes :
787
+ - name : secret-volume
788
+ secret :
789
+ secretName : backend-tls-checks-certificate
790
+ items :
791
+ - key : tls.crt
792
+ path : crt
793
+ - key : tls.key
794
+ path : key
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module sigs.k8s.io/gateway-api/conformance/echo-basic
3
3
go 1.21
4
4
5
5
require (
6
+ github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732
6
7
golang.org/x/net v0.21.0
7
8
google.golang.org/grpc v1.53.0
8
9
google.golang.org/protobuf v1.28.1
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiu
4
4
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
5
5
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
6
6
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
7
+ github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732 h1:nkseUkzjazCNyGhkRwnJ1OiHSwMXazsJQx+Ci+oVLEM=
8
+ github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732/go.mod h1:J3XXNGJINXLa4yIivdUT0Ad/srv2q0pSOWbbm6El2EY=
7
9
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
8
10
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
9
11
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
Original file line number Diff line number Diff line change @@ -226,7 +226,9 @@ func echoHandler(w http.ResponseWriter, r *http.Request) {
226
226
if strings .Contains (r .RequestURI , "backendTLS" ) {
227
227
sni , err = sniffForSNI (r .RemoteAddr )
228
228
if err != nil {
229
- // Todo: research if for some test cases there won't be one
229
+ // TODO: research if for some test cases there won't be SNI available.
230
+ processError (w , err , http .StatusBadRequest )
231
+ return
230
232
}
231
233
}
232
234
@@ -340,14 +342,15 @@ func sniffForSNI(addr string) (string, error) {
340
342
return "" , fmt .Errorf ("could not read socket: %v" , err )
341
343
}
342
344
// Take an incoming TLS Client Hello and return the SNI name.
343
- sni , err = parser .GetHostname (data [:] )
345
+ sni , err = parser .GetHostname (data )
344
346
if err != nil {
345
347
return "" , fmt .Errorf ("error getting SNI: %v" , err )
346
348
}
347
349
if sni == "" {
348
350
return "" , fmt .Errorf ("no server name indication found" )
351
+ } else {
352
+ return sni , nil
349
353
}
350
- return sni , nil
351
354
}
352
355
}
353
356
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ metadata:
23
23
namespace : gateway-conformance-infra
24
24
spec :
25
25
targetRefs :
26
- - group : " "
27
- kind : Service
28
- name : " backendtlspolicy-test"
26
+ - group : " "
27
+ kind : Service
28
+ name : " backendtlspolicy-test"
29
29
validation :
30
30
caCertificateRefs :
31
31
group : " "
32
32
kind : Secret
33
33
name : " backend-tls-checks-certificate"
34
- hostname : " abc.example.com"
34
+ hostname : " abc.example.com"
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ go 1.22.0
5
5
require (
6
6
github.com/ahmetb/gen-crd-api-reference-docs v0.3.0
7
7
github.com/miekg/dns v1.1.58
8
- github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732
9
8
github.com/stretchr/testify v1.9.0
10
9
golang.org/x/net v0.24.0
11
10
golang.org/x/sync v0.7.0
Original file line number Diff line number Diff line change @@ -97,8 +97,6 @@ github.com/onsi/ginkgo/v2 v2.17.1 h1:V++EzdbhI4ZV4ev0UTIj0PzhzOcReJFyJaLjtSF55M8
97
97
github.com/onsi/ginkgo/v2 v2.17.1 /go.mod h1:llBI3WDLL9Z6taip6f33H76YcWtJv+7R3HigUjbIBOs =
98
98
github.com/onsi/gomega v1.33.0 h1:snPCflnZrpMsy94p4lXVEkHo12lmPnc3vY5XBbreexE =
99
99
github.com/onsi/gomega v1.33.0 /go.mod h1:+925n5YtiFsLzzafLUHzVMBpvvRAzrydIBiSIxjX3wY =
100
- github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732 h1:nkseUkzjazCNyGhkRwnJ1OiHSwMXazsJQx+Ci+oVLEM =
101
- github.com/paultag/sniff v0.0.0-20200207005214-cf7e4d167732 /go.mod h1:J3XXNGJINXLa4yIivdUT0Ad/srv2q0pSOWbbm6El2EY =
102
100
github.com/pkg/errors v0.8.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
103
101
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
104
102
github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
You can’t perform that action at this time.
0 commit comments