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
2a5e83ad
Commit
2a5e83ad
authored
Dec 10, 2015
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #17924 from xinxiaogang/master
Auto commit by PR queue bot
parents
0bf11d89
83df2757
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
node.md
docs/admin/node.md
+7
-1
No files found.
docs/admin/node.md
View file @
2a5e83ad
...
@@ -167,7 +167,7 @@ Node controller is a component in Kubernetes master which manages Node
...
@@ -167,7 +167,7 @@ Node controller is a component in Kubernetes master which manages Node
objects. It performs two major functions: cluster-wide node synchronization
objects. It performs two major functions: cluster-wide node synchronization
and single node life-cycle management.
and single node life-cycle management.
Node controller has a sync loop that
creates/
deletes Nodes from Kubernetes
Node controller has a sync loop that deletes Nodes from Kubernetes
based on all matching VM instances listed from the cloud provider. The sync period
based on all matching VM instances listed from the cloud provider. The sync period
can be controlled via flag
`--node-sync-period`
. If a new VM instance
can be controlled via flag
`--node-sync-period`
. If a new VM instance
gets created, Node Controller creates a representation for it. If an existing
gets created, Node Controller creates a representation for it. If an existing
...
@@ -178,6 +178,12 @@ join a node to a Kubernetes cluster, you as an admin need to make sure proper se
...
@@ -178,6 +178,12 @@ join a node to a Kubernetes cluster, you as an admin need to make sure proper se
running in the node. In the future, we plan to automatically provision some node
running in the node. In the future, we plan to automatically provision some node
services.
services.
In general, node controller is responsible for updating the NodeReady condition of node
status to ConditionUnknown when a node becomes unreachable (e.g. due to the node being down),
and then later evicting all the pods from the node (using graceful termination) if the node
continues to be unreachable. (The current timeouts for those are 40s and 5m, respectively.)
It also allocates CIDR blocks to the new nodes.
### Self-Registration of Nodes
### Self-Registration of Nodes
When kubelet flag
`--register-node`
is true (the default), the kubelet will attempt to
When kubelet flag
`--register-node`
is true (the default), the kubelet will attempt to
...
...
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