mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 05:27:21 +00:00
Merge pull request #104409 from martinkennelly/fix_local_test_bind_denied
Fix insufficient privileges to bind to port
This commit is contained in:
commit
410702647e
@ -2134,14 +2134,14 @@ var _ = common.SIGDescribe("Services", func() {
|
|||||||
|
|
||||||
serviceName := "svc-itp"
|
serviceName := "svc-itp"
|
||||||
ns := f.Namespace.Name
|
ns := f.Namespace.Name
|
||||||
servicePort := 80
|
servicePort := 8000
|
||||||
|
|
||||||
ginkgo.By("creating a TCP service " + serviceName + " with type=ClusterIP and internalTrafficPolicy=Local in namespace " + ns)
|
ginkgo.By("creating a TCP service " + serviceName + " with type=ClusterIP and internalTrafficPolicy=Local in namespace " + ns)
|
||||||
local := v1.ServiceInternalTrafficPolicyLocal
|
local := v1.ServiceInternalTrafficPolicyLocal
|
||||||
jig := e2eservice.NewTestJig(cs, ns, serviceName)
|
jig := e2eservice.NewTestJig(cs, ns, serviceName)
|
||||||
svc, err := jig.CreateTCPService(func(svc *v1.Service) {
|
svc, err := jig.CreateTCPService(func(svc *v1.Service) {
|
||||||
svc.Spec.Ports = []v1.ServicePort{
|
svc.Spec.Ports = []v1.ServicePort{
|
||||||
{Port: 80, Name: "http", Protocol: v1.ProtocolTCP, TargetPort: intstr.FromInt(80)},
|
{Port: 8000, Name: "http", Protocol: v1.ProtocolTCP, TargetPort: intstr.FromInt(8000)},
|
||||||
}
|
}
|
||||||
svc.Spec.InternalTrafficPolicy = &local
|
svc.Spec.InternalTrafficPolicy = &local
|
||||||
})
|
})
|
||||||
@ -2214,14 +2214,14 @@ var _ = common.SIGDescribe("Services", func() {
|
|||||||
|
|
||||||
serviceName := "svc-itp"
|
serviceName := "svc-itp"
|
||||||
ns := f.Namespace.Name
|
ns := f.Namespace.Name
|
||||||
servicePort := 80
|
servicePort := 8000
|
||||||
|
|
||||||
ginkgo.By("creating a TCP service " + serviceName + " with type=ClusterIP and internalTrafficPolicy=Local in namespace " + ns)
|
ginkgo.By("creating a TCP service " + serviceName + " with type=ClusterIP and internalTrafficPolicy=Local in namespace " + ns)
|
||||||
local := v1.ServiceInternalTrafficPolicyLocal
|
local := v1.ServiceInternalTrafficPolicyLocal
|
||||||
jig := e2eservice.NewTestJig(cs, ns, serviceName)
|
jig := e2eservice.NewTestJig(cs, ns, serviceName)
|
||||||
svc, err := jig.CreateTCPService(func(svc *v1.Service) {
|
svc, err := jig.CreateTCPService(func(svc *v1.Service) {
|
||||||
svc.Spec.Ports = []v1.ServicePort{
|
svc.Spec.Ports = []v1.ServicePort{
|
||||||
{Port: 80, Name: "http", Protocol: v1.ProtocolTCP, TargetPort: intstr.FromInt(80)},
|
{Port: 8000, Name: "http", Protocol: v1.ProtocolTCP, TargetPort: intstr.FromInt(8000)},
|
||||||
}
|
}
|
||||||
svc.Spec.InternalTrafficPolicy = &local
|
svc.Spec.InternalTrafficPolicy = &local
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user