bump contour to 1.30.1 #1482
Annotations
2 errors and 1 warning
Verify:
vendor/knative.dev/networking/test/conformance/ingress/util.go#L1
Please run ./hack/update-codegen.sh.
diff --git a/vendor/knative.dev/networking/test/conformance/ingress/util.go b/vendor/knative.dev/networking/test/conformance/ingress/util.go
index a00edd5..b8226f2 100644
--- a/vendor/knative.dev/networking/test/conformance/ingress/util.go
+++ b/vendor/knative.dev/networking/test/conformance/ingress/util.go
@@ -255,9 +255,6 @@ func CreateProxyService(ctx context.Context, t *testing.T, clients *test.Clients
Env: []corev1.EnvVar{{
Name: "TARGET_HOST",
Value: target,
- }, {
- Name: "GATEWAY_HOST",
- Value: gatewayDomain,
}, {
Name: "PORT",
Value: strconv.Itoa(containerPort),
@@ -309,7 +306,13 @@ func CreateProxyService(ctx context.Context, t *testing.T, clients *test.Clients
},
}
proxyServiceCancel := createPodAndService(ctx, t, clients, pod, svc)
- return name, port, proxyServiceCancel
+
+ externalNameServiceCancel := createExternalNameService(ctx, t, clients, target, gatewayDomain)
+
+ return name, port, func() {
+ externalNameServiceCancel()
+ proxyServiceCancel()
+ }
}
// CreateTimeoutService creates a Kubernetes service that will respond to the protocol
|
Verify
Process completed with exit code 1.
|
Set up Go
Restore cache failed: Dependencies file is not found in /home/runner/work/net-contour/net-contour. Supported file pattern: go.sum
|
Loading