Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion bitnami/prometheus-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 0.36.0
description: The Prometheus Operator for Kubernetes provides easy monitoring definitions for Kubernetes services and deployment and management of Prometheus instances.
name: prometheus-operator
version: 0.12.6
version: 0.12.7
Comment thread
ni-slamberti marked this conversation as resolved.
Outdated
keywords:
- prometheus
- alertmanager
Expand Down
1 change: 1 addition & 0 deletions bitnami/prometheus-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ The following table lists the configurable parameters of the Prometheus Operator
| `prometheus.thanos.image.tag` | Thanos image tag | `{TAG_NAME}` |
| `prometheus.thanos.image.pullPolicy` | Thanos image pull policy | `IfNotPresent` |
| `prometheus.thanos.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
| `prometheus.thanos.extraArgs` | Additional arguments passed to the thanos sidecar container | `[]` |
| `prometheus.thanos.service.port` | Thanos service port | `10901` |
| `prometheus.thanos.service.clusterIP` | Specific cluster IP when service type is cluster IP. Use `None` for headless service | `nil` |
| `prometheus.thanos.service.nodePort` | Kubernetes Service nodePort | `nil` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ spec:
- --prometheus.url=http://localhost:9090
- --grpc-address=0.0.0.0:10901
- --http-address=0.0.0.0:10902
{{- if .Values.prometheus.thanos.extraArgs }}
{{ toYaml .Values.prometheus.thanos.extraArgs | indent 8 | trim }}
{{- end }}
ports:
- name: grpc
containerPort: 10901
Expand Down
2 changes: 2 additions & 0 deletions bitnami/prometheus-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,8 @@ prometheus:
##
# pullSecrets:
# - myRegistryKeySecretName

extraArgs: []
Comment thread
ni-slamberti marked this conversation as resolved.

## Thanos Sidecar Service
##
Expand Down