Commit 3f3c1d0f authored by Jimmi Dyson's avatar Jimmi Dyson Committed by Fabian Reinartz

Kubernetes SD: API server config rename and auth options update

parent d4748699
...@@ -307,16 +307,16 @@ likely in future releases. ...@@ -307,16 +307,16 @@ likely in future releases.
Kubernetes SD configurations allow retrieving scrape targets from Kubernetes SD configurations allow retrieving scrape targets from
[Kubernetes'](http://kubernetes.io/) REST API. By default, this discovers [Kubernetes'](http://kubernetes.io/) REST API. By default, this discovers
masters, nodes, and appropriately annotated services so that metrics from both API servers, nodes, and appropriately annotated services so that metrics from both
cluster components and deployed applications can be scraped. This will create cluster components and deployed applications can be scraped. This will create
multiple target groups: one for all masters with each master as a target, one multiple target groups: one for all API servers with each API server as a target, one
for all nodes with each node as a target, and one for each service containing for all nodes with each node as a target, and one for each service containing
each service endpoint as a target. each service endpoint as a target.
The following meta labels are available on targets during relabeling: The following meta labels are available on targets during relabeling:
* `__meta_kubernetes_role`: the role of the target: one of `master`, `node` or * `__meta_kubernetes_role`: the role of the target: one of `apiserver`, `node`
`service` or `service`
* `__meta_kubernetes_node_label_<labelname>`: each node label from the * `__meta_kubernetes_node_label_<labelname>`: each node label from the
Kubernetes API Kubernetes API
* `__meta_kubernetes_service_namespace`: the namespace of the service * `__meta_kubernetes_service_namespace`: the namespace of the service
...@@ -334,9 +334,9 @@ See below for the configuration options for Kubernetes discovery: ...@@ -334,9 +334,9 @@ See below for the configuration options for Kubernetes discovery:
``` ```
# The information to access the Kubernetes API. # The information to access the Kubernetes API.
# The master addresses. In a cluster this will normally be # The API server addresses. In a cluster this will normally be
# `https://kubernetes.default.svc`. Supports multiple HA masters. # `https://kubernetes.default.svc`. Supports multiple HA API servers.
masters: api_servers:
- [<host>] - [<host>]
# Run in cluster. This will use the automounted CA certificate and bearer # Run in cluster. This will use the automounted CA certificate and bearer
...@@ -347,14 +347,21 @@ masters: ...@@ -347,14 +347,21 @@ masters:
# port of 10255 (default). # port of 10255 (default).
[ kubelet_port: <int> ] [ kubelet_port: <int> ]
# File to read the bearer token from to authenticate to the API server. If # Optional authentication information used to authenticate to the API server.
# running in a pod, then it is best to use a service account and set in_cluster # Note that `basic_auth`, `bearer_token` and `bearer_token_file` options are
# to true. # mutually exclusive.
[ bearer_token_file: <filename> ]
# Username and password for basic authentication to the API server. # Optional HTTP basic authentication information.
[ username: <string> ] basic_auth:
[ password: <string> ] [ username: <string> ]
[ password: <string> ]
# Optional bearer token authentication information.
[ bearer_token: <string> ]
# Optional bearer token file authentication information. If running in a pod,
# then it is best to use a service account and set in_cluster to true.
[ bearer_token_file: <filename> ]
# TLS configuration. If running in a pod, then it is best to use a service # TLS configuration. If running in a pod, then it is best to use a service
# account and set in_cluster to true. # account and set in_cluster to true.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment