-
Notifications
You must be signed in to change notification settings - Fork 0
feat(helm): update chart tempo-distributed to 1.60.0 #209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/tempo-distributed-1.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- kubernetes/apps/monitoring/tempo/app Kustomization: flux-system/cluster-apps-tempo HelmRelease: monitoring/tempo
+++ kubernetes/apps/monitoring/tempo/app Kustomization: flux-system/cluster-apps-tempo HelmRelease: monitoring/tempo
@@ -12,13 +12,13 @@
spec:
chart: tempo-distributed
sourceRef:
kind: HelmRepository
name: grafana
namespace: flux-system
- version: 1.9.1
+ version: 1.48.0
dependsOn:
- name: local-path-provisioner
namespace: kube-system
install:
remediation:
retries: 3 |
f506b8a to
24c292e
Compare
--- HelmRelease: monitoring/tempo PodDisruptionBudget: monitoring/tempo-ingester
+++ HelmRelease: monitoring/tempo PodDisruptionBudget: monitoring/tempo-ingester
@@ -1,11 +1,12 @@
---
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: tempo-ingester
+ namespace: monitoring
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: ingester
app.kubernetes.io/part-of: memberlist
app.kubernetes.io/managed-by: Helm
--- HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-runtime
+++ HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-runtime
@@ -8,8 +8,9 @@
app.kubernetes.io/instance: tempo
app.kubernetes.io/managed-by: Helm
namespace: monitoring
data:
overrides.yaml: |2
- overrides: {}
+ overrides:
+ null
--- HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-config
+++ HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-config
@@ -7,13 +7,13 @@
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/managed-by: Helm
namespace: monitoring
data:
tempo-query.yaml: |
- backend: 127.0.0.1:3100
+ backend: 127.0.0.1:3200
tempo.yaml: |2
cache:
caches:
- memcached:
consistent_hash: true
@@ -63,12 +63,13 @@
replication_factor: 3
tokens_file_path: /var/tempo/tokens.json
memberlist:
abort_if_cluster_join_fails: false
bind_addr: []
bind_port: 7946
+ cluster_label: 'tempo.monitoring'
gossip_interval: 1s
gossip_nodes: 2
gossip_to_dead_nodes_time: 30s
join_members:
- dns+tempo-gossip-ring:7946
leave_timeout: 5s
@@ -83,40 +84,43 @@
randomize_node_name: true
rejoin_interval: 0s
retransmit_factor: 2
stream_timeout: 10s
multitenancy_enabled: false
overrides:
+ defaults: {}
per_tenant_override_config: /runtime-config/overrides.yaml
querier:
frontend_worker:
frontend_address: tempo-query-frontend-discovery:9095
max_concurrent_queries: 20
search:
- external_backend: null
- external_endpoints: []
- external_hedge_requests_at: 8s
- external_hedge_requests_up_to: 2
- prefer_self: 10
query_timeout: 30s
trace_by_id:
query_timeout: 10s
query_frontend:
max_outstanding_per_tenant: 2000
max_retries: 2
+ metrics:
+ concurrent_jobs: 1000
+ duration_slo: 0s
+ interval: 5m
+ max_duration: 3h
+ query_backend_after: 30m
+ target_bytes_per_job: 104857600
+ throughput_bytes_slo: 0
search:
concurrent_jobs: 1000
+ max_spans_per_span_set: 100
target_bytes_per_job: 104857600
trace_by_id:
- hedge_requests_at: 2s
- hedge_requests_up_to: 2
query_shards: 50
server:
grpc_server_max_recv_msg_size: 4194304
grpc_server_max_send_msg_size: 4194304
- http_listen_port: 3100
+ http_listen_port: 3200
http_server_read_timeout: 30s
http_server_write_timeout: 30s
log_format: logfmt
log_level: info
storage:
trace:
@@ -124,11 +128,13 @@
blocklist_poll: 5m
local:
path: /var/tempo/traces
pool:
max_workers: 400
queue_depth: 20000
+ search:
+ prefetch_trace_count: 1000
wal:
path: /var/tempo/wal
usage_report:
reporting_enabled: true
--- HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-gateway
+++ HelmRelease: monitoring/tempo ConfigMap: monitoring/tempo-gateway
@@ -45,43 +45,69 @@
location = / {
return 200 'OK';
auth_basic off;
}
location = /jaeger/api/traces {
- proxy_pass http://tempo-distributor.monitoring.svc.cluster.local:14268/api/traces;
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:14268/api/traces;
}
location = /zipkin/spans {
- proxy_pass http://tempo-distributor.monitoring.svc.cluster.local:9411/spans;
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:9411/spans;
}
location = /v1/traces {
- proxy_pass http://tempo-distributor.monitoring.svc.cluster.local:4318/v1/traces;
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:4318/v1/traces;
+ }
+
+ location = /otlp/v1/traces {
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:4318/v1/traces;
}
location ^~ /api {
- proxy_pass http://tempo-query-frontend.monitoring.svc.cluster.local:3100$request_uri;
+ set $query_frontend tempo-query-frontend.monitoring.svc.cluster.local;
+ proxy_pass http://$query_frontend:3200$request_uri;
}
location = /flush {
- proxy_pass http://tempo-ingester.monitoring.svc.cluster.local:3100$request_uri;
+ set $ingester tempo-ingester.monitoring.svc.cluster.local;
+ proxy_pass http://$ingester:3200$request_uri;
}
location = /shutdown {
- proxy_pass http://tempo-ingester.monitoring.svc.cluster.local:3100$request_uri;
+ set $ingester tempo-ingester.monitoring.svc.cluster.local;
+ proxy_pass http://$ingester:3200$request_uri;
}
location = /distributor/ring {
- proxy_pass http://tempo-distributor.monitoring.svc.cluster.local:3100$request_uri;
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:3200$request_uri;
}
location = /ingester/ring {
- proxy_pass http://tempo-distributor.monitoring.svc.cluster.local:3100$request_uri;
+ set $distributor tempo-distributor.monitoring.svc.cluster.local;
+ proxy_pass http://$distributor:3200$request_uri;
}
location = /compactor/ring {
- proxy_pass http://tempo-compactor.monitoring.svc.cluster.local:3100$request_uri;
+ set $compactor tempo-compactor.monitoring.svc.cluster.local;
+ proxy_pass http://$compactor:3200$request_uri;
+ }
+ }
+ # OTLP gRPC
+ server {
+ listen 4317 http2;
+
+ location = /opentelemetry.proto.collector.trace.v1.TraceService/Export {
+ grpc_pass grpc://tempo-distributor.monitoring.svc.cluster.local:4317;
+ }
+
+ location ~ /opentelemetry {
+ grpc_pass grpc://tempo-distributor.monitoring.svc.cluster.local:4317;
}
}
}
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-compactor
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-compactor
@@ -1,22 +1,26 @@
---
apiVersion: v1
kind: Service
metadata:
name: tempo-compactor
+ namespace: monitoring
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: compactor
app.kubernetes.io/managed-by: Helm
spec:
type: ClusterIP
ports:
- name: http-metrics
- port: 3100
- targetPort: 3100
+ port: 3200
+ targetPort: http-metrics
protocol: TCP
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: compactor
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-distributor-discovery
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-distributor-discovery
@@ -12,13 +12,13 @@
prometheus.io/service-monitor: 'false'
spec:
type: ClusterIP
clusterIP: None
ports:
- name: http-metrics
- port: 3100
+ port: 3200
targetPort: http-metrics
- name: distributor-otlp-http
port: 4318
protocol: TCP
targetPort: otlp-http
- name: grpc-distributor-otlp
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-distributor
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-distributor
@@ -7,16 +7,20 @@
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: distributor
app.kubernetes.io/managed-by: Helm
spec:
+ internalTrafficPolicy: Cluster
type: ClusterIP
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: http-metrics
- port: 3100
+ port: 3200
targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
targetPort: 9095
- name: distributor-otlp-http
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-gateway
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-gateway
@@ -13,11 +13,15 @@
type: ClusterIP
ports:
- name: http-metrics
port: 80
targetPort: http-metrics
protocol: TCP
+ - name: grpc-otlp
+ port: 4317
+ targetPort: grpc-otlp
+ protocol: TCP
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: gateway
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-gossip-ring
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-gossip-ring
@@ -9,17 +9,20 @@
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: gossip-ring
app.kubernetes.io/managed-by: Helm
spec:
type: ClusterIP
clusterIP: None
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: gossip-ring
port: 7946
protocol: TCP
- targetPort: http-memberlist
+ targetPort: 7946
publishNotReadyAddresses: true
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/part-of: memberlist
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-ingester-discovery
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-ingester-discovery
@@ -12,18 +12,18 @@
prometheus.io/service-monitor: 'false'
spec:
type: ClusterIP
clusterIP: None
ports:
- name: http-metrics
- port: 3100
+ port: 3200
protocol: TCP
- targetPort: 3100
+ targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
- targetPort: 9095
+ targetPort: grpc
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: ingester
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-ingester
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-ingester
@@ -7,20 +7,25 @@
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: ingester
app.kubernetes.io/managed-by: Helm
spec:
+ type: ClusterIP
+ internalTrafficPolicy: Cluster
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: http-metrics
- port: 3100
+ port: 3200
protocol: TCP
- targetPort: 3100
+ targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
- targetPort: 9095
+ targetPort: grpc
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: ingester
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-memcached
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-memcached
@@ -7,16 +7,19 @@
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: memcached
app.kubernetes.io/managed-by: Helm
spec:
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: memcached-client
port: 11211
- targetPort: 11211
+ targetPort: client
- name: http-metrics
port: 9150
targetPort: http-metrics
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-querier
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-querier
@@ -7,17 +7,20 @@
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: querier
app.kubernetes.io/managed-by: Helm
spec:
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: http-metrics
- port: 3100
+ port: 3200
protocol: TCP
- targetPort: 3100
+ targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
targetPort: 9095
selector:
app.kubernetes.io/name: tempo
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-query-frontend-discovery
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-query-frontend-discovery
@@ -11,18 +11,18 @@
app.kubernetes.io/managed-by: Helm
spec:
type: ClusterIP
clusterIP: None
ports:
- name: http
- port: 3100
- targetPort: 3100
+ port: 3200
+ targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
- targetPort: 9095
+ targetPort: grpc
- name: grpclb
port: 9096
protocol: TCP
targetPort: grpc
publishNotReadyAddresses: true
selector:
--- HelmRelease: monitoring/tempo Service: monitoring/tempo-query-frontend
+++ HelmRelease: monitoring/tempo Service: monitoring/tempo-query-frontend
@@ -8,19 +8,22 @@
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: query-frontend
app.kubernetes.io/managed-by: Helm
spec:
type: ClusterIP
+ ipFamilies:
+ - IPv4
+ ipFamilyPolicy: SingleStack
ports:
- name: http-metrics
- port: 3100
- targetPort: 3100
+ port: 3200
+ targetPort: http-metrics
- name: grpc
port: 9095
protocol: TCP
- targetPort: 9095
+ targetPort: grpc
selector:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: query-frontend
--- HelmRelease: monitoring/tempo Deployment: monitoring/tempo-compactor
+++ HelmRelease: monitoring/tempo Deployment: monitoring/tempo-compactor
@@ -33,22 +33,23 @@
app.kubernetes.io/part-of: memberlist
spec:
serviceAccountName: tempo
securityContext:
fsGroup: 1000
enableServiceLinks: false
+ initContainers: []
containers:
- args:
- -target=compactor
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
- image: docker.io/grafana/tempo:2.4.1
+ image: docker.io/grafana/tempo:2.8.2
imagePullPolicy: IfNotPresent
name: compactor
ports:
- - containerPort: 3100
+ - containerPort: 3200
name: http-metrics
- containerPort: 7946
name: http-memberlist
resources: {}
securityContext:
allowPrivilegeEscalation: false
@@ -64,12 +65,30 @@
name: config
- mountPath: /runtime-config
name: runtime-config
- mountPath: /var/tempo
name: tempo-compactor-store
terminationGracePeriodSeconds: 30
+ affinity:
+ podAntiAffinity:
+ requiredDuringSchedulingIgnoredDuringExecution:
+ - labelSelector:
+ matchLabels:
+ app.kubernetes.io/name: tempo
+ app.kubernetes.io/instance: tempo
+ app.kubernetes.io/component: compactor
+ topologyKey: kubernetes.io/hostname
+ preferredDuringSchedulingIgnoredDuringExecution:
+ - weight: 100
+ podAffinityTerm:
+ labelSelector:
+ matchLabels:
+ app.kubernetes.io/name: tempo
+ app.kubernetes.io/instance: tempo
+ app.kubernetes.io/component: compactor
+ topologyKey: topology.kubernetes.io/zone
volumes:
- name: config
configMap:
name: tempo-config
items:
- key: tempo.yaml
--- HelmRelease: monitoring/tempo Deployment: monitoring/tempo-distributor
+++ HelmRelease: monitoring/tempo Deployment: monitoring/tempo-distributor
@@ -16,12 +16,16 @@
revisionHistoryLimit: 10
selector:
matchLabels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/component: distributor
+ strategy:
+ rollingUpdate:
+ maxSurge: 0
+ maxUnavailable: 1
template:
metadata:
labels:
app.kubernetes.io/name: tempo
app.kubernetes.io/instance: tempo
app.kubernetes.io/managed-by: Helm
@@ -34,20 +38,20 @@
enableServiceLinks: false
containers:
- args:
- -target=distributor
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
- image: docker.io/grafana/tempo:2.4.1
+ image: docker.io/grafana/tempo:2.8.2
imagePullPolicy: IfNotPresent
name: distributor
ports:
- containerPort: 7946
name: http-memberlist
protocol: TCP
- - containerPort: 3100
+ - containerPort: 3200
name: http-metrics
- containerPort: 4318
name: otlp-http
protocol: TCP
- containerPort: 4317
name: grpc-otlp
--- HelmRelease: monitoring/tempo Deployment: monitoring/tempo-gateway
+++ HelmRelease: monitoring/tempo Deployment: monitoring/tempo-gateway
@@ -29,17 +29,20 @@
securityContext:
fsGroup: 1000
terminationGracePeriodSeconds: 30
enableServiceLinks: false
containers:
- name: nginx
- image: docker.io/nginxinc/nginx-unprivileged:1.19-alpine
+ image: docker.io/nginxinc/nginx-unprivileged:1.27-alpine
imagePullPolicy: IfNotPresent
ports:
- name: http-metrics
containerPort: 8080
+ protocol: TCP
+ - name: grpc-otlp
+ containerPort: 4317
protocol: TCP
readinessProbe:
httpGet:
path: /
port: http-metrics
initialDelaySeconds: 15
--- HelmRelease: monitoring/tempo Deployment: monitoring/tempo-querier
+++ HelmRelease: monitoring/tempo Deployment: monitoring/tempo-querier
@@ -33,25 +33,26 @@
app.kubernetes.io/part-of: memberlist
spec:
serviceAccountName: tempo
securityContext:
fsGroup: 1000
enableServiceLinks: false
+ initContainers: []
containers:
- args:
- -target=querier
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
- image: docker.io/grafana/tempo:2.4.1
+ image: docker.io/grafana/tempo:2.8.2
imagePullPolicy: IfNotPresent
name: querier
ports:
- containerPort: 7946
name: http-memberlist
protocol: TCP
- - containerPort: 3100
+ - containerPort: 3200
name: http-metrics
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
--- HelmRelease: monitoring/tempo Deployment: monitoring/tempo-query-frontend
+++ HelmRelease: monitoring/tempo Deployment: monitoring/tempo-query-frontend
@@ -31,22 +31,23 @@
app.kubernetes.io/component: query-frontend
spec:
serviceAccountName: tempo
securityContext:
fsGroup: 1000
enableServiceLinks: false
+ initContainers: []
containers:
- args:
- -target=query-frontend
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
- image: docker.io/grafana/tempo:2.4.1
+ image: docker.io/grafana/tempo:2.8.2
imagePullPolicy: IfNotPresent
name: query-frontend
ports:
- - containerPort: 3100
+ - containerPort: 3200
name: http-metrics
- containerPort: 9095
name: grpc
resources: {}
securityContext:
allowPrivilegeEscalation: false
--- HelmRelease: monitoring/tempo StatefulSet: monitoring/tempo-ingester
+++ HelmRelease: monitoring/tempo StatefulSet: monitoring/tempo-ingester
@@ -32,27 +32,28 @@
app.kubernetes.io/part-of: memberlist
spec:
serviceAccountName: tempo
securityContext:
fsGroup: 1000
enableServiceLinks: false
+ initContainers: []
containers:
- args:
- -target=ingester
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
- image: docker.io/grafana/tempo:2.4.1
+ image: docker.io/grafana/tempo:2.8.2
imagePullPolicy: IfNotPresent
name: ingester
ports:
- name: grpc
containerPort: 9095
- name: http-memberlist
containerPort: 7946
- name: http-metrics
- containerPort: 3100
+ containerPort: 3200
readinessProbe:
httpGet:
path: /ready
port: http-metrics
initialDelaySeconds: 30
timeoutSeconds: 1
--- HelmRelease: monitoring/tempo StatefulSet: monitoring/tempo-memcached
+++ HelmRelease: monitoring/tempo StatefulSet: monitoring/tempo-memcached
@@ -26,19 +26,38 @@
app.kubernetes.io/managed-by: Helm
spec:
serviceAccountName: tempo
securityContext:
fsGroup: 1000
enableServiceLinks: false
+ initContainers: []
containers:
- - image: docker.io/memcached:1.6.23-alpine
+ - image: docker.io/memcached:1.6.33-alpine
imagePullPolicy: IfNotPresent
name: memcached
ports:
- containerPort: 11211
name: client
+ readinessProbe:
+ failureThreshold: 6
+ initialDelaySeconds: 5
+ periodSeconds: 5
+ successThreshold: 1
+ tcpSocket:
+ port: client
+ timeoutSeconds: 3
+ livenessProbe:
+ exec:
+ command:
+ - pgrep
+ - memcached
+ failureThreshold: 6
+ initialDelaySeconds: 30
+ periodSeconds: 10
+ successThreshold: 1
+ timeoutSeconds: 5
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL |
24c292e to
a9d9fdc
Compare
9e46cfe to
c6e1a2c
Compare
c6e1a2c to
13de972
Compare
13de972 to
bdbb6ef
Compare
bdbb6ef to
79c9dd2
Compare
6d8f953 to
00e1ac4
Compare
00e1ac4 to
54668f0
Compare
54668f0 to
56fa7db
Compare
56fa7db to
4154ad4
Compare
4154ad4 to
ece6799
Compare
c3b8de4 to
a271e0a
Compare
a271e0a to
31e9739
Compare
31e9739 to
53d9a65
Compare
53d9a65 to
d781b5e
Compare
d781b5e to
0759dad
Compare
0759dad to
e39c14d
Compare
e39c14d to
17b10b4
Compare
17b10b4 to
8578137
Compare
8578137 to
a5505a0
Compare
a5505a0 to
d8ef068
Compare
d8ef068 to
ad9c696
Compare
ad9c696 to
30eb1f3
Compare
30eb1f3 to
7ee2308
Compare
7ee2308 to
7f0611b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.9.1→1.60.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
grafana/helm-charts (tempo-distributed)
v1.60.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@rollout-operator-0.40.0...tempo-distributed-1.60.0
v1.59.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-10.3.2...tempo-distributed-1.59.0
v1.58.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.58.0...tempo-distributed-1.58.1
v1.58.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.57.1...tempo-distributed-1.58.0
v1.57.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-10.3.1...tempo-distributed-1.57.1
v1.57.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-cloud-onboarding-0.4.0...tempo-distributed-1.57.0
v1.56.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@k8s-monitoring-3.5.7...tempo-distributed-1.56.2
v1.56.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@synthetic-monitoring-agent-1.2.0...tempo-distributed-1.56.1
v1.56.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-k6-operator-4.1.0...tempo-distributed-1.56.0
v1.55.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.54.1...tempo-distributed-1.55.0
v1.54.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@mimir-distributed-6.1.0-weekly.368...tempo-distributed-1.54.1
v1.54.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-sampling-1.1.7...tempo-distributed-1.54.0
v1.53.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@rollout-operator-0.37.1...tempo-distributed-1.53.2
v1.53.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.53.0...tempo-distributed-1.53.1
v1.53.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.52.10...tempo-distributed-1.53.0
v1.52.10Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.52.9...tempo-distributed-1.52.10
v1.52.9Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@mimir-distributed-6.0.1...tempo-distributed-1.52.9
v1.52.8Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.52.7...tempo-distributed-1.52.8
v1.52.7Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-agent-operator-0.5.2...tempo-distributed-1.52.7
v1.52.6Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@lgtm-distributed-3.0.1...tempo-distributed-1.52.6
v1.52.5Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-6.45.0...tempo-distributed-1.52.5
v1.52.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-10.1.4...tempo-distributed-1.52.4
v1.52.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@rollout-operator-0.36.0...tempo-distributed-1.52.3
v1.52.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.52.1...tempo-distributed-1.52.2
v1.52.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.52.0...tempo-distributed-1.52.1
v1.52.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.51.2...tempo-distributed-1.52.0
v1.51.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-1.4.0...tempo-distributed-1.51.2
v1.51.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-1.24.0...tempo-distributed-1.51.1
v1.51.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.50.0...tempo-distributed-1.51.0
v1.50.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.49.0...tempo-distributed-1.50.0
v1.49.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@beyla-1.9.8...tempo-distributed-1.49.0
v1.48.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@rollout-operator-0.35.1...tempo-distributed-1.48.1
v1.48.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@cloudcost-exporter-1.0.6...tempo-distributed-1.48.0
v1.47.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@rollout-operator-0.33.1...tempo-distributed-1.47.4
v1.47.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-9.4.5...tempo-distributed-1.47.3
v1.47.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@beyla-1.9.4...tempo-distributed-1.47.2
v1.47.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.4.2...tempo-distributed-1.47.1
v1.47.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.46.5...tempo-distributed-1.47.0
v1.46.5Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.3.5...tempo-distributed-1.46.5
v1.46.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-vulture-0.9.1...tempo-distributed-1.46.4
v1.46.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-1.2.1...tempo-distributed-1.46.3
v1.46.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-agent-0.44.2...tempo-distributed-1.46.2
v1.46.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@synthetic-monitoring-agent-1.1.0...tempo-distributed-1.46.1
v1.46.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-1.2.0...tempo-distributed-1.46.0
v1.45.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-3.1.2...tempo-distributed-1.45.0
v1.44.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@cloudcost-exporter-1.0.5...tempo-distributed-1.44.1
v1.44.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-k6-operator-3.14.1...tempo-distributed-1.44.0
v1.43.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-9.2.10...tempo-distributed-1.43.0
v1.42.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-3.0.2...tempo-distributed-1.42.3
v1.42.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.2.6...tempo-distributed-1.42.2
v1.42.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-9.2.3...tempo-distributed-1.42.1
v1.42.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-1.6.39...tempo-distributed-1.42.0
v1.41.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-1.1.1...tempo-distributed-1.41.2
v1.41.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-1.1.0...tempo-distributed-1.41.1
v1.41.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@promtail-6.17.0...tempo-distributed-1.41.0
v1.40.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.40.3...tempo-distributed-1.40.4
v1.40.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.2.1...tempo-distributed-1.40.3
v1.40.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.2.0...tempo-distributed-1.40.2
v1.40.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-9.1.1...tempo-distributed-1.40.1
v1.40.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.0.1...tempo-distributed-1.40.0
v1.39.5Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-operator-0.2.8...tempo-distributed-1.39.5
v1.39.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-1.0.3...tempo-distributed-1.39.4
v1.39.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-9.0.0...tempo-distributed-1.39.3
v1.39.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-1.6.35...tempo-distributed-1.39.2
v1.39.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-1.21.1...tempo-distributed-1.39.1
v1.39.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-8.15.0...tempo-distributed-1.39.0
v1.38.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-operator-0.2.6...tempo-distributed-1.38.3
v1.38.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-2.0.25...tempo-distributed-1.38.2
v1.38.1Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@oncall-1.15.5...tempo-distributed-1.38.1
v1.38.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.37.0...tempo-distributed-1.38.0
v1.37.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.36.0...tempo-distributed-1.37.0
v1.36.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-k6-operator-3.12.0...tempo-distributed-1.36.0
v1.35.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@mimir-distributed-5.8.0-weekly.337...tempo-distributed-1.35.0
v1.34.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@rollout-operator-0.26.0...tempo-distributed-1.34.0
v1.33.0Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@grafana-sampling-1.1.4...tempo-distributed-1.33.0
v1.32.7Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.32.6...tempo-distributed-1.32.7
v1.32.6Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-0.12.4...tempo-distributed-1.32.6
v1.32.5Compare Source
Grafana Tempo in MicroService mode
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-operator-v5.17.0...tempo-distributed-1.32.5
v1.32.4Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@alloy-0.12.2...tempo-distributed-1.32.4
v1.32.3Compare Source
Grafana Tempo in MicroService mode
What's Changed
Full Changelog: grafana/helm-charts@tempo-1.18.3...tempo-distributed-1.32.3
v1.32.2Compare Source
Grafana Tempo in MicroService mode
What's Changed
Configuration
📅 Schedule: Branch creation - "on saturday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.