Adding acondrat to prometheus-to-sd owners (#14827)

Signed-off-by: Arcadie Condrat <arcadie.condrat@gmail.com>

version bump

Signed-off-by: Arcadie Condrat <arcadie.condrat@gmail.com>

updating to latest version

Signed-off-by: Arcadie Condrat <arcadie.condrat@gmail.com>

--source is now mandatory so adding a default value

Signed-off-by: Arcadie Condrat <arcadie.condrat@gmail.com>

bump chart version

Signed-off-by: Arcadie Condrat <arcadie.condrat@gmail.com>
This commit is contained in:
Arcadie Condrat
2019-07-15 10:41:04 -07:00
committed by Kubernetes Prow Robot
parent ba0b0e079e
commit d2b64c9d25
4 changed files with 18 additions and 13 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 0.2.2
appVersion: 0.5.2
description: Scrape metrics stored in prometheus format and push them to the Stackdriver
home: https://github.com/GoogleCloudPlatform/k8s-stackdriver/tree/master/prometheus-to-sd
keywords:
@@ -9,4 +9,4 @@ maintainers:
- name: acondrat
email: arcadie.condrat@gmail.com
name: prometheus-to-sd
version: 0.1.1
version: 0.2.0
+4
View File
@@ -0,0 +1,4 @@
approvers:
- acondrat
reviewers:
- acondrat
+9 -9
View File
@@ -38,15 +38,15 @@ The command removes all the Kubernetes components associated with the chart and
The following table lists the configurable parameters and their default values.
| Parameter | Description | Default |
| ------------------ | ----------------------------------------------------------------------------------------- | ------------------------------------------- |
| `image.repository` | prometheus-to-sd image repository | `gcr.io/google-containers/prometheus-to-sd` |
| `image.tag` | prometheus-to-sd image tag | `v0.2.2` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
| `port` | Profiler port | `6060` |
| `metricSources` | Sources for metrics in the next format: component-name:http://host:port?whitelisted=a,b,c | `{}` |
| `nodeSelector` | node labels for pod assignment | `{}` |
| Parameter | Description | Default |
| ------------------ | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
| `image.repository` | prometheus-to-sd image repository | `gcr.io/google-containers/prometheus-to-sd` |
| `image.tag` | prometheus-to-sd image tag | `v0.5.2` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
| `port` | Profiler port | `6060` |
| `metricSources` | Sources for metrics in the next format: component-name:http://host:port?whitelisted=a,b,c | `{"kube-state-metrics": "http://kube-state-metrics:8080"}` |
| `nodeSelector` | node labels for pod assignment | `{}` |
For more information please refer to the [prometheus-to-sd](https://github.com/GoogleCloudPlatform/k8s-stackdriver/tree/master/prometheus-to-sd) documentation.
+3 -2
View File
@@ -1,9 +1,10 @@
replicaCount: 1
image:
repository: gcr.io/google-containers/prometheus-to-sd
tag: v0.2.2
tag: v0.5.2
pullPolicy: IfNotPresent
resources: {}
port: 6060
metricsSources: {}
metricsSources:
kube-state-metrics: http://kube-state-metrics:8080
nodeSelector: {}