@@ -12,7 +12,7 @@ This page explains proxies used with Kubernetes.
12
12
13
13
There are several different proxies you may encounter when using Kubernetes:
14
14
15
- 1 . The [ kubectl proxy] ( /docs/tasks/access-application-cluster/access-cluster/#directly-accessing-the-rest-api ) :
15
+ 1 . The [ kubectl proxy] ( /docs/tasks/access-application-cluster/access-cluster/#directly-accessing-the-rest-api ) :
16
16
17
17
- runs on a user's desktop or in a pod
18
18
- proxies from a localhost address to the Kubernetes apiserver
@@ -21,7 +21,7 @@ There are several different proxies you may encounter when using Kubernetes:
21
21
- locates apiserver
22
22
- adds authentication headers
23
23
24
- 1 . The [ apiserver proxy] ( /docs/tasks/access-application-cluster/access-cluster/#discovering-builtin-services ) :
24
+ 1 . The [ apiserver proxy] ( /docs/tasks/access-application-cluster/access-cluster/#discovering-builtin-services ) :
25
25
26
26
- is a bastion built into the apiserver
27
27
- connects a user outside of the cluster to cluster IPs which otherwise might not be reachable
@@ -31,21 +31,21 @@ There are several different proxies you may encounter when using Kubernetes:
31
31
- can be used to reach a Node, Pod, or Service
32
32
- does load balancing when used to reach a Service
33
33
34
- 1 . The [ kube proxy] ( /docs/concepts/services-networking/service/#ips-and-vips ) :
34
+ 1 . The [ kube proxy] ( /docs/concepts/services-networking/service/#ips-and-vips ) :
35
35
36
36
- runs on each node
37
37
- proxies UDP and TCP
38
38
- does not understand HTTP
39
39
- provides load balancing
40
40
- is just used to reach services
41
41
42
- 1 . A Proxy/Load-balancer in front of apiserver(s):
42
+ 1 . A Proxy/Load-balancer in front of apiserver(s):
43
43
44
44
- existence and implementation varies from cluster to cluster (e.g. nginx)
45
45
- sits between all clients and one or more apiservers
46
46
- acts as load balancer if there are several apiservers.
47
47
48
- 1 . Cloud Load Balancers on external services:
48
+ 1 . Cloud Load Balancers on external services:
49
49
50
50
- are provided by some cloud providers (e.g. AWS ELB, Google Cloud Load Balancer)
51
51
- are created automatically when the Kubernetes service has type ` LoadBalancer `
0 commit comments