-
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 6.61.2 #714
Open
chii-bot
wants to merge
1
commit into
main
Choose a base branch
from
renovate/grafana-6.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/patch
area/cluster
Changes made in the cluster directory
labels
Aug 9, 2022
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 |
chii-bot
bot
added
the
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
label
Aug 9, 2022
MegaLinter status: ❌ ERROR
See errors details in artifact MegaLinter reports on CI Job page |
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.12
fix(helm): update chart grafana to 6.32.13
Aug 12, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
2 times, most recently
from
August 15, 2022 16:26
a48dbe3
to
91a3113
Compare
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.13
fix(helm): update chart grafana to 6.32.14
Aug 15, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 20, 2022 18:20
91a3113
to
f2c4292
Compare
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.14
fix(helm): update chart grafana to 6.32.15
Aug 20, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 22, 2022 06:26
f2c4292
to
83a066c
Compare
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.15
fix(helm): update chart grafana to 6.32.17
Aug 22, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 23, 2022 04:16
83a066c
to
6bd2839
Compare
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.17
fix(helm): update chart grafana to 6.32.18
Aug 23, 2022
chii-bot
bot
changed the title
fix(helm): update chart grafana to 6.32.18
feat(helm): update chart grafana to 6.33.0
Aug 24, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 24, 2022 15:19
6bd2839
to
e5f3717
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.33.0
feat(helm): update chart grafana to 6.33.1
Aug 26, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 26, 2022 16:27
e5f3717
to
8dfc05d
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.33.1
feat(helm): update chart grafana to 6.33.2
Aug 28, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 28, 2022 02:04
8dfc05d
to
f3e4c5d
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.33.2
feat(helm): update chart grafana to 6.34.0
Aug 30, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 30, 2022 02:06
f3e4c5d
to
eb7fdbf
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.34.0
feat(helm): update chart grafana to 6.35.0
Aug 31, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 31, 2022 13:43
eb7fdbf
to
6ed3948
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.35.0
feat(helm): update chart grafana to 6.36.1
Sep 2, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 2, 2022 06:50
6ed3948
to
038ab43
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.36.1
feat(helm): update chart grafana to 6.36.2
Sep 2, 2022
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 24, 2023 15:16
7445e63
to
b3392b9
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.58.10
feat(helm): update chart grafana to 6.59.0
Aug 26, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
August 26, 2023 03:15
b3392b9
to
00786d1
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.59.0
feat(helm): update chart grafana to 6.59.1
Sep 4, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 4, 2023 01:54
00786d1
to
42fdaf3
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.59.1
feat(helm): update chart grafana to 6.59.4
Sep 7, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 7, 2023 14:14
42fdaf3
to
2aae09f
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.59.4
feat(helm): update chart grafana to 6.59.5
Sep 22, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 22, 2023 07:14
2aae09f
to
e7958ff
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.59.5
feat(helm): update chart grafana to 6.60.0
Sep 23, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 23, 2023 14:13
e7958ff
to
fdb1218
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.0
feat(helm): update chart grafana to 6.60.1
Sep 23, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
September 23, 2023 17:13
fdb1218
to
38ef61e
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.1
feat(helm): update chart grafana to 6.60.2
Oct 3, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 3, 2023 23:16
38ef61e
to
fbefb16
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.2
feat(helm): update chart grafana to 6.60.3
Oct 8, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 8, 2023 07:14
fbefb16
to
76610ad
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.3
feat(helm): update chart grafana to 6.60.4
Oct 9, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
2 times, most recently
from
October 14, 2023 00:59
2df2c24
to
1a0fcf4
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.4
feat(helm): update chart grafana to 6.60.5
Oct 14, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 14, 2023 03:15
1a0fcf4
to
2c8da72
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.5
feat(helm): update chart grafana to 6.60.6
Oct 14, 2023
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.60.6
feat(helm): update chart grafana to 6.61.0
Oct 17, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 17, 2023 14:15
2c8da72
to
14bfe8c
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.61.0
feat(helm): update chart grafana to 6.61.1
Oct 18, 2023
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 18, 2023 17:14
14bfe8c
to
14caa1e
Compare
| datasource | package | from | to | | ---------- | ------- | ------- | ------ | | helm | grafana | 6.32.11 | 6.61.2 |
chii-bot
bot
force-pushed
the
renovate/grafana-6.x
branch
from
October 29, 2023 01:05
14caa1e
to
60857f1
Compare
chii-bot
bot
changed the title
feat(helm): update chart grafana to 6.61.1
feat(helm): update chart grafana to 6.61.2
Oct 29, 2023
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/patch
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
->6.61.2
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
Release Notes
grafana/helm-charts
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 Changelog: grafana/helm-charts@oncall-1.3.43...grafana-6.61.0
v6.60.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-6.60.5...grafana-6.60.6
v6.60.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-5.29.0...grafana-6.60.5
v6.60.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
| quote
forsidecar.dashboards.labelValue
by @cwrau in https://github.com/grafana/helm-charts/pull/2696New Contributors
Full Changelog: grafana/helm-charts@grafana-6.60.3...grafana-6.60.4
v6.60.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@helm-loki-5.25.0...grafana-6.60.3
v6.60.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@lgtm-distributed-1.0.0...grafana-6.60.2
v6.60.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-6.60.0...grafana-6.60.1
v6.60.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@rollout-operator-0.9.1...grafana-6.60.0
v6.59.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-distributed-0.74.5...grafana-6.59.5
v6.59.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-distributed-0.73.0...grafana-6.59.4
v6.59.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-6.59.2...grafana-6.59.3
v6.59.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-agent-0.23.0...grafana-6.59.2
v6.59.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-distributed-0.72.0...grafana-6.59.1
v6.59.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@k8s-monitoring-0.1.13...grafana-6.59.0
v6.58.10
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-5.15.0...grafana-6.58.10
v6.58.9
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@helm-loki-5.11.0...grafana-6.58.9
v6.58.8
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@promtail-6.14.2...grafana-6.58.8
v6.58.7
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@loki-stack-2.9.11...grafana-6.58.7
v6.58.6
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@loki-distributed-0.70.5...grafana-6.58.6
v6.58.5
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@loki-distributed-0.70.1...grafana-6.58.5
v6.58.4
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@oncall-1.3.12...grafana-6.58.4
v6.58.3
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-6.58.2...grafana-6.58.3
v6.58.2
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@grafana-6.58.1...grafana-6.58.2
v6.58.1
The leading tool for querying and visualizing time series and metrics.
What's Changed
New Contributors
Full Changelog: grafana/helm-charts@grafana-6.58.0...grafana-6.58.1
v6.58.0
The leading tool for querying and visualizing time series and metrics.
What's Changed
Full Changelog: grafana/helm-charts@tempo-distributed-1.4.8...grafana-6.58.0
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.