Skip to content

Commit

Permalink
Add fist draft of targets documentation.
Browse files Browse the repository at this point in the history
manugarg committed Apr 6, 2020
1 parent e4a0321 commit 996c3ab
Showing 3 changed files with 125 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/config.toml
Original file line number Diff line number Diff line change
@@ -5,7 +5,9 @@ theme = "hugo-material-docs"
googleAnalytics = "UA-79661-8"
pygmentsUseClasses = true
canonifyURLs = true

[params]
provider = "GitHub"
repo_url = "https://github.com/google/cloudprober"

[markup.goldmark.renderer]
unsafe= true
122 changes: 122 additions & 0 deletions docs/content/concepts/targets.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
---
menu:
main:
name: "Targets Discovery"
weight: 2
title: "Targets Discovery"
date: 2019-10-25T17:24:32-07:00
---
Automatic and continuous discovery of the targets is one of the core features of
Cloudprober. This feature is specially critical for the dynamic environments that today's cloud based deployments make possible. For exmaple, in a kubernetes cluster number of pods and their IPs can change on the fly, either in response to replica count changes or node failures. Automated targets discovery makes sure that we don't have to reconfigure Cloudprober in response to such events.

## Overview
The main idea behind Cloudprober's targets discovery is to use an independent source of truth to figure out the targets we are supposed to monitor. This source of truth is usually the resource provider's API, for example, GCE API and Kubernetes API. Cloudprober periodically polls these APIs to get the latest list of resources.

Example targets configuration:

```bash
targets {
rds_targets {
# Monitor all endpoints for the service service-a
resource_path: "k8s://endpoints/service-a"
}
}
```



Some salient features of the cloudprober's targets discovery:

* Continuous discovery. We don't just discover targets in the beginning, but keep refreshing them at a regular interval.
* Protection against the upstream provider failures. If refreshing of the targets fails during one of the refresh cycles, we continue using the existing set of targets.
* Targets data includes name, labels, IP and ports (labels and ports are optional). These details allow configuring probes, for example, automatically setting port in the HTTP probe, and using target lables for probe results labeling.
* Well-defined protobuf based API (RDS -- more on it below) to add support for more target types.
* Currently supports GCE and Kubernetes resources. Adding more resource types should be straightforward.

Cloudprober currently (__as of v0.10.7__) supports following types of dynamic targets:

Resource Provider | Resource Types
-------------------------------|---------
Kubernetes (k8s) | pods, endpoints, services
GCP (gcp) | gce_instances, pubsub_messages


## Resource Discovery Service

To provide a consistent interface between targets' configuration and the actual implementation, Cloudprober defines and uses a protocol called RDS (Resource Discovery Service). Cloudprober's targets module includes a targets type "rds_targets", that talks to an RDS backend that is either part of the same process or available over gRPC.


<a href="/diagrams/rds_targets.png"><img style="float: center;" width=450px src="/diagrams/rds_targets.png"></a>

Here are the RDS targets configuration ([RDSTargets](https://github.com/google/cloudprober/blob/86a1d1fcd2f8505c45ff462d69458fd5b9964e5f/targets/proto/targets.proto#L12)) options:

```protobuf
message RDSTargets {
// RDS server options, for example:
// rds_server_options {
// server_address: "rds-server.xyz:9314"
// oauth_config: {
// ...
// }
// }
// Default is to use the local server if any.
optional rds.ClientConf.ServerOptions rds_server_options = 1;
// Resource path specifies the resources to return. Resources paths have the
// following format:
// <resource_provider>://<resource_type>/<additional_params>
//
// Examples:
// For GCE instances in projectA: "gcp://gce_instances/<projectA>"
// Kubernetes Pods : "k8s://pods"
optional string resource_path = 2;
// Filters to filter resources by. Example:
// filter {
// key: "namespace"
// value: "mynamesspace"
// }
// filter {
// key: "labels.app"
// value: "web-service"
// }
repeated rds.Filter filter = 3;
// IP config to specify the IP address to pick for a resource. IPConfig
// is defined here:
// https://github.com/google/cloudprober/blob/master/rds/proto/rds.proto
optional rds.IPConfig ip_config = 4;
}
```

Most options are explained in the comments for quick references. Here is the further explanation of some of these options:

### rds_server_options
This [field](https://github.com/google/cloudprober/blob/86a1d1fcd2f8505c45ff462d69458fd5b9964e5f/rds/client/proto/config.proto#L19) specifies how to connect to the RDS server: server address and security options (OAuth and TLS). If left unspecified, it connects to the local server if any (started through `rds_server` option). Next up it looks for the `rds_server_options` in [global_targets_options](https://github.com/google/cloudprober/blob/86a1d1fcd2f8505c45ff462d69458fd5b9964e5f/targets/proto/targets.proto#L125).

### resource_path
Resource path specifies the resources we are interested in. It consists of _resource provider_, _resource type_ and optional _relative path_: `<resource_provider>://<resource_type>/<optional_relative_path>`
* `resource_provider`: Resource provider is a generic concept within the RDS protocol but usually maps to the cloud provider. Cloudprober RDS server currently implements the Kubernetes (k8s) and GCP (gcp) resource providers. We plan to add more resource providers in future.
* `resource_type`: Available resource types depend on the providers, for example, for k8s provider supports the following resource types: _pods_, _endpoints_, and _services_.
* `optional_relative_path`: For most resource types you can specify resource name in the resource path itself, e.g. `k8s://services/cloudprober`. Alternatively, you can use filters to filter by name, resource, etc.

### filter
Filters are key-value strings that can be used to filter resources by various fields. Filters depend on the resource types, but most resources support filtering by name and labels.

```
# Return resources that start with "web" and have label "service:service-a"
...
filter {
key: "name"
value: "^web.*"
}
filter {
key: "labels.service"
value: "service-a"
}
```

* Filters supported by kubernetes resources: [k8s filters](https://github.com/google/cloudprober/blob/e4a0321d38d75fb4655d85632b52039fa7279d1b/rds/kubernetes/kubernetes.go#L55).
* Filters supported by GCP:
* [GCE Instances](https://github.com/google/cloudprober/blob/e4a0321d38d75fb4655d85632b52039fa7279d1b/rds/gcp/gce_instances.go#L44)
* [Pub/Sub Messages](https://github.com/google/cloudprober/blob/e4a0321d38d75fb4655d85632b52039fa7279d1b/rds/gcp/pubsub.go#L34)
Binary file added docs/static/diagrams/rds_targets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 996c3ab

Please sign in to comment.