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
cc294cfb
Commit
cc294cfb
authored
Jun 05, 2017
by
Anirudh Ramanathan
Committed by
GitHub
Jun 05, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #46985 from deads2k/controller-09-agg-health
make the health check wait for ready apiservices
parents
0cff8393
0ad98c29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
aggregator.go
cmd/kube-apiserver/app/aggregator.go
+4
-1
No files found.
cmd/kube-apiserver/app/aggregator.go
View file @
cc294cfb
...
...
@@ -119,7 +119,10 @@ func createAggregatorServer(aggregatorConfig *aggregatorapiserver.Config, delega
for
_
,
apiService
:=
range
apiServices
{
found
:=
false
for
_
,
item
:=
range
items
{
if
item
.
Name
==
apiService
.
Name
{
if
item
.
Name
!=
apiService
.
Name
{
continue
}
if
apiregistration
.
IsAPIServiceConditionTrue
(
item
,
apiregistration
.
Available
)
{
found
=
true
break
}
...
...
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