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-thanos] - Allow bucket web httpPort specification #287

Merged
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
4 changes: 2 additions & 2 deletions charts/prometheus-thanos/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: "0.10.0"
appVersion: "0.10.1"
description: A Helm chart for thanos monitoring components
name: prometheus-thanos
version: 2.9.0
version: 2.9.1
home: https://github.com/thanos-io/thanos
sources:
- https://github.com/thanos-io/thanos
Expand Down
1 change: 1 addition & 0 deletions charts/prometheus-thanos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ The following table lists the configurable parameters of the prometheus-thanos c
| `bucketWebInterface.additionalLabels` | Additional labels on bucket web interface pods| `{}` |
| `bucketWebInterface.affinity` | Affinity | `{}` |
| `bucketWebInterface.extraEnv` | Extra env vars | `nil` |
| `bucketWebInterface.httpServerPort` | The port to expose from the bucket web interface container | `10902` |
| `bucketWebInterface.image.repository` | Docker image repo for bucket web interface | `quay.io/thanos/thanos` |
| `bucketWebInterface.image.tag` | Docker image tag for bucket web interface | `v0.10.0` |
| `bucketWebInterface.image.pullPolicy` | Docker image pull policy for bucket web interface| `IfNotPresent` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
{{- end }}
ports:
- name: http
containerPort: 8080
containerPort: {{ .Values.bucketWebInterface.httpServerPort }}
protocol: TCP
{{- if .Values.bucketWebInterface.extraEnv }}
env:
Expand Down
1 change: 1 addition & 0 deletions charts/prometheus-thanos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ bucketWebInterface:
additionalLabels: {}
affinity: {}
extraEnv: []
httpServerPort: 10902
image:
repository: quay.io/thanos/thanos
tag: v0.10.0
Expand Down