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
ebec856c
Commit
ebec856c
authored
Mar 02, 2018
by
hangaoshuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix todo: use a better way to keep this label unique in the tests
parent
2172a2a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
20 deletions
+21
-20
garbage_collector.go
test/e2e/apimachinery/garbage_collector.go
+21
-20
No files found.
test/e2e/apimachinery/garbage_collector.go
View file @
ebec856c
...
...
@@ -18,6 +18,7 @@ package apimachinery
import
(
"fmt"
"sync/atomic"
"time"
batchv1
"k8s.io/api/batch/v1"
...
...
@@ -93,8 +94,8 @@ func getNonOrphanOptions() *metav1.DeleteOptions {
}
var
(
zero
=
int64
(
0
)
zero
=
int64
(
0
)
lablecount
=
int64
(
0
)
CronJobGroupVersionResource
=
schema
.
GroupVersionResource
{
Group
:
batchv1beta1
.
GroupName
,
Version
:
"v1beta1"
,
Resource
:
"cronjobs"
}
)
...
...
@@ -328,6 +329,14 @@ func newCronJob(name, schedule string) *batchv1beta1.CronJob {
}
}
// getUniqLabel returns a UniqLabel based on labeLkey and labelvalue.
func
getUniqLabel
(
labelkey
,
labelvalue
string
)
map
[
string
]
string
{
count
:=
atomic
.
AddInt64
(
&
lablecount
,
1
)
uniqlabelkey
:=
fmt
.
Sprintf
(
"%s-%05d"
,
labelkey
,
count
)
uniqlabelvalue
:=
fmt
.
Sprintf
(
"%s-%05d"
,
labelvalue
,
count
)
return
map
[
string
]
string
{
uniqlabelkey
:
uniqlabelvalue
}
}
var
_
=
SIGDescribe
(
"Garbage collector"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"gc"
)
It
(
"should delete pods created by rc when not orphaning"
,
func
()
{
...
...
@@ -335,8 +344,7 @@ var _ = SIGDescribe("Garbage collector", func() {
rcClient
:=
clientSet
.
CoreV1
()
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
podClient
:=
clientSet
.
CoreV1
()
.
Pods
(
f
.
Namespace
.
Name
)
rcName
:=
"simpletest.rc"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"delete_pods"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"delete_pods"
)
rc
:=
newOwnerRC
(
f
,
rcName
,
2
,
uniqLabels
)
By
(
"create the rc"
)
rc
,
err
:=
rcClient
.
Create
(
rc
)
...
...
@@ -388,8 +396,7 @@ var _ = SIGDescribe("Garbage collector", func() {
rcClient
:=
clientSet
.
CoreV1
()
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
podClient
:=
clientSet
.
CoreV1
()
.
Pods
(
f
.
Namespace
.
Name
)
rcName
:=
"simpletest.rc"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"orphan_pods"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"orphan_pods"
)
rc
:=
newOwnerRC
(
f
,
rcName
,
estimateMaximumPods
(
clientSet
,
10
,
100
),
uniqLabels
)
By
(
"create the rc"
)
rc
,
err
:=
rcClient
.
Create
(
rc
)
...
...
@@ -457,8 +464,7 @@ var _ = SIGDescribe("Garbage collector", func() {
rcClient
:=
clientSet
.
CoreV1
()
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
podClient
:=
clientSet
.
CoreV1
()
.
Pods
(
f
.
Namespace
.
Name
)
rcName
:=
"simpletest.rc"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"orphan_pods_nil_option"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"orphan_pods_nil_option"
)
rc
:=
newOwnerRC
(
f
,
rcName
,
2
,
uniqLabels
)
By
(
"create the rc"
)
rc
,
err
:=
rcClient
.
Create
(
rc
)
...
...
@@ -506,8 +512,7 @@ var _ = SIGDescribe("Garbage collector", func() {
deployClient
:=
clientSet
.
ExtensionsV1beta1
()
.
Deployments
(
f
.
Namespace
.
Name
)
rsClient
:=
clientSet
.
ExtensionsV1beta1
()
.
ReplicaSets
(
f
.
Namespace
.
Name
)
deploymentName
:=
"simpletest.deployment"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"delete_rs"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"delete_rs"
)
deployment
:=
newOwnerDeployment
(
f
,
deploymentName
,
uniqLabels
)
By
(
"create the deployment"
)
createdDeployment
,
err
:=
deployClient
.
Create
(
deployment
)
...
...
@@ -557,8 +562,7 @@ var _ = SIGDescribe("Garbage collector", func() {
deployClient
:=
clientSet
.
ExtensionsV1beta1
()
.
Deployments
(
f
.
Namespace
.
Name
)
rsClient
:=
clientSet
.
ExtensionsV1beta1
()
.
ReplicaSets
(
f
.
Namespace
.
Name
)
deploymentName
:=
"simpletest.deployment"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"orphan_rs"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"orphan_rs"
)
deployment
:=
newOwnerDeployment
(
f
,
deploymentName
,
uniqLabels
)
By
(
"create the deployment"
)
createdDeployment
,
err
:=
deployClient
.
Create
(
deployment
)
...
...
@@ -622,8 +626,7 @@ var _ = SIGDescribe("Garbage collector", func() {
rcClient
:=
clientSet
.
CoreV1
()
.
ReplicationControllers
(
f
.
Namespace
.
Name
)
podClient
:=
clientSet
.
CoreV1
()
.
Pods
(
f
.
Namespace
.
Name
)
rcName
:=
"simpletest.rc"
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"delete_pods_foreground"
}
uniqLabels
:=
getUniqLabel
(
"gctest"
,
"delete_pods_foreground"
)
rc
:=
newOwnerRC
(
f
,
rcName
,
estimateMaximumPods
(
clientSet
,
10
,
100
),
uniqLabels
)
By
(
"create the rc"
)
rc
,
err
:=
rcClient
.
Create
(
rc
)
...
...
@@ -708,18 +711,16 @@ var _ = SIGDescribe("Garbage collector", func() {
rc1Name
:=
"simpletest-rc-to-be-deleted"
replicas
:=
int32
(
estimateMaximumPods
(
clientSet
,
10
,
100
))
halfReplicas
:=
int
(
replicas
/
2
)
// TODO: find better way to keep this label unique in the test
uniqLabels
:=
map
[
string
]
string
{
"gctest"
:
"valid_and_pending_owners"
}
rc1
:=
newOwnerRC
(
f
,
rc1Name
,
replicas
,
uniqLabels
)
uniqLabels_deleted
:=
getUniqLabel
(
"gctest_d"
,
"valid_and_pending_owners_d"
)
rc1
:=
newOwnerRC
(
f
,
rc1Name
,
replicas
,
uniqLabels_deleted
)
By
(
"create the rc1"
)
rc1
,
err
:=
rcClient
.
Create
(
rc1
)
if
err
!=
nil
{
framework
.
Failf
(
"Failed to create replication controller: %v"
,
err
)
}
rc2Name
:=
"simpletest-rc-to-stay"
// TODO: find better way to keep this label unique in the test
uniqLabels
=
map
[
string
]
string
{
"another.key"
:
"another.value"
}
rc2
:=
newOwnerRC
(
f
,
rc2Name
,
0
,
uniqLabels
)
uniqLabels_stay
:=
getUniqLabel
(
"gctest_s"
,
"valid_and_pending_owners_s"
)
rc2
:=
newOwnerRC
(
f
,
rc2Name
,
0
,
uniqLabels_stay
)
By
(
"create the rc2"
)
rc2
,
err
=
rcClient
.
Create
(
rc2
)
if
err
!=
nil
{
...
...
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