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
834de107
Commit
834de107
authored
Oct 13, 2016
by
Chao Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
convert replicatset util to use clientset
parent
adfbe8d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
replica_set_utils.go
pkg/controller/replicaset/replica_set_utils.go
+2
-2
No files found.
pkg/controller/replicaset/replica_set_utils.go
View file @
834de107
...
...
@@ -23,11 +23,11 @@ import (
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/apis/extensions"
client
"k8s.io/kubernetes/pkg/client
/unversioned"
unversionedextensions
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/extensions
/unversioned"
)
// updateReplicaCount attempts to update the Status.Replicas of the given ReplicaSet, with a single GET/PUT retry.
func
updateReplicaCount
(
rsClient
client
.
ReplicaSetInterface
,
rs
extensions
.
ReplicaSet
,
numReplicas
,
numFullyLabeledReplicas
,
numReadyReplicas
,
numAvailableReplicas
int
)
(
updateErr
error
)
{
func
updateReplicaCount
(
rsClient
unversionedextensions
.
ReplicaSetInterface
,
rs
extensions
.
ReplicaSet
,
numReplicas
,
numFullyLabeledReplicas
,
numReadyReplicas
,
numAvailableReplicas
int
)
(
updateErr
error
)
{
// This is the steady state. It happens when the ReplicaSet doesn't have any expectations, since
// we do a periodic relist every 30s. If the generations differ but the replicas are
// the same, a caller might've resized to the same replica count.
...
...
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