-
Notifications
You must be signed in to change notification settings - Fork 20
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
feat(helm)!: Update chart grafana to 8.8.2 #855
Open
chii-bot
wants to merge
1
commit into
main
Choose a base branch
from
renovate/grafana-8.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 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
chii-bot
bot
added
renovate/helm
type/major
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
area/cluster
Changes made in the cluster directory
and removed
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
labels
Jun 3, 2024
Path: @@ -1,690 +1 @@
----
-# Source: grafana/templates/podsecuritypolicy.yaml
-apiVersion: policy/v1beta1
-kind: PodSecurityPolicy
-metadata:
- name: grafana
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- annotations:
- seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default,runtime/default'
- seccomp.security.alpha.kubernetes.io/defaultProfileName: 'docker/default'
- apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default'
- apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default'
-spec:
- privileged: false
- allowPrivilegeEscalation: false
- requiredDropCapabilities:
- # Default set from Docker, with DAC_OVERRIDE and CHOWN
- - ALL
- volumes:
- - 'configMap'
- - 'emptyDir'
- - 'projected'
- - 'csi'
- - 'secret'
- - 'downwardAPI'
- - 'persistentVolumeClaim'
- hostNetwork: false
- hostIPC: false
- hostPID: false
- runAsUser:
- rule: 'RunAsAny'
- seLinux:
- rule: 'RunAsAny'
- supplementalGroups:
- rule: 'MustRunAs'
- ranges:
- # Forbid adding the root group.
- - min: 1
- max: 65535
- fsGroup:
- rule: 'MustRunAs'
- ranges:
- # Forbid adding the root group.
- - min: 1
- max: 65535
- readOnlyRootFilesystem: false
----
-# Source: grafana/templates/tests/test-podsecuritypolicy.yaml
-apiVersion: policy/v1beta1
-kind: PodSecurityPolicy
-metadata:
- name: grafana-test
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-spec:
- allowPrivilegeEscalation: true
- privileged: false
- hostNetwork: false
- hostIPC: false
- hostPID: false
- fsGroup:
- rule: RunAsAny
- seLinux:
- rule: RunAsAny
- supplementalGroups:
- rule: RunAsAny
- runAsUser:
- rule: RunAsAny
- volumes:
- - configMap
- - downwardAPI
- - emptyDir
- - projected
- - csi
- - secret
----
-# Source: grafana/templates/serviceaccount.yaml
-apiVersion: v1
-kind: ServiceAccount
-metadata:
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- name: grafana
- namespace: default
----
-# Source: grafana/templates/tests/test-serviceaccount.yaml
-apiVersion: v1
-kind: ServiceAccount
-metadata:
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- name: grafana-test
- namespace: default
----
-# Source: grafana/templates/configmap-dashboard-provider.yaml
-apiVersion: v1
-kind: ConfigMap
-metadata:
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- name: grafana-config-dashboards
- namespace: default
-data:
- provider.yaml: |-
- apiVersion: 1
- providers:
- - name: 'sidecarProvider'
- orgId: 1
- folder: ''
- type: file
- disableDeletion: false
- allowUiUpdates: false
- updateIntervalSeconds: 30
- options:
- foldersFromFilesStructure: false
- path: /tmp/dashboards
----
-# Source: grafana/templates/configmap.yaml
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-data:
- plugins: natel-discrete-panel,pr0ps-trackmap-panel,grafana-piechart-panel,vonage-status-panel,grafana-worldmap-panel,grafana-clock-panel
- grafana.ini: |
- [analytics]
- check_for_updates = false
- [auth]
- oauth_auto_login = true
- signout_redirect_url = https://auth.${SECRET_DOMAIN}/logout
- [auth.basic]
- disable_login_form = false
- [auth.generic_oauth]
- api_url = https://auth.${SECRET_DOMAIN}/api/oidc/userinfo
- auth_url = https://auth.${SECRET_DOMAIN}/api/oidc/authorization
- client_id = ${SECRET_GRAFANA_OAUTH_CLIENT_ID}
- client_secret = ${SECRET_GRAFANA_OAUTH_CLIENT_SECRET}
- empty_scopes = false
- enabled = true
- groups_attribute_path = groups
- login_attribute_path = preferred_username
- name = 56k
- name_attribute_path = name
- role_attribute_path = contains(groups[*], 'monitor-admins') && 'Admin' || contains(groups[*], 'monitor-editors') && 'Editor' || contains(groups[*], 'monitor-viewers') && 'Viewer'
- scopes = openid profile email groups
- token_url = https://auth.${SECRET_DOMAIN}/api/oidc/token
- use_pkce = true
- [grafana_net]
- url = https://grafana.net
- [log]
- mode = console
- [paths]
- data = /var/lib/grafana/data
- logs = /var/log/grafana
- plugins = /var/lib/grafana/plugins
- provisioning = /etc/grafana/provisioning
- [server]
- root_url = https://grafana.${SECRET_PUBLIC_DOMAIN}
- datasources.yaml: |
- apiVersion: 1
- datasources:
- - access: proxy
- isDefault: true
- name: Prometheus
- type: prometheus
- url: http://thanos-query:9090
- - access: proxy
- name: Loki
- type: loki
- url: http://loki-gateway:80
- deleteDatasources:
- - name: Loki
- orgId: 1
- deleteDatasources: |
- - name: Loki
- orgId: 1
- dashboardproviders.yaml: |
- apiVersion: 1
- providers:
- - disableDeletion: false
- editable: true
- folder: ""
- name: default
- options:
- path: /var/lib/grafana/dashboards/default
- orgId: 1
- type: file
- download_dashboards.sh: |
- #!/usr/bin/env sh
- set -euf
- mkdir -p /var/lib/grafana/dashboards/default
-
- curl -skf \
- --connect-timeout 60 \
- --max-time 60 \
- -H "Accept: application/json" \
- -H "Content-Type: application/json;charset=UTF-8" \
- "https://grafana.com/api/dashboards/13502/revisions/10/download" | sed '/-- . .. .envrc .git .gitattributes .github .gitignore .pre-commit-config.yaml .sops.yaml .sourceignore .taskfiles .vscode --/! s/"datasource":.*,/"datasource": "Prometheus",/g'\
- > "/var/lib/grafana/dashboards/default/minio.json"
- curl -skf \
- --connect-timeout 60 \
- --max-time 60 \
- -H "Accept: application/json" \
- -H "Content-Type: application/json;charset=UTF-8" \
- "https://grafana.com/api/dashboards/7845/revisions/4/download" | sed '/-- . .. .envrc .git .gitattributes .github .gitignore .pre-commit-config.yaml .sops.yaml .sourceignore .taskfiles .vscode --/! s/"datasource":.*,/"datasource": "Prometheus",/g'\
- > "/var/lib/grafana/dashboards/default/zfs.json"
----
-# Source: grafana/templates/dashboards-json-configmap.yaml
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: grafana-dashboards-default
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- dashboard-provider: default
-data: {}
----
-# Source: grafana/templates/tests/test-configmap.yaml
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: grafana-test
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-data:
- run.sh: |-
- @test "Test Health" {
- url="http://grafana/api/health"
-
- code=$(wget --server-response --spider --timeout 10 --tries 1 ${url} 2>&1 | awk '/^ HTTP/{print $2}')
- [ "$code" == "200" ]
- }
----
-# Source: grafana/templates/clusterrole.yaml
-kind: ClusterRole
-apiVersion: rbac.authorization.k8s.io/v1
-metadata:
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- name: grafana-clusterrole
-rules:
- - apiGroups: [""] # "" indicates the core API group
- resources: ["configmaps", "secrets"]
- verbs: ["get", "watch", "list"]
----
-# Source: grafana/templates/clusterrolebinding.yaml
-kind: ClusterRoleBinding
-apiVersion: rbac.authorization.k8s.io/v1
-metadata:
- name: grafana-clusterrolebinding
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-subjects:
- - kind: ServiceAccount
- name: grafana
- namespace: default
-roleRef:
- kind: ClusterRole
- name: grafana-clusterrole
- apiGroup: rbac.authorization.k8s.io
----
-# Source: grafana/templates/role.yaml
-apiVersion: rbac.authorization.k8s.io/v1
-kind: Role
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-rules:
- - apiGroups: ['extensions']
- resources: ['podsecuritypolicies']
- verbs: ['use']
- resourceNames: [grafana]
----
-# Source: grafana/templates/tests/test-role.yaml
-apiVersion: rbac.authorization.k8s.io/v1
-kind: Role
-metadata:
- name: grafana-test
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-rules:
- - apiGroups: ['policy']
- resources: ['podsecuritypolicies']
- verbs: ['use']
- resourceNames: [grafana-test]
----
-# Source: grafana/templates/rolebinding.yaml
-apiVersion: rbac.authorization.k8s.io/v1
-kind: RoleBinding
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-roleRef:
- apiGroup: rbac.authorization.k8s.io
- kind: Role
- name: grafana
-subjects:
- - kind: ServiceAccount
- name: grafana
- namespace: default
----
-# Source: grafana/templates/tests/test-rolebinding.yaml
-apiVersion: rbac.authorization.k8s.io/v1
-kind: RoleBinding
-metadata:
- name: grafana-test
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-roleRef:
- apiGroup: rbac.authorization.k8s.io
- kind: Role
- name: grafana-test
-subjects:
- - kind: ServiceAccount
- name: grafana-test
- namespace: default
----
-# Source: grafana/templates/service.yaml
-apiVersion: v1
-kind: Service
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-spec:
- type: ClusterIP
- ports:
- - name: service
- port: 80
- protocol: TCP
- targetPort: 3000
- selector:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
----
-# Source: grafana/templates/deployment.yaml
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-spec:
- replicas: 3
- revisionHistoryLimit: 10
- selector:
- matchLabels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- strategy:
- type: RollingUpdate
- template:
- metadata:
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- annotations:
- checksum/config: a2c325d7f33ca604e5036eb5e4f22e723231dfbad499db161419a405e4a7e311
- checksum/dashboards-json-config: 8d28fc73d93f9f25cab17dcbcf11ccbaa672ad1cff4510e8c2f02695f6c8e009
- checksum/sc-dashboard-provider-config: 1b361428db503980e1e6998b215232bdc4d87f1a17f575158029af2b602173b7
- spec:
- serviceAccountName: grafana
- automountServiceAccountToken: true
- securityContext:
- fsGroup: 472
- runAsGroup: 472
- runAsUser: 472
- initContainers:
- - name: download-dashboards
- image: "curlimages/curl:7.73.0"
- imagePullPolicy: IfNotPresent
- command: ["/bin/sh"]
- args: ["-c", "mkdir -p /var/lib/grafana/dashboards/default && /bin/sh -x /etc/grafana/download_dashboards.sh"]
- resources: {}
- env:
- volumeMounts:
- - name: config
- mountPath: "/etc/grafana/download_dashboards.sh"
- subPath: download_dashboards.sh
- - name: storage
- mountPath: "/var/lib/grafana"
- enableServiceLinks: true
- containers:
- - name: grafana-sc-dashboard
- image: "quay.io/kiwigrid/k8s-sidecar:1.19.2"
- imagePullPolicy: IfNotPresent
- env:
- - name: METHOD
- value: WATCH
- - name: LABEL
- value: "grafana_dashboard"
- - name: LOG_LEVEL
- value: "INFO"
- - name: FOLDER
- value: "/tmp/dashboards"
- - name: RESOURCE
- value: "both"
- - name: NAMESPACE
- value: "ALL"
- resources: {}
- volumeMounts:
- - name: sc-dashboard-volume
- mountPath: "/tmp/dashboards"
- - name: grafana-sc-datasources
- image: "quay.io/kiwigrid/k8s-sidecar:1.19.2"
- imagePullPolicy: IfNotPresent
- env:
- - name: METHOD
- value: WATCH
- - name: LABEL
- value: "grafana_datasource"
- - name: FOLDER
- value: "/etc/grafana/provisioning/datasources"
- - name: RESOURCE
- value: "both"
- - name: NAMESPACE
- value: "ALL"
- - name: REQ_USERNAME
- valueFrom:
- secretKeyRef:
- name: grafana-admin-creds
- key: admin-user
- - name: REQ_PASSWORD
- valueFrom:
- secretKeyRef:
- name: grafana-admin-creds
- key: admin-password
- - name: REQ_URL
- value: http://localhost:3000/api/admin/provisioning/datasources/reload
- - name: REQ_METHOD
- value: POST
- resources: {}
- volumeMounts:
- - name: sc-datasources-volume
- mountPath: "/etc/grafana/provisioning/datasources"
- - name: grafana
- image: "grafana/grafana:9.0.5"
- imagePullPolicy: IfNotPresent
- volumeMounts:
- - name: config
- mountPath: "/etc/grafana/grafana.ini"
- subPath: grafana.ini
- - name: storage
- mountPath: "/var/lib/grafana"
- - name: config
- mountPath: "/etc/grafana/provisioning/datasources/datasources.yaml"
- subPath: "datasources.yaml"
- - name: config
- mountPath: "/etc/grafana/provisioning/datasources/deleteDatasources"
- subPath: "deleteDatasources"
- - name: config
- mountPath: "/etc/grafana/provisioning/dashboards/dashboardproviders.yaml"
- subPath: "dashboardproviders.yaml"
- - name: sc-dashboard-volume
- mountPath: "/tmp/dashboards"
- - name: sc-dashboard-provider
- mountPath: "/etc/grafana/provisioning/dashboards/sc-dashboardproviders.yaml"
- subPath: provider.yaml
- - name: sc-datasources-volume
- mountPath: "/etc/grafana/provisioning/datasources"
- ports:
- - name: grafana
- containerPort: 3000
- protocol: TCP
- env:
- - name: GF_SECURITY_ADMIN_USER
- valueFrom:
- secretKeyRef:
- name: grafana-admin-creds
- key: admin-user
- - name: GF_SECURITY_ADMIN_PASSWORD
- valueFrom:
- secretKeyRef:
- name: grafana-admin-creds
- key: admin-password
- - name: GF_INSTALL_PLUGINS
- valueFrom:
- configMapKeyRef:
- name: grafana
- key: plugins
- - name: GF_PATHS_DATA
- value: /var/lib/grafana/data
- - name: GF_PATHS_LOGS
- value: /var/log/grafana
- - name: GF_PATHS_PLUGINS
- value: /var/lib/grafana/plugins
- - name: GF_PATHS_PROVISIONING
- value: /etc/grafana/provisioning
- - name: "DS_PROMETHEUS"
- value: "Prometheus"
- - name: "GF_DATE_FORMATS_FULL_DATE"
- value: "MMM Do, YYYY hh:mm:ss a"
- - name: "GF_EXPLORE_ENABLED"
- value: "true"
- - name: "GF_LOG_FILTERS"
- value: "rendering:debug"
- - name: "GF_PANELS_DISABLE_SANITIZE_HTML"
- value: "true"
- - name: "GF_SECURITY_ALLOW_EMBEDDING"
- value: "true"
- - name: "GF_SECURITY_COOKIE_SAMESITE"
- value: "grafana"
- livenessProbe:
- failureThreshold: 10
- httpGet:
- path: /api/health
- port: 3000
- initialDelaySeconds: 60
- timeoutSeconds: 30
- readinessProbe:
- httpGet:
- path: /api/health
- port: 3000
- resources: {}
- affinity:
- podAntiAffinity:
- preferredDuringSchedulingIgnoredDuringExecution:
- - podAffinityTerm:
- labelSelector:
- matchExpressions:
- - key: app.kubernetes.io/name
- operator: In
- values:
- - grafana
- topologyKey: kubernetes.io/hostname
- weight: 100
- volumes:
- - name: config
- configMap:
- name: grafana
- - name: dashboards-default
- configMap:
- name: grafana-dashboards-default
- - name: storage
- emptyDir: {}
- - name: sc-dashboard-volume
- emptyDir: {}
- - name: sc-dashboard-provider
- configMap:
- name: grafana-config-dashboards
- - name: sc-datasources-volume
- emptyDir: {}
----
-# Source: grafana/templates/ingress.yaml
-apiVersion: networking.k8s.io/v1
-kind: Ingress
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- annotations:
- nginx.ingress.kubernetes.io/affinity: "cookie"
- nginx.ingress.kubernetes.io/session-cookie-expires: "172800"
- nginx.ingress.kubernetes.io/session-cookie-max-age: "172800"
- nginx.ingress.kubernetes.io/session-cookie-name: "grafana"
-spec:
- ingressClassName: nginx
- tls:
- - hosts:
- - grafana.${SECRET_PUBLIC_DOMAIN}
- rules:
- - host: grafana.${SECRET_PUBLIC_DOMAIN}
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: grafana
- port:
- number: 80
----
-# Source: grafana/templates/servicemonitor.yaml
-apiVersion: monitoring.coreos.com/v1
-kind: ServiceMonitor
-metadata:
- name: grafana
- namespace: default
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
-spec:
- endpoints:
- - port: service
- interval: 1m
- scrapeTimeout: 30s
- honorLabels: true
- path: /metrics
- scheme: http
- jobLabel: "grafana"
- selector:
- matchLabels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- namespaceSelector:
- matchNames:
- - default
----
-# Source: grafana/templates/tests/test.yaml
-apiVersion: v1
-kind: Pod
-metadata:
- name: grafana-test
- labels:
- app.kubernetes.io/name: grafana
- app.kubernetes.io/instance: grafana
- app.kubernetes.io/managed-by: Helm
- annotations:
- "helm.sh/hook": test-success
- "helm.sh/hook-delete-policy": "before-hook-creation,hook-succeeded"
- namespace: default
-spec:
- serviceAccountName: grafana-test
- affinity:
- podAntiAffinity:
- preferredDuringSchedulingIgnoredDuringExecution:
- - podAffinityTerm:
- labelSelector:
- matchExpressions:
- - key: app.kubernetes.io/name
- operator: In
- values:
- - grafana
- topologyKey: kubernetes.io/hostname
- weight: 100
- containers:
- - name: grafana-test
- image: "bats/bats:v1.4.1"
- imagePullPolicy: "IfNotPresent"
- command: ["/opt/bats/bin/bats", "-t", "/tests/run.sh"]
- volumeMounts:
- - mountPath: /tests
- name: tests
- readOnly: true
- volumes:
- - name: tests
- configMap:
- name: grafana-test
- restartPolicy: Never |
MegaLinter status: ❌ ERROR
See errors details in artifact MegaLinter reports on CI Job page |
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
June 7, 2024 21:20
5f5fec4
to
e651413
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.0.0
feat(helm)!: Update chart grafana to 8.0.1
Jun 7, 2024
chii-bot
bot
added
the
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
label
Jun 7, 2024
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.0.1
feat(helm)!: Update chart grafana to 8.0.2
Jun 12, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
June 12, 2024 09:20
e651413
to
dd1b859
Compare
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
June 27, 2024 07:17
dd1b859
to
1ca1d2c
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.0.2
feat(helm)!: Update chart grafana to 8.1.1
Jun 27, 2024
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.1.1
feat(helm)!: Update chart grafana to 8.2.0
Jun 27, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
June 27, 2024 23:19
1ca1d2c
to
c0e5710
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.2.0
feat(helm)!: Update chart grafana to 8.2.1
Jul 1, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
2 times, most recently
from
July 1, 2024 22:18
7bf9ac4
to
19487da
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.2.1
feat(helm)!: Update chart grafana to 8.2.2
Jul 1, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
July 3, 2024 07:17
19487da
to
b5f3d0a
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.2.2
feat(helm)!: Update chart grafana to 8.3.1
Jul 3, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
July 4, 2024 13:21
b5f3d0a
to
1e5eae2
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.3.1
feat(helm)!: Update chart grafana to 8.3.2
Jul 4, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
July 12, 2024 20:19
1e5eae2
to
6e8e2d6
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.3.2
feat(helm)!: Update chart grafana to 8.3.3
Jul 12, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
July 13, 2024 10:18
6e8e2d6
to
7725f01
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.3.3
feat(helm)!: Update chart grafana to 8.3.4
Jul 13, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
July 17, 2024 15:21
7725f01
to
1fe37d0
Compare
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
2 times, most recently
from
October 17, 2024 13:28
7a05599
to
f6ff4ff
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.5
feat(helm)!: Update chart grafana to 8.5.6
Oct 17, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
October 19, 2024 02:51
f6ff4ff
to
97e37c4
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.6
feat(helm)!: Update chart grafana to 8.5.8
Oct 19, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
October 30, 2024 12:38
97e37c4
to
c66c6fd
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.8
feat(helm)!: Update chart grafana to 8.5.9
Oct 30, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
October 30, 2024 16:25
c66c6fd
to
757c9cd
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.9
feat(helm)!: Update chart grafana to 8.5.10
Oct 30, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
October 30, 2024 18:27
757c9cd
to
477ba44
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.10
feat(helm)!: Update chart grafana to 8.5.11
Oct 30, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 4, 2024 23:21
477ba44
to
8f7ddf5
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.11
feat(helm)!: Update chart grafana to 8.5.12
Nov 4, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 10, 2024 22:18
8f7ddf5
to
873eaa2
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.5.12
feat(helm)!: Update chart grafana to 8.6.0
Nov 10, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 22, 2024 03:00
873eaa2
to
225fe0b
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.6.0
feat(helm)!: Update chart grafana to 8.6.1
Nov 22, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 26, 2024 08:27
225fe0b
to
f3005f6
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.6.1
feat(helm)!: Update chart grafana to 8.6.2
Nov 26, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 27, 2024 03:03
f3005f6
to
6266cab
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.6.2
feat(helm)!: Update chart grafana to 8.6.3
Nov 27, 2024
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.6.3
feat(helm)!: Update chart grafana to 8.6.4
Nov 29, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
November 29, 2024 14:20
6266cab
to
26637f1
Compare
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
December 12, 2024 16:27
26637f1
to
e4ffcef
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.6.4
feat(helm)!: Update chart grafana to 8.7.0
Dec 12, 2024
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
December 15, 2024 16:25
e4ffcef
to
3af2039
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.7.0
feat(helm)!: Update chart grafana to 8.8.1
Dec 15, 2024
| datasource | package | from | to | | ---------- | ------- | ------- | ----- | | helm | grafana | 6.32.11 | 8.8.2 |
chii-bot
bot
force-pushed
the
renovate/grafana-8.x
branch
from
December 16, 2024 20:23
3af2039
to
e8b2484
Compare
chii-bot
bot
changed the title
feat(helm)!: Update chart grafana to 8.8.1
feat(helm)!: Update chart grafana to 8.8.2
Dec 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/cluster
Changes made in the cluster directory
renovate/helm
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
type/major
0 participants
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:
6.32.11
->8.8.2
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
Release Notes
grafana/helm-charts
v8.8.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-1.16.0...grafana-8.8.2
v8.8.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-8.8.0...grafana-8.8.1
v8.8.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-8.7.1...grafana-8.8.0
v8.7.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.26.1...grafana-8.7.1
v8.7.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.26.0...grafana-8.7.0
v8.6.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-6.22.0...grafana-8.6.4
v8.6.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@beyla-1.5.0...grafana-8.6.3
v8.6.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@mimir-distributed-5.6.0-weekly.318...grafana-8.6.2
v8.6.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@oncall-1.13.3...grafana-8.6.1
v8.6.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-vulture-0.7.0...grafana-8.6.0
v8.5.12
The leading tool for querying and visualizing time series and metrics.
What's Changed
managed-by
should not be templated by @bleggett in https://github.com/grafana/helm-charts/pull/3398New Contributors
Full Changelog: grafana/helm-charts@beyla-1.4.5...grafana-8.5.12
v8.5.11
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.5.10...grafana-8.5.11
v8.5.10
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@beyla-1.4.4...grafana-8.5.10
v8.5.9
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@k8s-monitoring-1.6.1...grafana-8.5.9
v8.5.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.5.7...grafana-8.5.8
v8.5.7
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@alloy-0.9.2...grafana-8.5.7
v8.5.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-6.18.0...grafana-8.5.6
v8.5.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.18.4...grafana-8.5.5
v8.5.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@mimir-distributed-5.5.0...grafana-8.5.4
v8.5.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@alloy-0.9.1...grafana-8.5.3
v8.5.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@alloy-0.9.0...grafana-8.5.2
v8.5.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-6.11.0...grafana-8.5.1
v8.5.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.4.9...grafana-8.5.0
v8.4.9
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@helm-loki-6.10.1...grafana-8.4.9
v8.4.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-0.6.1...grafana-8.4.8
v8.4.7
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.4.6...grafana-8.4.7
v8.4.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.17.0...grafana-8.4.6
v8.4.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-sampling-1.0.0...grafana-8.4.5
v8.4.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.4.3...grafana-8.4.4
v8.4.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.4.2...grafana-8.4.3
v8.4.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.16.1...grafana-8.4.2
v8.4.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-1.4.4...grafana-8.4.1
v8.4.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@loki-distributed-0.79.2...grafana-8.4.0
v8.3.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.15.3...grafana-8.3.8
v8.3.7
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-agent-operator-0.4.1...grafana-8.3.7
v8.3.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-8.3.5...grafana-8.3.6
v8.3.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@synthetic-monitoring-agent-0.3.0...grafana-8.3.5
v8.3.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@loki-distributed-0.79.1...grafana-8.3.4
v8.3.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-0.5.1...grafana-8.3.3
v8.3.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-6.6.5...grafana-8.3.2
v8.3.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.3.0...grafana-8.3.1
v8.3.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.13.2...grafana-8.3.0
v8.2.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.13.1...grafana-8.2.2
v8.2.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.2.0...grafana-8.2.1
v8.2.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-8.1.1...grafana-8.2.0
v8.1.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-8.1.0...grafana-8.1.1
v8.1.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@alloy-0.4.0...grafana-8.1.0
v8.0.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@k8s-monitoring-1.0.13...grafana-8.0.2
v8.0.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
folderUid
option by @Rohlik in https://github.com/grafana/helm-charts/pull/2956New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.11.0...grafana-8.0.1
v8.0.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.3.12...grafana-8.0.0
v7.3.12
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@oncall-1.5.5...grafana-7.3.12
v7.3.11
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-1.0.8...grafana-7.3.11
v7.3.10
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.9.9...grafana-7.3.10
v7.3.9
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-sampling-0.1.1...grafana-7.3.9
v7.3.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@rollout-operator-0.15.0...grafana-7.3.8
v7.3.7
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-0.11.2...grafana-7.3.7
v7.3.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.3.5...grafana-7.3.6
v7.3.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.3.4...grafana-7.3.5
v7.3.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
serviceAccount.automountServiceAccountToken
and documentautomountServiceAccountToken
by @jkroepke in https://github.com/grafana/helm-charts/pull/2997Full Changelog: grafana/helm-charts@grafana-agent-0.36.0...grafana-7.3.4
v7.3.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-distributed-0.78.3...grafana-7.3.3
v7.3.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.3.1...grafana-7.3.2
v7.3.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-agent-0.33.0...grafana-7.3.1
v7.3.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@promtail-6.15.5...grafana-7.3.0
v7.2.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@helm-loki-5.42.0...grafana-7.2.5
v7.2.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-stack-2.10.1...grafana-7.2.4
v7.2.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.2.2...grafana-7.2.3
v7.2.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.8.0...grafana-7.2.2
v7.2.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.2.0...grafana-7.2.1
v7.2.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-k6-operator-3.4.0...grafana-7.2.0
v7.1.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.22...grafana-7.1.0
v7.0.22
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.7.4...grafana-7.0.22
v7.0.21
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.20...grafana-7.0.21
v7.0.20
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-agent-0.30.0...grafana-7.0.20
v7.0.19
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.18...grafana-7.0.19
v7.0.18
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-0.7.0...grafana-7.0.18
v7.0.17
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.16...grafana-7.0.17
v7.0.16
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.0.15...grafana-7.0.16
v7.0.15
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.14...grafana-7.0.15
v7.0.14
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@helm-k6-operator-3.3.0...grafana-7.0.14
v7.0.11
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.0.10...grafana-7.0.11
v7.0.10
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.0.9...grafana-7.0.10
v7.0.9
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@tempo-distributed-1.7.1...grafana-7.0.9
v7.0.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.6...grafana-7.0.8
v7.0.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.0.5...grafana-7.0.6
v7.0.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@rollout-operator-0.10.0...grafana-7.0.5
v7.0.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@helm-k6-operator-3.0.0...grafana-7.0.4
v7.0.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-0.3.1...grafana-7.0.3
v7.0.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-7.0.1...grafana-7.0.2
v7.0.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-7.0.0...grafana-7.0.1
v7.0.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-6.61.2...grafana-7.0.0
v6.61.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@loki-distributed-0.76.1...grafana-6.61.2
v6.61.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-agent-operator-0.3.8...grafana-6.61.1
v6.61.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
**Full Cha
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.