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
9c61764a
Unverified
Commit
9c61764a
authored
Apr 12, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
Apr 12, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74892 from globervinodhn/rc_exceed_quota_promote
Promote exceed quota e2e test for Replication Controller to conformance test
parents
c3ac9fb1
6b822632
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
conformance.txt
test/conformance/testdata/conformance.txt
+1
-0
rc.go
test/e2e/apps/rc.go
+6
-1
No files found.
test/conformance/testdata/conformance.txt
View file @
9c61764a
...
@@ -25,6 +25,7 @@ test/e2e/apps/deployment.go: "deployment should support rollover"
...
@@ -25,6 +25,7 @@ test/e2e/apps/deployment.go: "deployment should support rollover"
test/e2e/apps/deployment.go: "deployment should support proportional scaling"
test/e2e/apps/deployment.go: "deployment should support proportional scaling"
test/e2e/apps/job.go: "should delete a job"
test/e2e/apps/job.go: "should delete a job"
test/e2e/apps/rc.go: "should serve a basic image on each replica with a public image"
test/e2e/apps/rc.go: "should serve a basic image on each replica with a public image"
test/e2e/apps/rc.go: "should surface a failure condition on a common issue like exceeded quota"
test/e2e/apps/rc.go: "should adopt matching pods on creation"
test/e2e/apps/rc.go: "should adopt matching pods on creation"
test/e2e/apps/rc.go: "should release no longer matching pods"
test/e2e/apps/rc.go: "should release no longer matching pods"
test/e2e/apps/replica_set.go: "should serve a basic image on each replica with a public image"
test/e2e/apps/replica_set.go: "should serve a basic image on each replica with a public image"
...
...
test/e2e/apps/rc.go
View file @
9c61764a
...
@@ -56,7 +56,12 @@ var _ = SIGDescribe("ReplicationController", func() {
...
@@ -56,7 +56,12 @@ var _ = SIGDescribe("ReplicationController", func() {
TestReplicationControllerServeImageOrFail
(
f
,
"private"
,
privateimage
.
GetE2EImage
())
TestReplicationControllerServeImageOrFail
(
f
,
"private"
,
privateimage
.
GetE2EImage
())
})
})
It
(
"should surface a failure condition on a common issue like exceeded quota"
,
func
()
{
/*
Release : v1.15
Testname: Replication Controller, check for issues like exceeding allocated quota
Description: Attempt to create a Replication Controller with pods exceeding the namespace quota. The creation MUST fail
*/
framework
.
ConformanceIt
(
"should surface a failure condition on a common issue like exceeded quota"
,
func
()
{
testReplicationControllerConditionCheck
(
f
)
testReplicationControllerConditionCheck
(
f
)
})
})
...
...
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