Skip to content
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
4 changes: 2 additions & 2 deletions thanos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,10 @@ If Blackbox-exporter is enabled and store endpoints are provided, this Thanos de
| thanos.query.ingress.grpc.annotations | object | `{}` | Additional annotations for the Ingress resource.(GRPC) To enable certificate autogeneration, place here your cert-manager annotations. For a full list of possible ingress annotations, please see ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md |
| thanos.query.ingress.grpc.enabled | bool | `false` | Enable ingress controller resource.(GRPC) |
| thanos.query.ingress.grpc.hosts | list | `[{"host":"thanos.local","paths":[{"path":"/","pathType":"Prefix"}]}]` | Default host for the ingress resource.(GRPC) |
| thanos.query.ingress.grpc.ingressClassName | string | `""` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)(GRPC) This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ |
| thanos.query.ingress.grpc.ingressClassName | string | `"nginx"` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)(GRPC) This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ |
| thanos.query.ingress.grpc.tls | list | `[]` | Ingress TLS configuration. (GRPC) |
| thanos.query.ingress.hosts | list | `[{"host":"thanos.local","paths":[{"path":"/","pathType":"Prefix","portName":"http"}]}]` | Default host for the ingress resource |
| thanos.query.ingress.ingressClassName | string | `""` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ |
| thanos.query.ingress.ingressClassName | string | `"nginx"` | IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ |
Comment thread
trouaux marked this conversation as resolved.
| thanos.query.ingress.tls | list | `[]` | Ingress TLS configuration |
| thanos.query.logLevel | string | info | Thanos Query log level |
| thanos.query.persesDatasource.create | bool | `true` | Creates a Perses datasource for Thanos Query |
Expand Down
2 changes: 1 addition & 1 deletion thanos/charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ maintainers:
name: thanos
sources:
- https://github.com/cloudoperators/greenhouse-extensions
version: 0.10.0
version: 0.10.1
dependencies:
- name: thanos
repository: https://thanos-community.github.io/helm-charts/
Expand Down
2 changes: 1 addition & 1 deletion thanos/charts/templates/query/ingress-grpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
{{- end }}
name: {{ include "release.name" . }}-grpc
spec:
ingressClassName: nginx
ingressClassName: {{ .Values.thanos.query.ingress.grpc.ingressClassName | default "nginx" }}
rules:
{{- range .Values.thanos.query.ingress.grpc.hosts }}
- host: {{ .host | quote }}
Expand Down
2 changes: 1 addition & 1 deletion thanos/charts/templates/query/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
{{- end }}
name: {{ include "release.name" . }}
spec:
ingressClassName: nginx
ingressClassName: {{ .Values.thanos.query.ingress.ingressClassName | default "nginx" }}
rules:
{{- range .Values.thanos.query.ingress.hosts }}
- host: {{ .host | quote }}
Expand Down
5 changes: 2 additions & 3 deletions thanos/charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ thanos:
# -- IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+)
# This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
# ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
#
ingressClassName: ""
ingressClassName: nginx

# -- Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations.
# For a full list of possible ingress annotations, please see
Expand All @@ -172,7 +171,7 @@ thanos:
# This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster .
# ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/
#
ingressClassName: ""
ingressClassName: nginx

# -- Additional annotations for the Ingress resource.(GRPC) To enable certificate autogeneration, place here your cert-manager annotations.
# For a full list of possible ingress annotations, please see
Expand Down
4 changes: 2 additions & 2 deletions thanos/plugindefinition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ kind: PluginDefinition
metadata:
name: thanos
spec:
version: 0.10.0
version: 0.10.1
description: thanos
helmChart:
name: thanos
repository: "oci://ghcr.io/cloudoperators/greenhouse-extensions/charts"
version: 0.10.0
version: 0.10.1
options:
- default: null
description: CLI param for Thanos Query
Expand Down
Loading