Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[prometheus-to-sd] bump prometheus-to-sd exporter to 0.9.2 #3899

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions charts/prometheus-to-sd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v1
appVersion: 0.5.2
appVersion: "v0.9.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:
- prometheus
- stackdriver
- prometheus
- stackdriver
maintainers:
- name: acondrat
email: [email protected]
- name: acondrat
email: [email protected]
name: prometheus-to-sd
version: 0.4.2
version: 0.5.0
2 changes: 1 addition & 1 deletion charts/prometheus-to-sd/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: profiler
Expand Down
3 changes: 2 additions & 1 deletion charts/prometheus-to-sd/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
replicaCount: 1
image:
repository: gcr.io/google-containers/prometheus-to-sd
tag: v0.5.2
# if not set appVersion field from Chart.yaml is used
tag: ""
pullPolicy: IfNotPresent
resources: {}
port: 6060
Expand Down
Loading