Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/charts.k
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ charts: helm.Charts = {
tempo: {
chart = "tempo-distributed"
repoURL = "https://grafana.github.io/helm-charts"
targetRevision = "1.52.7"
targetRevision = "1.53.2"
schemaGenerator = "AUTO"
crdGenerator = "TEMPLATE"
}
Expand Down
4 changes: 2 additions & 2 deletions charts/tempo/chart.k
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ schema Chart(helm.Chart):
values : Values | any, optional
chart : str, required, default is "tempo-distributed"
repoURL : str, required, default is "https://grafana.github.io/helm-charts"
targetRevision : str, optional, default is "1.52.7"
targetRevision : str, optional, default is "1.53.2"
"""
values?: Values | any
chart: str = "tempo-distributed"
repoURL: str = "https://grafana.github.io/helm-charts"
targetRevision?: str = "1.52.7"
targetRevision?: str = "1.53.2"

52 changes: 51 additions & 1 deletion charts/tempo/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,35 @@
"title": "service",
"type": "object"
},
"strategy": {
"additionalProperties": true,
"description": "Strategy of updating pods",
"properties": {
"rollingUpdate": {
"additionalProperties": true,
"properties": {
"maxSurge": {
"default": 0,
"required": [],
"title": "maxSurge",
"type": "integer"
},
"maxUnavailable": {
"default": 1,
"required": [],
"title": "maxUnavailable",
"type": "integer"
}
},
"required": [],
"title": "rollingUpdate",
"type": "object"
}
},
"required": [],
"title": "strategy",
"type": "object"
},
"terminationGracePeriodSeconds": {
"default": 30,
"description": "Grace period to allow the compactor to shutdown before it is killed",
Expand Down Expand Up @@ -3208,7 +3237,7 @@
},
"commonLabels": {
"additionalProperties": true,
"description": "Common labels for all object directly managed by this chart.",
"description": "Adding common labels to all K8S resources including pods",
"required": [],
"title": "commonLabels",
"type": "object"
Expand Down Expand Up @@ -3278,6 +3307,20 @@
"title": "image",
"type": "object"
},
"labels": {
"additionalProperties": true,
"description": "Adding labels to K8S resources (excluding pods)",
"required": [],
"title": "labels",
"type": "object"
},
"podLabels": {
"additionalProperties": true,
"description": "Adding labels to all pods",
"required": [],
"title": "podLabels",
"type": "object"
},
"priorityClassName": {
"default": "null",
"description": "Overrides the priorityClassName for all pods",
Expand Down Expand Up @@ -7938,6 +7981,13 @@
"title": "imagePullSecrets",
"type": "array"
},
"labels": {
"additionalProperties": true,
"description": "Labels for the service account",
"required": [],
"title": "labels",
"type": "object"
},
"name": {
"default": "null",
"description": "The name of the ServiceAccount to use.\nIf not set and create is true, a name is generated using the fullname template",
Expand Down
58 changes: 56 additions & 2 deletions charts/tempo/values.schema.k
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,8 @@ schema ValuesCompactor:
resources : ValuesCompactorResources, optional
Resource requests and limits for the compactor
service : ValuesCompactorService, optional
strategy : ValuesCompactorStrategy, optional
Strategy of updating pods
terminationGracePeriodSeconds : int, optional, default is 30
Grace period to allow the compactor to shutdown before it is killed
tolerations : [any], optional
Expand Down Expand Up @@ -821,6 +823,7 @@ schema ValuesCompactor:
replicas?: int
resources?: ValuesCompactorResources
service?: ValuesCompactorService
strategy?: ValuesCompactorStrategy
terminationGracePeriodSeconds?: int
tolerations?: [any]

Expand Down Expand Up @@ -1050,6 +1053,30 @@ schema ValuesCompactorServiceAnnotations:
"""
[...str]: any

schema ValuesCompactorStrategy:
r"""
Strategy of updating pods

Attributes
----------
rollingUpdate : ValuesCompactorStrategyRollingUpdate, optional
"""
[...str]: any
rollingUpdate?: ValuesCompactorStrategyRollingUpdate

schema ValuesCompactorStrategyRollingUpdate:
r"""
ValuesCompactorStrategyRollingUpdate

Attributes
----------
maxSurge : int, optional, default is 0
maxUnavailable : int, optional, default is 1
"""
[...str]: any
maxSurge?: int
maxUnavailable?: int

schema ValuesConsoleIngress:
r"""
ValuesConsoleIngress
Expand Down Expand Up @@ -2599,7 +2626,7 @@ schema ValuesGlobal:
clusterDomain : str, optional, default is "cluster.local"
configures cluster domain ("cluster.local" by default)
commonLabels : ValuesGlobalCommonLabels, optional
Common labels for all object directly managed by this chart.
Adding common labels to all K8S resources including pods
dnsNamespace : str, optional, default is "kube-system"
configures DNS service namespace
dnsService : str, optional, default is "kube-dns"
Expand All @@ -2614,6 +2641,10 @@ schema ValuesGlobal:
Common environment variables which come from a ConfigMap or Secret to add to all pods directly managed by this chart.
scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen
image : ValuesGlobalImage, optional
labels : ValuesGlobalLabels, optional
Adding labels to K8S resources (excluding pods)
podLabels : ValuesGlobalPodLabels, optional
Adding labels to all pods
priorityClassName : any, optional, default is "null"
Overrides the priorityClassName for all pods
storageClass : any, optional, default is "null"
Expand All @@ -2628,12 +2659,14 @@ schema ValuesGlobal:
extraEnv?: [any]
extraEnvFrom?: [any]
image?: ValuesGlobalImage
labels?: ValuesGlobalLabels
podLabels?: ValuesGlobalPodLabels
priorityClassName?: any
storageClass?: any

schema ValuesGlobalCommonLabels:
r"""
Common labels for all object directly managed by this chart.
Adding common labels to all K8S resources including pods
"""
[...str]: any

Expand All @@ -2656,6 +2689,18 @@ schema ValuesGlobalImage:
pullSecrets?: [any]
registry?: str

schema ValuesGlobalLabels:
r"""
Adding labels to K8S resources (excluding pods)
"""
[...str]: any

schema ValuesGlobalPodLabels:
r"""
Adding labels to all pods
"""
[...str]: any

schema ValuesImage:
r"""
# Set default image, imageTag, and imagePullPolicy. mode is used to indicate the
Expand Down Expand Up @@ -5929,6 +5974,8 @@ schema ValuesServiceAccount:
Specifies whether a ServiceAccount should be created
imagePullSecrets : [any], optional
Image pull secrets for the service account
labels : ValuesServiceAccountLabels, optional
Labels for the service account
name : any, optional, default is "null"
The name of the ServiceAccount to use.
If not set and create is true, a name is generated using the fullname template
Expand All @@ -5938,6 +5985,7 @@ schema ValuesServiceAccount:
automountServiceAccountToken?: bool
create?: bool
imagePullSecrets?: [any]
labels?: ValuesServiceAccountLabels
name?: any

schema ValuesServiceAccountAnnotations:
Expand All @@ -5946,6 +5994,12 @@ schema ValuesServiceAccountAnnotations:
"""
[...str]: any

schema ValuesServiceAccountLabels:
r"""
Labels for the service account
"""
[...str]: any

schema ValuesServiceMonitor:
r"""
ValuesServiceMonitor
Expand Down