Skip to content

Commit 78d66b7

Browse files
Update Helm release tempo-distributed to v1.52.10
1 parent 703a5ce commit 78d66b7

File tree

4 files changed

+94
-6
lines changed

4 files changed

+94
-6
lines changed

charts/charts.k

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ charts: helm.Charts = {
128128
tempo: {
129129
chart = "tempo-distributed"
130130
repoURL = "https://grafana.github.io/helm-charts"
131-
targetRevision = "1.52.7"
131+
targetRevision = "1.52.10"
132132
schemaGenerator = "AUTO"
133133
crdGenerator = "TEMPLATE"
134134
}

charts/tempo/chart.k

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "tempo-distributed"
1616
repoURL : str, required, default is "https://grafana.github.io/helm-charts"
17-
targetRevision : str, optional, default is "1.52.7"
17+
targetRevision : str, optional, default is "1.52.10"
1818
"""
1919
values?: Values | any
2020
chart: str = "tempo-distributed"
2121
repoURL: str = "https://grafana.github.io/helm-charts"
22-
targetRevision?: str = "1.52.7"
22+
targetRevision?: str = "1.52.10"
2323

charts/tempo/values.schema.json

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,35 @@
922922
"title": "service",
923923
"type": "object"
924924
},
925+
"strategy": {
926+
"additionalProperties": true,
927+
"description": "Strategy of updating pods",
928+
"properties": {
929+
"rollingUpdate": {
930+
"additionalProperties": true,
931+
"properties": {
932+
"maxSurge": {
933+
"default": 0,
934+
"required": [],
935+
"title": "maxSurge",
936+
"type": "integer"
937+
},
938+
"maxUnavailable": {
939+
"default": 1,
940+
"required": [],
941+
"title": "maxUnavailable",
942+
"type": "integer"
943+
}
944+
},
945+
"required": [],
946+
"title": "rollingUpdate",
947+
"type": "object"
948+
}
949+
},
950+
"required": [],
951+
"title": "strategy",
952+
"type": "object"
953+
},
925954
"terminationGracePeriodSeconds": {
926955
"default": 30,
927956
"description": "Grace period to allow the compactor to shutdown before it is killed",
@@ -3208,7 +3237,7 @@
32083237
},
32093238
"commonLabels": {
32103239
"additionalProperties": true,
3211-
"description": "Common labels for all object directly managed by this chart.",
3240+
"description": "Adding common labels to all K8S resources including pods",
32123241
"required": [],
32133242
"title": "commonLabels",
32143243
"type": "object"
@@ -3278,6 +3307,20 @@
32783307
"title": "image",
32793308
"type": "object"
32803309
},
3310+
"labels": {
3311+
"additionalProperties": true,
3312+
"description": "Adding labels to K8S resources (excluding pods)",
3313+
"required": [],
3314+
"title": "labels",
3315+
"type": "object"
3316+
},
3317+
"podLabels": {
3318+
"additionalProperties": true,
3319+
"description": "Adding labels to all pods",
3320+
"required": [],
3321+
"title": "podLabels",
3322+
"type": "object"
3323+
},
32813324
"priorityClassName": {
32823325
"default": "null",
32833326
"description": "Overrides the priorityClassName for all pods",

charts/tempo/values.schema.k

Lines changed: 47 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,8 @@ schema ValuesCompactor:
792792
resources : ValuesCompactorResources, optional
793793
Resource requests and limits for the compactor
794794
service : ValuesCompactorService, optional
795+
strategy : ValuesCompactorStrategy, optional
796+
Strategy of updating pods
795797
terminationGracePeriodSeconds : int, optional, default is 30
796798
Grace period to allow the compactor to shutdown before it is killed
797799
tolerations : [any], optional
@@ -821,6 +823,7 @@ schema ValuesCompactor:
821823
replicas?: int
822824
resources?: ValuesCompactorResources
823825
service?: ValuesCompactorService
826+
strategy?: ValuesCompactorStrategy
824827
terminationGracePeriodSeconds?: int
825828
tolerations?: [any]
826829

@@ -1050,6 +1053,30 @@ schema ValuesCompactorServiceAnnotations:
10501053
"""
10511054
[...str]: any
10521055

1056+
schema ValuesCompactorStrategy:
1057+
r"""
1058+
Strategy of updating pods
1059+
1060+
Attributes
1061+
----------
1062+
rollingUpdate : ValuesCompactorStrategyRollingUpdate, optional
1063+
"""
1064+
[...str]: any
1065+
rollingUpdate?: ValuesCompactorStrategyRollingUpdate
1066+
1067+
schema ValuesCompactorStrategyRollingUpdate:
1068+
r"""
1069+
ValuesCompactorStrategyRollingUpdate
1070+
1071+
Attributes
1072+
----------
1073+
maxSurge : int, optional, default is 0
1074+
maxUnavailable : int, optional, default is 1
1075+
"""
1076+
[...str]: any
1077+
maxSurge?: int
1078+
maxUnavailable?: int
1079+
10531080
schema ValuesConsoleIngress:
10541081
r"""
10551082
ValuesConsoleIngress
@@ -2599,7 +2626,7 @@ schema ValuesGlobal:
25992626
clusterDomain : str, optional, default is "cluster.local"
26002627
configures cluster domain ("cluster.local" by default)
26012628
commonLabels : ValuesGlobalCommonLabels, optional
2602-
Common labels for all object directly managed by this chart.
2629+
Adding common labels to all K8S resources including pods
26032630
dnsNamespace : str, optional, default is "kube-system"
26042631
configures DNS service namespace
26052632
dnsService : str, optional, default is "kube-dns"
@@ -2614,6 +2641,10 @@ schema ValuesGlobal:
26142641
Common environment variables which come from a ConfigMap or Secret to add to all pods directly managed by this chart.
26152642
scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen
26162643
image : ValuesGlobalImage, optional
2644+
labels : ValuesGlobalLabels, optional
2645+
Adding labels to K8S resources (excluding pods)
2646+
podLabels : ValuesGlobalPodLabels, optional
2647+
Adding labels to all pods
26172648
priorityClassName : any, optional, default is "null"
26182649
Overrides the priorityClassName for all pods
26192650
storageClass : any, optional, default is "null"
@@ -2628,12 +2659,14 @@ schema ValuesGlobal:
26282659
extraEnv?: [any]
26292660
extraEnvFrom?: [any]
26302661
image?: ValuesGlobalImage
2662+
labels?: ValuesGlobalLabels
2663+
podLabels?: ValuesGlobalPodLabels
26312664
priorityClassName?: any
26322665
storageClass?: any
26332666

26342667
schema ValuesGlobalCommonLabels:
26352668
r"""
2636-
Common labels for all object directly managed by this chart.
2669+
Adding common labels to all K8S resources including pods
26372670
"""
26382671
[...str]: any
26392672

@@ -2656,6 +2689,18 @@ schema ValuesGlobalImage:
26562689
pullSecrets?: [any]
26572690
registry?: str
26582691

2692+
schema ValuesGlobalLabels:
2693+
r"""
2694+
Adding labels to K8S resources (excluding pods)
2695+
"""
2696+
[...str]: any
2697+
2698+
schema ValuesGlobalPodLabels:
2699+
r"""
2700+
Adding labels to all pods
2701+
"""
2702+
[...str]: any
2703+
26592704
schema ValuesImage:
26602705
r"""
26612706
# Set default image, imageTag, and imagePullPolicy. mode is used to indicate the

0 commit comments

Comments
 (0)