Skip to content

Commit d910e53

Browse files
authored
Merge branch 'main' into default-port
2 parents 164abb8 + 8b52cc1 commit d910e53

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

charts/grafana/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: grafana
3-
version: 9.0.1
4-
appVersion: 12.0.0
3+
version: 9.2.0
4+
appVersion: 12.0.0-security-01
55
kubeVersion: "^1.8.0-0"
66
description: The leading tool for querying and visualizing time series and metrics.
77
home: https://grafana.com

charts/grafana/templates/poddisruptionbudget.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ spec:
1919
selector:
2020
matchLabels:
2121
{{- include "grafana.selectorLabels" . | nindent 6 }}
22+
{{- with .Values.podDisruptionBudget.unhealthyPodEvictionPolicy }}
23+
unhealthyPodEvictionPolicy: {{ . }}
24+
{{- end }}
2225
{{- end }}

charts/grafana/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ podDisruptionBudget: {}
7070
# apiVersion: ""
7171
# minAvailable: 1
7272
# maxUnavailable: 1
73+
# unhealthyPodEvictionPolicy: IfHealthyBudget
7374

7475
## See `kubectl explain deployment.spec.strategy` for more
7576
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy

charts/tempo-distributed/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ The memcached default args are removed and should be provided manually. The sett
818818
| querier.initContainers | list | `[]` | Init containers for the querier pod |
819819
| querier.maxSurge | int | `0` | Max Surge for querier pods |
820820
| querier.maxUnavailable | int | `1` | Pod Disruption Budget maxUnavailable |
821+
| querier.minReadySeconds | int | `10` | Minimum number of seconds for which a newly created Pod should be ready without any of its containers crashing/terminating |
821822
| querier.nodeSelector | object | `{}` | Node selector for querier pods |
822823
| querier.podAnnotations | object | `{}` | Annotations for querier pods |
823824
| querier.podLabels | object | `{}` | Labels for querier pods |

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,8 @@ querier:
824824
rollingUpdate:
825825
# -- Maximum number of Pods that can be unavailable during the update process
826826
maxUnavailable: 1
827+
# -- Minimum number of seconds for which a newly created Pod should be ready without any of its containers crashing/terminating
828+
minReadySeconds: 10
827829
# -- Node selector for querier pods
828830
nodeSelector: {}
829831
# -- Tolerations for querier pods

0 commit comments

Comments
 (0)