Merge pull request #90365 from janosi/createsctpservice

e2e test framework change for the SCTP e2e tests
This commit is contained in:
Kubernetes Prow Robot 2020-05-28 10:24:04 -07:00 committed by GitHub
commit 40e61d8a50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -962,3 +962,18 @@ func (j *TestJig) CreateTCPUDPServicePods(replica int) error {
}
return e2erc.RunRC(config)
}
// CreateSCTPServiceWithPort creates a new SCTP Service with given port based on the
// j's defaults. Callers can provide a function to tweak the Service object before
// it is created.
func (j *TestJig) CreateSCTPServiceWithPort(tweak func(svc *v1.Service), port int32) (*v1.Service, error) {
svc := j.newServiceTemplate(v1.ProtocolSCTP, port)
if tweak != nil {
tweak(svc)
}
result, err := j.Client.CoreV1().Services(j.Namespace).Create(context.TODO(), svc, metav1.CreateOptions{})
if err != nil {
return nil, fmt.Errorf("failed to create SCTP Service %q: %v", svc.Name, err)
}
return j.sanityCheckService(result, svc.Spec.Type)
}