Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
56d79129
Unverified
Commit
56d79129
authored
Apr 23, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Apr 23, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #76348 from atoato88/fix-golint-e2e-framework-util-go
Fix golint failures of e2e/framework/util.go - part1
parents
90fbbee1
9d0bc4b8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
e2e.go
test/e2e/e2e.go
+1
-1
util.go
test/e2e/framework/util.go
+0
-0
network_tiers.go
test/e2e/network/network_tiers.go
+1
-1
service.go
test/e2e/network/service.go
+1
-1
No files found.
test/e2e/e2e.go
View file @
56d79129
...
...
@@ -237,7 +237,7 @@ func RunE2ETests(t *testing.T) {
r
=
append
(
r
,
reporters
.
NewJUnitReporter
(
path
.
Join
(
framework
.
TestContext
.
ReportDir
,
fmt
.
Sprintf
(
"junit_%v%02d.xml"
,
framework
.
TestContext
.
ReportPrefix
,
config
.
GinkgoConfig
.
ParallelNode
))))
}
}
klog
.
Infof
(
"Starting e2e run %q on Ginkgo node %d"
,
framework
.
RunI
d
,
config
.
GinkgoConfig
.
ParallelNode
)
klog
.
Infof
(
"Starting e2e run %q on Ginkgo node %d"
,
framework
.
RunI
D
,
config
.
GinkgoConfig
.
ParallelNode
)
ginkgo
.
RunSpecsWithDefaultAndCustomReporters
(
t
,
"Kubernetes e2e suite"
,
r
)
}
...
...
test/e2e/framework/util.go
View file @
56d79129
This diff is collapsed.
Click to expand it.
test/e2e/network/network_tiers.go
View file @
56d79129
...
...
@@ -102,7 +102,7 @@ var _ = SIGDescribe("Services [Feature:GCEAlphaFeature][Slow]", func() {
// Test 3: create a standard-tierd LB with a user-requested IP.
By
(
"reserving a static IP for the load balancer"
)
requestedAddrName
:=
fmt
.
Sprintf
(
"e2e-ext-lb-net-tier-%s"
,
framework
.
RunI
d
)
requestedAddrName
:=
fmt
.
Sprintf
(
"e2e-ext-lb-net-tier-%s"
,
framework
.
RunI
D
)
gceCloud
,
err
:=
gce
.
GetGCECloud
()
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
requestedIP
,
err
:=
reserveAlphaRegionalAddress
(
gceCloud
,
requestedAddrName
,
cloud
.
NetworkTierStandard
)
...
...
test/e2e/network/service.go
View file @
56d79129
...
...
@@ -588,7 +588,7 @@ var _ = SIGDescribe("Services", func() {
staticIPName
:=
""
if
framework
.
ProviderIs
(
"gce"
,
"gke"
)
{
By
(
"creating a static load balancer IP"
)
staticIPName
=
fmt
.
Sprintf
(
"e2e-external-lb-test-%s"
,
framework
.
RunI
d
)
staticIPName
=
fmt
.
Sprintf
(
"e2e-external-lb-test-%s"
,
framework
.
RunI
D
)
gceCloud
,
err
:=
gce
.
GetGCECloud
()
Expect
(
err
)
.
NotTo
(
HaveOccurred
(),
"failed to get GCE cloud provider"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment