2014-09-29 18:39:32 +00:00
|
|
|
# Services in Kubernetes
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
2015-04-15 15:46:26 +00:00
|
|
|
Kubernetes [`Pods`](pods.md) are mortal. They are born and they die, and they
|
2015-03-04 22:40:26 +00:00
|
|
|
are not resurrected. [`ReplicationControllers`](replication-controller.md) in
|
|
|
|
particular create and destroy `Pods` dynamically (e.g. when scaling up or down
|
|
|
|
or when doing rolling updates). While each `Pod` gets its own IP address, even
|
2015-06-01 09:27:39 +00:00
|
|
|
those IP addresses cannot be relied upon to be stable over time. This leads to
|
2015-03-04 22:40:26 +00:00
|
|
|
a problem: if some set of `Pods` (let's call them backends) provides
|
|
|
|
functionality to other `Pods` (let's call them frontends) inside the Kubernetes
|
|
|
|
cluster, how do those frontends find out and keep track of which backends are
|
|
|
|
in that set?
|
|
|
|
|
|
|
|
Enter `Services`.
|
|
|
|
|
|
|
|
A Kubernetes `Service` is an abstraction which defines a logical set of `Pods`
|
|
|
|
and a policy by which to access them - sometimes called a micro-service. The
|
2015-05-22 06:44:13 +00:00
|
|
|
set of `Pods` targeted by a `Service` is (usually) determined by a [`Label
|
|
|
|
Selector`](labels.md) (see below for why you might want a `Service` without a
|
|
|
|
selector).
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
As an example, consider an image-processing backend which is running with 3
|
2014-09-29 18:39:32 +00:00
|
|
|
replicas. Those replicas are fungible - frontends do not care which backend
|
2015-03-25 21:54:16 +00:00
|
|
|
they use. While the actual `Pods` that compose the backend set may change, the
|
2015-05-22 06:44:13 +00:00
|
|
|
frontend clients should not need to be aware of that or keep track of the list
|
|
|
|
of backends themselves. The `Service` abstraction enables this decoupling.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
For Kubernetes-native applications, Kubernetes offers a simple `Endpoints` API
|
|
|
|
that is updated whenever the set of `Pods` in a `Service` changes. For
|
|
|
|
non-native applications, Kubernetes offers a virtual-IP-based bridge to Services
|
|
|
|
which redirects to the backend `Pods`.
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
## Defining a service
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
A `Service` in Kubernetes is a REST object, similar to a `Pod`. Like all of the
|
|
|
|
REST objects, a `Service` definition can be POSTed to the apiserver to create a
|
|
|
|
new instance. For example, suppose you have a set of `Pods` that each expose
|
|
|
|
port 9376 and carry a label "app=MyApp".
|
2014-09-29 18:39:32 +00:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2015-05-06 16:04:27 +00:00
|
|
|
"kind": "Service",
|
2015-06-05 19:47:15 +00:00
|
|
|
"apiVersion": "v1",
|
2015-05-06 16:04:27 +00:00
|
|
|
"metadata": {
|
2015-05-29 00:05:51 +00:00
|
|
|
"name": "my-service"
|
2015-05-06 16:04:27 +00:00
|
|
|
},
|
|
|
|
"spec": {
|
2015-05-07 00:37:31 +00:00
|
|
|
"selector": {
|
|
|
|
"app": "MyApp"
|
|
|
|
},
|
2015-05-06 16:04:27 +00:00
|
|
|
"ports": [
|
|
|
|
{
|
|
|
|
"protocol": "TCP",
|
|
|
|
"port": 80,
|
|
|
|
"targetPort": 9376
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2014-09-29 18:39:32 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-05-06 16:04:27 +00:00
|
|
|
This specification will create a new `Service` object named "my-service" which
|
2015-05-22 06:44:13 +00:00
|
|
|
targets TCP port 9376 on any `Pod` with the "app=MyApp" label. This `Service`
|
2015-06-05 19:47:15 +00:00
|
|
|
will also be assigned an IP address (sometimes called the "cluster IP"), which
|
2015-05-22 06:44:13 +00:00
|
|
|
is used by the service proxies (see below). The `Service`'s selector will be
|
|
|
|
evaluated continuously and the results will be posted in an `Endpoints` object
|
|
|
|
also named "my-service".
|
|
|
|
|
|
|
|
Note that a `Service` can map an incoming port to any `targetPort`. By default
|
|
|
|
the `targetPort` is the same as the `port` field. Perhaps more interesting is
|
|
|
|
that `targetPort` can be a string, referring to the name of a port in the
|
|
|
|
backend `Pod`s. The actual port number assigned to that name can be different
|
|
|
|
in each backend `Pod`. This offers a lot of flexibility for deploying and
|
|
|
|
evolving your `Service`s. For example, you can change the port number that
|
|
|
|
pods expose in the next version of your backend software, without breaking
|
|
|
|
clients.
|
|
|
|
|
|
|
|
Kubernetes `Service`s support `TCP` and `UDP` for protocols. The default
|
|
|
|
is `TCP`.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
### Services without selectors
|
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
Services generally abstract access to Kubernetes `Pods`, but they can also
|
|
|
|
abstract other kinds of backends. For example:
|
2015-06-01 09:39:29 +00:00
|
|
|
|
|
|
|
* You want to have an external database cluster in production, but in test
|
|
|
|
you use your own databases.
|
|
|
|
* You want to point your service to a service in another
|
|
|
|
[`Namespace`](namespaces.md) or on another cluster.
|
|
|
|
* You are migrating your workload to Kubernetes and some of your backends run
|
|
|
|
outside of Kubernetes.
|
2015-03-04 15:13:12 +00:00
|
|
|
|
|
|
|
In any of these scenarios you can define a service without a selector:
|
|
|
|
|
|
|
|
```json
|
2015-05-06 16:04:27 +00:00
|
|
|
{
|
|
|
|
"kind": "Service",
|
2015-06-05 19:47:15 +00:00
|
|
|
"apiVersion": "v1",
|
2015-05-06 16:04:27 +00:00
|
|
|
"metadata": {
|
|
|
|
"name": "my-service"
|
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"ports": [
|
|
|
|
{
|
|
|
|
"protocol": "TCP",
|
|
|
|
"port": 80,
|
|
|
|
"targetPort": 9376
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 15:13:12 +00:00
|
|
|
```
|
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
Because this has no selector, the corresponding `Endpoints` object will not be
|
|
|
|
created. You can manually map the service to your own specific endpoints:
|
2015-03-04 15:13:12 +00:00
|
|
|
|
|
|
|
```json
|
2015-05-06 16:04:27 +00:00
|
|
|
{
|
|
|
|
"kind": "Endpoints",
|
2015-06-05 19:47:15 +00:00
|
|
|
"apiVersion": "v1",
|
2015-05-06 16:04:27 +00:00
|
|
|
"metadata": {
|
|
|
|
"name": "my-service"
|
|
|
|
},
|
|
|
|
"subsets": [
|
|
|
|
{
|
|
|
|
"addresses": [
|
|
|
|
{ "IP": "1.2.3.4" }
|
|
|
|
],
|
|
|
|
"ports": [
|
|
|
|
{ "port": 80 }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2015-03-04 15:13:12 +00:00
|
|
|
```
|
|
|
|
|
2015-05-06 16:04:27 +00:00
|
|
|
Accessing a `Service` without a selector works the same as if it had selector.
|
|
|
|
The traffic will be routed to endpoints defined by the user (`1.2.3.4:80` in
|
2015-03-04 22:40:26 +00:00
|
|
|
this example).
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
## Virtual IPs and service proxies
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
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 (random) 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
|
2015-05-22 06:44:13 +00:00
|
|
|
`SessionAffinity` of the `Service`. Lastly, it installs iptables rules which
|
|
|
|
capture traffic to the `Service`'s `Port` on the `Service`'s cluster IP (which
|
2015-05-06 16:04:27 +00:00
|
|
|
is entirely virtual) and redirects that traffic to the previously described
|
|
|
|
port.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
`Services` or `Pods`.
|
|
|
|
|
|
|
|
![Services overview diagram](services_overview.png)
|
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
By default, the choice of backend is random. Client-IP based session affinity
|
|
|
|
can be selected by setting `service.spec.sessionAffinity` to `"ClientIP"` (the
|
|
|
|
default is `"None"`).
|
2015-04-30 19:41:21 +00:00
|
|
|
|
2015-05-06 16:04:27 +00:00
|
|
|
As of Kubernetes 1.0, `Service`s are a "layer 3" (TCP/UDP over IP) construct. We do not
|
|
|
|
yet have a concept of "layer 7" (HTTP) services.
|
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
## Multi-Port Services
|
|
|
|
|
|
|
|
Many `Service`s need to expose more than one port. For this case, Kubernetes
|
|
|
|
supports multiple port definitions on a `Service` object. When using multiple
|
|
|
|
ports you must give all of your ports names, so that endpoints can be
|
|
|
|
disambiguated. For example:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"kind": "Service",
|
2015-06-05 19:47:15 +00:00
|
|
|
"apiVersion": "v1",
|
2015-05-22 06:44:13 +00:00
|
|
|
"metadata": {
|
2015-05-29 00:05:51 +00:00
|
|
|
"name": "my-service"
|
2015-05-22 06:44:13 +00:00
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"selector": {
|
|
|
|
"app": "MyApp"
|
|
|
|
},
|
|
|
|
"ports": [
|
|
|
|
{
|
|
|
|
"name": "http",
|
|
|
|
"protocol": "TCP",
|
|
|
|
"port": 80,
|
|
|
|
"targetPort": 9376
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "https",
|
|
|
|
"protocol": "TCP",
|
|
|
|
"port": 443,
|
|
|
|
"targetPort": 9377
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
## Choosing your own IP address
|
2015-05-22 06:44:13 +00:00
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
A user can specify their own cluster IP address as part of a `Service` creation
|
2015-06-05 19:47:15 +00:00
|
|
|
request. To do this, set the `spec.clusterIP` field. For example, if they
|
|
|
|
already have an existing DNS entry that they wish to replace, or legacy systems
|
|
|
|
that are configured for a specific IP address and difficult to re-configure.
|
|
|
|
The IP address that a user chooses must be a valid IP address and within the
|
|
|
|
service_cluster_ip_range CIDR range that is specified by flag to the API server.
|
|
|
|
If the IP address value is invalid, the apiserver returns a 422 HTTP status code
|
|
|
|
to indicate that the value is invalid.
|
2015-05-22 06:44:13 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
### Why not use round-robin DNS?
|
|
|
|
|
|
|
|
A question that pops up every now and then is why we do all this stuff with
|
2015-05-23 20:41:11 +00:00
|
|
|
virtual IPs rather than just use standard round-robin DNS. There are a few
|
|
|
|
reasons:
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
* There is a long history of DNS libraries not respecting DNS TTLs and
|
|
|
|
caching the results of name lookups.
|
|
|
|
* Many apps do DNS lookups once and cache the results.
|
|
|
|
* Even if apps and libraries did proper re-resolution, the load of every
|
|
|
|
client re-resolving DNS over and over would be difficult to manage.
|
|
|
|
|
|
|
|
We try to discourage users from doing things that hurt themselves. That said,
|
2015-05-23 20:41:11 +00:00
|
|
|
if enough people ask for this, we may implement it as an alternative.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
## Discovering services
|
|
|
|
|
|
|
|
Kubernetes supports 2 primary modes of finding a `Service` - environment
|
|
|
|
variables and DNS.
|
|
|
|
|
|
|
|
### Environment variables
|
|
|
|
|
|
|
|
When a `Pod` is run on a `Node`, the kubelet adds a set of environment variables
|
|
|
|
for each active `Service`. It supports both [Docker links
|
|
|
|
compatible](https://docs.docker.com/userguide/dockerlinks/) variables (see
|
|
|
|
[makeLinkVariables](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/pkg/kubelet/envvars/envvars.go#L49))
|
|
|
|
and simpler `{SVCNAME}_SERVICE_HOST` and `{SVCNAME}_SERVICE_PORT` variables,
|
|
|
|
where the Service name is upper-cased and dashes are converted to underscores.
|
|
|
|
|
|
|
|
For example, the Service "redis-master" which exposes TCP port 6379 and has been
|
2015-05-23 20:41:11 +00:00
|
|
|
allocated cluster IP address 10.0.0.11 produces the following environment
|
2015-03-04 22:40:26 +00:00
|
|
|
variables:
|
|
|
|
|
2014-11-24 18:01:56 +00:00
|
|
|
```
|
|
|
|
REDIS_MASTER_SERVICE_HOST=10.0.0.11
|
|
|
|
REDIS_MASTER_SERVICE_PORT=6379
|
|
|
|
REDIS_MASTER_PORT=tcp://10.0.0.11:6379
|
|
|
|
REDIS_MASTER_PORT_6379_TCP=tcp://10.0.0.11:6379
|
|
|
|
REDIS_MASTER_PORT_6379_TCP_PROTO=tcp
|
|
|
|
REDIS_MASTER_PORT_6379_TCP_PORT=6379
|
|
|
|
REDIS_MASTER_PORT_6379_TCP_ADDR=10.0.0.11
|
|
|
|
```
|
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
*This does imply an ordering requirement* - any `Service` that a `Pod` wants to
|
|
|
|
access must be created before the `Pod` itself, or else the environment
|
|
|
|
variables will not be populated. DNS does not have this restriction.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
### DNS
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
An optional (though strongly recommended) cluster add-on is a DNS server. The
|
|
|
|
DNS server watches the Kubernetes API for new `Services` and creates a set of
|
|
|
|
DNS records for each. If DNS has been enabled throughout the cluster then all
|
|
|
|
`Pods` should be able to do name resolution of `Services` automatically.
|
|
|
|
|
|
|
|
For example, if you have a `Service` called "my-service" in Kubernetes
|
|
|
|
`Namespace` "my-ns" a DNS record for "my-service.my-ns" is created. `Pods`
|
|
|
|
which exist in the "my-ns" `Namespace` should be able to find it by simply doing
|
2015-05-22 06:44:13 +00:00
|
|
|
a name lookup for "my-service". `Pods` which exist in other `Namespace`s must
|
2015-03-04 22:40:26 +00:00
|
|
|
qualify the name as "my-service.my-ns". The result of these name lookups is the
|
2015-05-22 06:44:13 +00:00
|
|
|
cluster IP.
|
|
|
|
|
|
|
|
We will soon add DNS support for multi-port `Service`s in the form of SRV
|
|
|
|
records.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
## Headless services
|
2015-03-20 22:28:57 +00:00
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
Sometimes you don't need or want load-balancing and a single service IP. In
|
|
|
|
this case, you can create "headless" services by specifying `"None"` for the
|
2015-06-05 19:47:15 +00:00
|
|
|
cluster IP (`spec.clusterIP`).
|
2015-05-23 20:41:11 +00:00
|
|
|
For such `Service`s, a cluster IP is not allocated and service-specific
|
|
|
|
environment variables for `Pod`s are not created. DNS is configured to return
|
|
|
|
multiple A records (addresses) for the `Service` name, which point directly to
|
|
|
|
the `Pod`s backing the `Service`. Additionally, the kube proxy does not handle
|
|
|
|
these services and there is no load balancing or proxying done by the platform
|
|
|
|
for them. The endpoints controller will still create `Endpoints` records in
|
|
|
|
the API.
|
2015-05-22 06:44:13 +00:00
|
|
|
|
|
|
|
This option allows developers to reduce coupling to the Kubernetes system, if
|
|
|
|
they desire, but leaves them freedom to do discovery in their own way.
|
|
|
|
Applications can still use a self-registration pattern and adapters for other
|
|
|
|
discovery systems could easily be built upon this API.
|
2015-03-20 22:28:57 +00:00
|
|
|
|
2015-06-05 23:33:57 +00:00
|
|
|
##<a name="external"></a>External services
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
For some parts of your application (e.g. frontends) you may want to expose a
|
|
|
|
Service onto an external (outside of your cluster, maybe public internet) IP
|
2015-05-22 06:44:13 +00:00
|
|
|
address. Kubernetes supports two ways of doing this: `NodePort`s and
|
|
|
|
`LoadBalancer`s.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
Every `Service` has a `Type` field which defines how the `Service` can be
|
|
|
|
accessed. Valid values for this field are:
|
2015-06-01 13:38:55 +00:00
|
|
|
|
2015-06-05 19:47:15 +00:00
|
|
|
* `ClusterIP`: use a cluster-internal IP only - this is the default
|
2015-06-01 13:38:55 +00:00
|
|
|
* `NodePort`: use a cluster IP, but also expose the service on a port on each
|
2015-05-22 06:44:13 +00:00
|
|
|
node of the cluster (the same port on each)
|
2015-06-01 13:38:55 +00:00
|
|
|
* `LoadBalancer`: use a ClusterIP and a NodePort, but also ask the cloud
|
2015-05-22 06:44:13 +00:00
|
|
|
provider for a load balancer which forwards to the `Service`
|
2015-05-06 16:04:27 +00:00
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
Note that while `NodePort`s can be TCP or UDP, `LoadBalancer`s only support TCP
|
|
|
|
as of Kubernetes 1.0.
|
|
|
|
|
|
|
|
### Type = NodePort
|
|
|
|
|
|
|
|
If you set the `type` field to `"NodePort"`, the Kubernetes master will
|
|
|
|
allocate you a port (from a flag-configured range) on each node for each port
|
|
|
|
exposed by your `Service`. That port will be reported in your `Service`'s
|
|
|
|
`spec.ports[*].nodePort` field. If you specify a value in that field, the
|
|
|
|
system will allocate you that port or else will fail the API transaction.
|
|
|
|
|
|
|
|
This gives developers the freedom to set up their own load balancers, to
|
|
|
|
configure cloud environments that are not fully supported by Kubernetes, or
|
|
|
|
even to just expose one or more nodes' IPs directly.
|
|
|
|
|
|
|
|
### Type = LoadBalancer
|
|
|
|
|
|
|
|
On cloud providers which support external load balancers, setting the `type`
|
|
|
|
field to `"LoadBalancer"` will provision a load balancer for your `Service`.
|
|
|
|
The actual creation of the load balancer happens asynchronously, and
|
|
|
|
information about the provisioned balancer will be published in the `Service`'s
|
|
|
|
`status.loadBalancer` field. For example:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"kind": "Service",
|
2015-06-05 19:47:15 +00:00
|
|
|
"apiVersion": "v1",
|
2015-05-22 06:44:13 +00:00
|
|
|
"metadata": {
|
2015-05-29 00:05:51 +00:00
|
|
|
"name": "my-service"
|
2015-05-22 06:44:13 +00:00
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"selector": {
|
|
|
|
"app": "MyApp"
|
|
|
|
},
|
|
|
|
"ports": [
|
|
|
|
{
|
|
|
|
"protocol": "TCP",
|
|
|
|
"port": 80,
|
|
|
|
"targetPort": 9376,
|
|
|
|
"nodePort": 30061
|
|
|
|
}
|
|
|
|
],
|
2015-06-05 19:47:15 +00:00
|
|
|
"clusterIP": "10.0.171.239",
|
2015-05-22 06:44:13 +00:00
|
|
|
"type": "LoadBalancer"
|
|
|
|
},
|
|
|
|
"status": {
|
|
|
|
"loadBalancer": {
|
|
|
|
"ingress": [
|
|
|
|
{
|
|
|
|
"ip": "146.148.47.155"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Traffic from the external load balancer will be directed at the backend `Pods`,
|
|
|
|
though exactly how that works depends on the cloud provider.
|
2015-03-24 03:22:36 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
## Shortcomings
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
We expect that using iptables and userspace proxies for VIPs will work at
|
2015-03-04 22:40:26 +00:00
|
|
|
small to medium scale, but may not scale to very large clusters with thousands
|
|
|
|
of Services. See [the original design proposal for
|
|
|
|
portals](https://github.com/GoogleCloudPlatform/kubernetes/issues/1107) for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
Using the kube-proxy obscures the source-IP of a packet accessing a `Service`.
|
2015-05-06 16:04:27 +00:00
|
|
|
This makes some kinds of firewalling impossible.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
LoadBalancers only support TCP, not UDP.
|
|
|
|
|
|
|
|
The `Type` field is designed as nested functionality - each level adds to the
|
|
|
|
previous. This is not strictly required on all cloud providers (e.g. GCE does
|
|
|
|
not need to allocate a `NodePort` to make `LoadBalancer` work, but AWS does)
|
|
|
|
but the current API requires it.
|
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
## Future work
|
|
|
|
|
|
|
|
In the future we envision that the proxy policy can become more nuanced than
|
2015-06-01 13:56:59 +00:00
|
|
|
simple round robin balancing, for example master-elected or sharded. We also
|
2015-03-04 22:40:26 +00:00
|
|
|
envision that some `Services` will have "real" load balancers, in which case the
|
2015-05-23 20:41:11 +00:00
|
|
|
VIP will simply transport the packets there.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
|
|
|
There's a
|
|
|
|
[proposal](https://github.com/GoogleCloudPlatform/kubernetes/issues/3760) to
|
|
|
|
eliminate userspace proxying in favor of doing it all in iptables. This should
|
2015-05-06 16:04:27 +00:00
|
|
|
perform better and fix the source-IP obfuscation, though is less flexible than
|
|
|
|
arbitrary userspace code.
|
2015-03-04 22:40:26 +00:00
|
|
|
|
2015-05-06 16:04:27 +00:00
|
|
|
We intend to have first-class support for L7 (HTTP) `Service`s.
|
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
We intend to have more flexible ingress modes for `Service`s which encompass
|
|
|
|
the current `ClusterIP`, `NodePort`, and `LoadBalancer` modes and more.
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
## The gory details of virtual IPs
|
2014-09-29 18:39:32 +00:00
|
|
|
|
|
|
|
The previous information should be sufficient for many people who just want to
|
2015-03-04 22:40:26 +00:00
|
|
|
use `Services`. However, there is a lot going on behind the scenes that may be
|
2014-09-29 18:39:32 +00:00
|
|
|
worth understanding.
|
|
|
|
|
|
|
|
### Avoiding collisions
|
|
|
|
|
|
|
|
One of the primary philosophies of Kubernetes is that users should not be
|
|
|
|
exposed to situations that could cause their actions to fail through no fault
|
|
|
|
of their own. In this situation, we are looking at network ports - users
|
|
|
|
should not have to choose a port number if that choice might collide with
|
|
|
|
another user. That is an isolation failure.
|
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
In order to allow users to choose a port number for their `Services`, we must
|
|
|
|
ensure that no two `Services` can collide. We do that by allocating each
|
|
|
|
`Service` its own IP address.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-05-03 22:44:05 +00:00
|
|
|
To ensure each service receives a unique IP, an internal allocator atomically
|
|
|
|
updates a global allocation map in etcd prior to each service. The map object
|
|
|
|
must exist in the registry for services to get IPs, otherwise creations will
|
|
|
|
fail with a message indicating an IP could not be allocated. A background
|
|
|
|
controller is responsible for creating that map (to migrate from older versions
|
|
|
|
of Kubernetes that used in memory locking) as well as checking for invalid
|
|
|
|
assignments due to administrator intervention and cleaning up any any IPs
|
|
|
|
that were allocated but which no service currently uses.
|
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
### IPs and VIPs
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-04 22:40:26 +00:00
|
|
|
Unlike `Pod` IP addresses, which actually route to a fixed destination,
|
|
|
|
`Service` IPs are not actually answered by a single host. Instead, we use
|
2015-05-06 16:04:27 +00:00
|
|
|
`iptables` (packet processing logic in Linux) to define virtual IP addresses
|
2015-05-23 20:41:11 +00:00
|
|
|
which are transparently redirected as needed. When clients connect to the
|
|
|
|
VIP, their traffic is automatically transported to an appropriate endpoint.
|
|
|
|
The environment variables and DNS for `Services` are actually populated in
|
|
|
|
terms of the `Service`'s VIP and port.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
|
|
|
As an example, consider the image processing application described above.
|
2015-05-23 20:41:11 +00:00
|
|
|
When the backend `Service` is created, the Kubernetes master assigns a virtual
|
2015-03-04 22:40:26 +00:00
|
|
|
IP address, for example 10.0.0.1. Assuming the `Service` port is 1234, the
|
2015-05-23 20:41:11 +00:00
|
|
|
`Service` is observed by all of the `kube-proxy` instances in the cluster.
|
|
|
|
When a proxy sees a new `Service`, it opens a new random port, establishes an
|
|
|
|
iptables redirect from the VIP to this new port, and starts accepting
|
|
|
|
connections on it.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-05-23 20:41:11 +00:00
|
|
|
When a client connects to the VIP the iptables rule kicks in, and redirects
|
2015-03-04 22:40:26 +00:00
|
|
|
the packets to the `Service proxy`'s own port. The `Service proxy` chooses a
|
|
|
|
backend, and starts proxying traffic from the client to the backend.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-05-22 06:44:13 +00:00
|
|
|
This means that `Service` owners can choose any port they want without risk of
|
|
|
|
collision. Clients can simply connect to an IP and port, without being aware
|
|
|
|
of which `Pod`s they are actually accessing.
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-03-14 05:40:47 +00:00
|
|
|
![Services detailed diagram](services_detail.png)
|
2014-09-29 18:39:32 +00:00
|
|
|
|
2015-05-14 22:12:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/services.md?pixel)]()
|