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
590bf553
Unverified
Commit
590bf553
authored
Feb 15, 2019
by
draveness
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: use FilterActivePods instead in replicaset controller
parent
c90bf8d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
replica_set.go
pkg/controller/replicaset/replica_set.go
+1
-6
No files found.
pkg/controller/replicaset/replica_set.go
View file @
590bf553
...
@@ -595,12 +595,7 @@ func (rsc *ReplicaSetController) syncReplicaSet(key string) error {
...
@@ -595,12 +595,7 @@ func (rsc *ReplicaSetController) syncReplicaSet(key string) error {
return
err
return
err
}
}
// Ignore inactive pods.
// Ignore inactive pods.
var
filteredPods
[]
*
v1
.
Pod
filteredPods
:=
controller
.
FilterActivePods
(
allPods
)
for
_
,
pod
:=
range
allPods
{
if
controller
.
IsPodActive
(
pod
)
{
filteredPods
=
append
(
filteredPods
,
pod
)
}
}
// NOTE: filteredPods are pointing to objects from cache - if you need to
// NOTE: filteredPods are pointing to objects from cache - if you need to
// modify them, you need to copy it first.
// modify them, you need to copy it first.
...
...
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