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
446257b8
Commit
446257b8
authored
Sep 29, 2015
by
Brendan Burns
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14707 from jijun2/fix-0929
update service&endpoint describe
parents
a227cce2
d624bee7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
services.md
docs/user-guide/services.md
+4
-4
No files found.
docs/user-guide/services.md
View file @
446257b8
...
...
@@ -208,11 +208,11 @@ this example).
Every node in a Kubernetes cluster runs a
`kube-proxy`
. This application
watches the Kubernetes master for the addition and removal of
`Service`
and
`Endpoints`
objects. For each
`Service`
it opens a port (randomly chosen)
on the local node. Any connections
made to that
port will be proxied to one of
the corresponding backend
`Pods`
. Which backend to use is decided based on the
on the local node. Any connections
to
`service`
port will be proxied to one of
the corresponding backend
`Pods`
. Which backend
`Pod`
to use is decided based on the
`SessionAffinity`
of the
`Service`
. Lastly, it installs iptables rules which
capture traffic to the
`Service`
's cluster IP (which is virtual) and
`Port`
and
redirects that traffic to the
previously described port
.
capture traffic to the
`Service`
's cluster IP (which is virtual) and
`Port`
then
redirects that traffic to the
backend
`Pod`
(
`Endpoints`
)
.
The net result is that any traffic bound for the
`Service`
is proxied to an
appropriate backend without the clients knowing anything about Kubernetes or
...
...
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