mirror of
https://github.com/bitnami/charts.git
synced 2026-03-10 06:57:55 +08:00
* use the `tpl` function of helm3
* this better integrates with umbrella helm charts.
* It is now possible to setup templates in `values.yaml`
* Added template example to values.yaml
```helm
querier:
dnsDiscovery:
enabled: true
## Sidecars service name to discover them using DNS discovery
## It is templateable from above.
##
sidecarsService: "{{ .Release.Name }}-prometheus-thanos"
## Sidecars namespace to discover them using DNS discovery
##
sidecarsNamespace "{{ .Release.Namespace }}"
```
* Added template example to values-production.yaml
```helm
querier:
dnsDiscovery:
enabled: true
## Sidecars service name to discover them using DNS discovery
## It is templateable from above.
##
sidecarsService: "{{ .Release.Name }}-prometheus-thanos"
## Sidecars namespace to discover them using DNS discovery
##
sidecarsNamespace "{{ .Release.Namespace }}"
```
* Update Chart.yaml
* added missing `:`
* added missing `:`
* Resolve #2024 bump version and use tplValue helper
* added hint to template evaluation.
Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
Co-authored-by: mfest <Marcel.Fest@telekom.de>
19 lines
553 B
YAML
19 lines
553 B
YAML
apiVersion: v1
|
|
appVersion: 0.11.0
|
|
description: Thanos is a highly available metrics system that can be added on top of existing Prometheus deployments, providing a global query view across all Prometheus installations.
|
|
engine: gotpl
|
|
home: https://thanos.io
|
|
icon: https://bitnami.com/assets/stacks/thanos/img/thanos-stack-220x234.png
|
|
keywords:
|
|
- analytics
|
|
- monitoring
|
|
- prometheus
|
|
- thanos
|
|
maintainers:
|
|
- name: Bitnami
|
|
email: containers@bitnami.com
|
|
name: thanos
|
|
sources:
|
|
- https://github.com/bitnami/bitnami-docker-thanos
|
|
version: 0.2.0
|