<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Grafana Mimir Helm chart release notes on Grafana Labs</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/</link><description>Recent content in Grafana Mimir Helm chart release notes on Grafana Labs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/index.xml" rel="self" type="application/rss+xml"/><item><title>Grafana Mimir Helm chart version 3.2 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v3.2/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v3.2/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-32-release-notes&#34;&gt;Grafana Mimir Helm chart version 3.2 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 3.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.4 or Grafana Enterprise Metrics (GEM) v2.3. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.4.x/release-notes/v2.4/&#34;&gt;Grafana Mimir v2.4&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/latest/release-notes/v2-3/&#34;&gt;Grafana Enterprise Metrics v2.3&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from Grafana Mimir Helm chart 3.1, review the &lt;a href=&#34;#important-changes&#34;&gt;list of important changes&lt;/a&gt; that follow.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added support for &lt;a href=&#34;https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;topologySpreadConstraints&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Replaced the default anti-affinity rules with topologySpreadConstraints for all components which puts less restrictions on where Kubernetes can run pods.&lt;/li&gt;
&lt;li&gt;Updated the anti affinity rules in the sizing plans (&lt;code&gt;small.yaml&lt;/code&gt;, &lt;code&gt;large.yaml&lt;/code&gt;, &lt;code&gt;capped-small.yaml&lt;/code&gt;, or &lt;code&gt;capped-large.yaml&lt;/code&gt;). The sizing plans now enforce that no two pods of the ingester, store-gateway, or alertmanager StatefulSets are scheduled on the same Node. Pods from different StatefulSets can share a Node.&lt;/li&gt;
&lt;li&gt;Support for Openshift Route resource for NGINX has been added.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;In Grafana Mimir Helm chart v3.2, the following changes were made:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If you are not using the sizing plans (&lt;code&gt;small.yaml&lt;/code&gt;, &lt;code&gt;large.yaml&lt;/code&gt;, &lt;code&gt;capped-small.yaml&lt;/code&gt;, or &lt;code&gt;capped-large.yaml&lt;/code&gt;) in production, you must reintroduce pod affinity rules for the ingester and store-gateway. This also fixes a missing label selector for the ingester.
Merge the following configuration into your custom values file:

&lt;div class=&#34;code-snippet &#34;&gt;&lt;div class=&#34;lang-toolbar&#34;&gt;
    &lt;span class=&#34;lang-toolbar__item lang-toolbar__item-active&#34;&gt;YAML&lt;/span&gt;
    &lt;span class=&#34;code-clipboard&#34;&gt;
      &lt;button x-data=&#34;app_code_snippet()&#34; x-init=&#34;init()&#34; @click=&#34;copy()&#34;&gt;
        &lt;img class=&#34;code-clipboard__icon&#34; src=&#34;/media/images/icons/icon-copy-small-2.svg&#34; alt=&#34;Copy code to clipboard&#34; width=&#34;14&#34; height=&#34;13&#34;&gt;
        &lt;span&gt;Copy&lt;/span&gt;
      &lt;/button&gt;
    &lt;/span&gt;
    &lt;div class=&#34;lang-toolbar__border&#34;&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;div class=&#34;code-snippet &#34;&gt;
    &lt;pre data-expanded=&#34;false&#34;&gt;&lt;code class=&#34;language-yaml&#34;&gt;ingester:
  affinity:
    podAntiAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
        - labelSelector:
            matchExpressions:
              - key: target
                operator: In
                values:
                  - ingester
          topologyKey: &amp;#34;kubernetes.io/hostname&amp;#34;
        - labelSelector:
            matchExpressions:
              - key: app.kubernetes.io/component
                operator: In
                values:
                  - ingester
          topologyKey: &amp;#34;kubernetes.io/hostname&amp;#34;
store_gateway:
  affinity:
    podAntiAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
        - labelSelector:
            matchExpressions:
              - key: target
                operator: In
                values:
                  - store-gateway
          topologyKey: &amp;#34;kubernetes.io/hostname&amp;#34;
        - labelSelector:
            matchExpressions:
              - key: app.kubernetes.io/component
                operator: In
                values:
                  - store-gateway
          topologyKey: &amp;#34;kubernetes.io/hostname&amp;#34;&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/2906&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 2906&lt;/a&gt;: Fix wrong label selector in ingester anti affinity rules in the sizing plans.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3262&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3262&lt;/a&gt;: Query-scheduler no longer periodically terminates connections from query-frontends and queriers. This caused some queries to time out and EOF errors in the logs.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-32-release-notes">Grafana Mimir Helm chart version 3.2 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 3.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.4 or Grafana Enterprise Metrics (GEM) v2.3. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 3.3 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v3.3/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v3.3/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-33-release-notes&#34;&gt;Grafana Mimir Helm chart version 3.3 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 3.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.4 or Grafana Enterprise Metrics (GEM) v2.4. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.4.x/release-notes/v2.4/&#34;&gt;Grafana Mimir v2.4&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/latest/release-notes/v2-4/&#34;&gt;Grafana Enterprise Metrics v2.4&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This is a re-release of Grafana Mimir Helm chart version 3.2 to include GEM version v2.4.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-33-release-notes">Grafana Mimir Helm chart version 3.3 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 3.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.4 or Grafana Enterprise Metrics (GEM) v2.4. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.0 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.0/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.0/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-40-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.0 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.0 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.5 and Grafana Enterprise Metrics v2.5. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.5.x/release-notes/v2.5/&#34;&gt;Grafana Mimir v2.5&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/latest/release-notes/v2-5/&#34;&gt;Grafana Enterprise Metrics v2.5&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from Grafana Mimir Helm chart 3.3, review the &lt;a href=&#34;#important-changes&#34;&gt;list of important changes&lt;/a&gt; that follow.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Zone aware replication&lt;/strong&gt;
Helm now supports deploying the ingesters and store-gateways as different availability zones. The replication is also zone-aware, therefore multiple instances of one zone can fail without any service interruption and rollouts can be performed faster because many instances of each zone can be restarted together, as opposed to them all restarting in sequence.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Running without root privileges&lt;/strong&gt;
All Mimir, GEM, and Agent processes no longer require root privileges to run.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Unified reverse proxy (&lt;code&gt;gateway&lt;/code&gt;) configuration for Mimir and GEM&lt;/strong&gt;
This change allows you to more easily upgrade from Mimir to GEM, without any downtime. The unified configuration also makes it possible to autoscale the GEM gateway pods and it supports OpenShift Route. The change also deprecates the &lt;code&gt;nginx&lt;/code&gt; section in the configuration. The section will be removed in release &lt;code&gt;7.0.0&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Various quality of life improvements&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Rollout strategies with zero downtime&lt;/li&gt;
&lt;li&gt;Read-path and compactor configuration provide better default settings&lt;/li&gt;
&lt;li&gt;OTLP ingestion support in the Nginx configuration&lt;/li&gt;
&lt;li&gt;A default configuration for Alertmanager: its user interface, as well as the sending of alerts from the ruler, work out of the box&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;In Grafana Mimir Helm chart v4.0, the following changes were made:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Breaking change&lt;/strong&gt;, zone aware replication is enabled by default, which can cause data loss if upgrade procedure is not followed, &lt;a href=&#34;https://github.com/grafana/mimir/blob/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;for details about how to upgrade, see the Helm changelog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;We updated our sizing plans to make them better reflect how we recommend running Mimir and GEM in production.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Breaking change&lt;/strong&gt;, due to the sizing plans updates, users of the &lt;em&gt;small&lt;/em&gt; plan must consult the &lt;a href=&#34;https://github.com/grafana/mimir/blob/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm changelog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Updated MinIO&lt;/strong&gt;
The MinIO sub-chart was updated from &lt;code&gt;4.x&lt;/code&gt; to &lt;code&gt;5.0.0&lt;/code&gt;. This update &lt;strong&gt;inherits a breaking change&lt;/strong&gt; because the MinIO gateway mode was removed.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3170&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3170&lt;/a&gt;: Fix an issue that caused metamonitoring secrets to be created incorrectly.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3208&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3208&lt;/a&gt;: Nginx: fixed imagePullSecret value reference inconsistency.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3169&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3169&lt;/a&gt;: Move the activity tracker log from /data to /active-query-tracker to remove ignore log messages.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3087&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3087&lt;/a&gt;: Fix Invalid ingress nginx config due to newline in prometheusHttpPrefix Helm named templates.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3479&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3479&lt;/a&gt;: Added missing endpoint for OTLP in NGINX.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-40-release-notes">Grafana Mimir Helm chart version 4.0 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.0 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.5 and Grafana Enterprise Metrics v2.5. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.1 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.1/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.1/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-41-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.1 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.1 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.6 and Grafana Enterprise Metrics v2.5. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.6.x/release-notes/v2.6/&#34;&gt;Grafana Mimir v2.6&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/latest/release-notes/v2-5/&#34;&gt;Grafana Enterprise Metrics v2.5&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from a previous major version, review the changelog entry for all the major releases since then and perform the necessary migrations.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;PrometheusRule objects&lt;/strong&gt;
Add ability to manage PrometheusRule for metamonitoring with Prometheus operator from the Helm chart.
This feature allows you to create arbitrary PrometheusRule objects that your Prometheus operator will
detect and start evaluating the rules inside them.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; This does not configure the Mimir cluster to evaluate the rules.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;We have also bundled the recommended &lt;a href=&#34;https://github.com/grafana/mimir/blob/main/operations/mimir-mixin-compiled/rules.yaml&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;recording rules&lt;/a&gt;
and &lt;a href=&#34;https://github.com/grafana/mimir/blob/main/operations/mimir-mixin-compiled/alerts.yaml&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;alerts&lt;/a&gt; for monitoring Mimir with the Helm chart.
The recording rules are used in the mimir-mixin dashboards, and the alerts cover the health
of the Mimir cluster. To enable the recommended rules, set &lt;code&gt;metaMonitoring.prometheusRule.mimirRules: true&lt;/code&gt;.
To enable the recommended alerts, set &lt;code&gt;metaMonitoring.prometheusRule.mimirAlerts: true&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Deploying extra objects&lt;/strong&gt;
The Helm chart now supports deploying arbitrary objects via the &lt;code&gt;extraObjects&lt;/code&gt; section. For example:&lt;/p&gt;

&lt;div class=&#34;code-snippet &#34;&gt;&lt;div class=&#34;lang-toolbar&#34;&gt;
    &lt;span class=&#34;lang-toolbar__item lang-toolbar__item-active&#34;&gt;YAML&lt;/span&gt;
    &lt;span class=&#34;code-clipboard&#34;&gt;
      &lt;button x-data=&#34;app_code_snippet()&#34; x-init=&#34;init()&#34; @click=&#34;copy()&#34;&gt;
        &lt;img class=&#34;code-clipboard__icon&#34; src=&#34;/media/images/icons/icon-copy-small-2.svg&#34; alt=&#34;Copy code to clipboard&#34; width=&#34;14&#34; height=&#34;13&#34;&gt;
        &lt;span&gt;Copy&lt;/span&gt;
      &lt;/button&gt;
    &lt;/span&gt;
    &lt;div class=&#34;lang-toolbar__border&#34;&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;div class=&#34;code-snippet &#34;&gt;
    &lt;pre data-expanded=&#34;false&#34;&gt;&lt;code class=&#34;language-yaml&#34;&gt;extraObjects:
  - kind: ConfigMap
    apiVersion: v1
    metadata:
      name: extra-cm-{{ .Release.Name }}
    data: |
      extra.yml: &amp;#34;does-my-install-need-extra-info: true&amp;#34;&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3686&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3686&lt;/a&gt;: Change &lt;code&gt;rollout-operator&lt;/code&gt; to use the same &lt;code&gt;PodSecurityPolicy&lt;/code&gt; as the Mimir/GEM service account.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3780&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3780&lt;/a&gt;: Gateway: Fixed checksum/config label when using NGINX.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3781&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3781&lt;/a&gt;: Gateway: Disable &lt;code&gt;ServiceMonitor&lt;/code&gt; when using NGINX.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3851&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3851&lt;/a&gt;: Gateway: Expose OTLP ingestion path in the NGINX routing configuration.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3851&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3851&lt;/a&gt;: Gateway: use alertmanager headless service in the NGINX routing configuration.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/3919&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 3919&lt;/a&gt;: Ingester: Increase persistent volume in &lt;code&gt;capped-small.yaml&lt;/code&gt; to &lt;code&gt;50Gi&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4124&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4124&lt;/a&gt;: NGINX: Set server variables in configuration so that IP addresses are re-resolved when TTLs expire.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4164&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4164&lt;/a&gt;: PodSecurityPolicy: Do not include namespace for the definition as it is not needed and some tools reject it.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-41-release-notes">Grafana Mimir Helm chart version 4.1 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.1 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.6 and Grafana Enterprise Metrics v2.5. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.2 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.2/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.2/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-42-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.2 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.6 or Grafana Enterprise Metrics (GEM) v2.6. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.6.x/release-notes/v2.6/&#34;&gt;Grafana Mimir v2.6&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/v2.6.x/release-notes/v2-6/&#34;&gt;Grafana Enterprise Metrics v2.6&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from a previous major version, review the changelog entry for all the major releases since then and perform the necessary migrations.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;This is a re-release of Grafana Mimir Helm chart version 4.1 to include GEM version v2.6.&lt;/p&gt;
&lt;p&gt;It also includes the following notable change:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You can override the NGINX error log level with the &lt;code&gt;nginx.nginxConfig.errorLogLevel&lt;/code&gt; value, and disable the access log with the &lt;code&gt;nginx.nginxConfig.accessLogEnabled&lt;/code&gt; value.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;h3 id=&#34;421&#34;&gt;4.2.1&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4818&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4818&lt;/a&gt;: Updated Go version in Mimir and GEM images to 1.20.3 and 1.19.8 to fix CVE-2023-24538.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-42-release-notes">Grafana Mimir Helm chart version 4.2 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.6 or Grafana Enterprise Metrics (GEM) v2.6. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.3 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.3/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.3/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-43-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.3 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.7 or Grafana Enterprise Metrics (GEM) v2.7. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.7.x/release-notes/v2.7/&#34;&gt;Grafana Mimir v2.7&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/v2.7.x/release-notes/v2-7/&#34;&gt;Grafana Enterprise Metrics v2.7&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from a previous major version, review the changelog entry for all the major releases since then and perform the necessary migrations.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The ruler deployment max surge was changed from &lt;code&gt;0&lt;/code&gt; to &lt;code&gt;50%&lt;/code&gt;, and max unavailable from &lt;code&gt;1&lt;/code&gt; to &lt;code&gt;0&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;nginx autoscaling&lt;/strong&gt;
Support autoscaling/v2 HorizontalPodAutoscaler for nginx autoscaling starting with Kubernetes 1.23.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Default pod security context&lt;/strong&gt;
Set default pod security context under &lt;code&gt;rbac.podSecurityContext&lt;/code&gt; for easier install on OpenShift.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cache support for GEM&amp;rsquo;s admin bucket&lt;/strong&gt;
The cache will be enabled by default when you use the small.yaml, large.yaml, capped-small.yaml
or capped-large.yaml Helm values file.
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; For more information, refer to the &lt;a href=&#34;/docs/enterprise-metrics/v2.7.x/config/&#34;&gt;Grafana Enterprise Metrics configuration&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4299&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4299&lt;/a&gt;: Allow override of Kubernetes version for nginx HPA.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4353&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4353&lt;/a&gt;: Do not generate query-frontend-headless service if query scheduler is enabled. Fixes parity with jsonnet.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4126&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4126&lt;/a&gt;: Apply &lt;code&gt;clusterLabel&lt;/code&gt; to ServiceMonitors for kube-state-metrics, kubelet, and cadvisor.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4392&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4392&lt;/a&gt;: Add http port in distributor headless service. Fixes parity with jsonnet.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4272&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4272&lt;/a&gt;: Generate the pod security context on the pod level in graphite web deployment, instead of on container level.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4485&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4485&lt;/a&gt;: Fix kube-state-metrics metricRelabelings dropping pods and deployments.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4485&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4407&lt;/a&gt;: Allow for single extraArg flags in templated memcached args.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;431&#34;&gt;4.3.1&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4803&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4803&lt;/a&gt;: Updated Go version in Mimir and GEM images to 1.20.3 to fix CVE-2023-24538.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-43-release-notes">Grafana Mimir Helm chart version 4.3 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.7 or Grafana Enterprise Metrics (GEM) v2.7. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.4 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.4/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.4/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-44-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.4 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.4 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.8 or Grafana Enterprise Metrics (GEM) v2.8. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.8.x/release-notes/v2.8/&#34;&gt;Grafana Mimir v2.8&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/v2.8.x/release-notes/v2-8/&#34;&gt;Grafana Enterprise Metrics v2.8&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from a previous major version, review the changelog entry for all the major releases since then and perform the necessary migrations.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Store-gateway rollout is sped up by setting unregister_on_shutdown for store-gateway to false by default.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Add support for Vault Agent&lt;/strong&gt;
When enabled, the Pod annotations for TLS configurable components are updated to allow a running Vault Agent to fetch secrets from Vault and to inject them into a Pod. The annotations are updated for the following components: &lt;code&gt;admin-api&lt;/code&gt;, &lt;code&gt;alertmanager&lt;/code&gt;, &lt;code&gt;compactor&lt;/code&gt;, &lt;code&gt;distributor&lt;/code&gt;, &lt;code&gt;gateway&lt;/code&gt;, &lt;code&gt;ingester&lt;/code&gt;, &lt;code&gt;overrides-exporter&lt;/code&gt;, &lt;code&gt;querier&lt;/code&gt;, &lt;code&gt;query-frontend&lt;/code&gt;, &lt;code&gt;query-scheduler&lt;/code&gt;, &lt;code&gt;ruler&lt;/code&gt;, &lt;code&gt;store-gateway&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Default pod security context&lt;/strong&gt;
Set default pod security context under &lt;code&gt;rbac.podSecurityContext&lt;/code&gt; for easier install on OpenShift.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Configure &lt;code&gt;storageClass&lt;/code&gt; per zone&lt;/strong&gt;
You can now configure &lt;code&gt;storageClass&lt;/code&gt; per zone for Alertmanager, StoreGateway and Ingester.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Allow for deploying mixin dashboards as part of the helm chart&lt;/strong&gt;
If enabled, a ConfigMap will be created for each dashboard which can be used for Grafana.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Allow definition of multiple topology spread constraints&lt;/strong&gt;
Backwards compatibility is kept by supporting the old object/dict syntax next to the new array based syntax.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4728&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4728&lt;/a&gt;: Fix route to service port mapping.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4540&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4540&lt;/a&gt; Include podAnnotations on the tokengen Job.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4573&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4573&lt;/a&gt;: Add http port in ingester and store-gateway headless services.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4642&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4642&lt;/a&gt; Set &lt;code&gt;gateway&lt;/code&gt; and &lt;code&gt;nginx&lt;/code&gt; HPA MetricTarget type to Utilization to align with usage of averageUtilization.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/4716&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 4716&lt;/a&gt; Add missing imagePullSecrets configuration to the &lt;code&gt;graphite-web&lt;/code&gt; deployment template.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-44-release-notes">Grafana Mimir Helm chart version 4.4 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.4 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.8 or Grafana Enterprise Metrics (GEM) v2.8. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 4.5 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.5/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v4.5/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-45-release-notes&#34;&gt;Grafana Mimir Helm chart version 4.5 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 4.5 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.9 or Grafana Enterprise Metrics (GEM) v2.9. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;To learn about new features and enhancements in Grafana Mimir or GEM, see the release notes for &lt;a href=&#34;/docs/mimir/v2.9.x/release-notes/v2.9/&#34;&gt;Grafana Mimir v2.9&lt;/a&gt; or &lt;a href=&#34;/docs/enterprise-metrics/v2.9.x/release-notes/v2-9/&#34;&gt;Grafana Enterprise Metrics v2.9&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you are upgrading from a previous major version, review the changelog entry for all the major releases since then and perform the necessary migrations.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;The &lt;code&gt;graphite-web&lt;/code&gt; component was removed&lt;/strong&gt; from the graphite proxy. The &lt;code&gt;graphite-web&lt;/code&gt; component had several configuration issues which meant it was failing to process requests. The &lt;code&gt;graphite-web&lt;/code&gt; component was used to render queries that the native query engine cannot, however the majority of graphite functions and features are supported by the native GEM graphite query engine and there is development ongoing to reach feature parity.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cardinality estimation is enabled&lt;/strong&gt; in the query-frontend via &lt;code&gt;frontend.query_sharding_target_series_per_shard&lt;/code&gt; in the Mimir configuration for query sharding by default if &lt;code&gt;results-cache.enabled&lt;/code&gt; is true. This change improves query performance in case the overhead of query sharding is more than its benefit.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The Nginx read timeout (&lt;code&gt;proxy_read_timeout&lt;/code&gt;) is increased to 300 seconds (increase from default 60 seconds), so that it doesn&amp;rsquo;t interfere with the querier&amp;rsquo;s default 120 seconds timeout (&lt;code&gt;mimir.structuredConfig.querier.timeout&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;Store-gateway: set &lt;code&gt;GOMEMLIMIT&lt;/code&gt; to the memory request value. This should reduce the likelihood the store-gateway may go out of memory, at the cost of an higher CPU utilization due to more frequent garbage collections when the memory utilization gets closer or above the configured requested memory.&lt;/li&gt;
&lt;li&gt;Store-gateway: dynamically set &lt;code&gt;GOMAXPROCS&lt;/code&gt; based on the CPU request. This should reduce the likelihood a high load on the store-gateway will slow down the entire Kubernetes node.&lt;/li&gt;
&lt;li&gt;Added &lt;code&gt;global.podLabels&lt;/code&gt; which can add POD labels to PODs directly controlled by this chart (mimir services, nginx).&lt;/li&gt;
&lt;li&gt;Enabled the &lt;code&gt;track_sizes&lt;/code&gt; feature for Memcached pods to help determine cache efficiency.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/5031&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 5031&lt;/a&gt; Fix Pod Anti-Affinity rule to allow ingesters from the same zone to run on same node, by using &lt;code&gt;zone&lt;/code&gt; label since the old &lt;code&gt;app.kubernetes.io/component&lt;/code&gt; did not allow for this.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-45-release-notes">Grafana Mimir Helm chart version 4.5 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 4.5 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.9 or Grafana Enterprise Metrics (GEM) v2.9. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.0 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.0/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.0/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-50-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.0 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.0 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.9 or Grafana Enterprise Metrics (GEM) v2.9. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; For a migration guide from &lt;code&gt;mimir-distributed&lt;/code&gt; version 4.X to 5.0, see &lt;a href=&#34;../../migration-guides/migrate-helm-chart-4.x-to-5.0/&#34;&gt;Migrate the Helm chart from version 4.x to 5.0&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Breaking change: PodSecurityPolicy objects are no longer rendered on Kubernetes versions 1.24 or higher.&lt;/strong&gt; This resource type was deprecated in Kubernetes version 1.21 and was removed in version 1.25. Due to how Helm manages release histories, the &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart can no longer be upgraded if a PodSecurityPolicy was present during a Kubernetes upgrade from 1.24 to 1.25. In order to remediate this, &lt;code&gt;mimir-distributed&lt;/code&gt; no longer renders the PodSecurityPolicy on Kubernetes 1.24. For a migration guide from &lt;code&gt;mimir-distributed&lt;/code&gt; version 4.X to 5.0, see &lt;a href=&#34;../../migration-guides/migrate-helm-chart-4.x-to-5.0/&#34;&gt;Migrate the Helm chart from version 4.x to 5.0&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Use metadata cache for ruler bucket scans. This greatly reduces pressure to the object store by the ruler.&lt;/li&gt;
&lt;li&gt;Support metricRelabelings in the monitoring serviceMonitor resources via &lt;code&gt;metaMonitoring.serviceMonitor.metricRelabelings&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Increase the default number of ingester Pods that can restart at a time in a multi-zone deployment. This speeds up deployments with more than 25 ingesters per zone.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-50-release-notes">Grafana Mimir Helm chart version 5.0 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.0 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.9 or Grafana Enterprise Metrics (GEM) v2.9. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.1 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.1/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.1/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-51-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.1 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.1 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.10 or Grafana Enterprise Metrics (GEM) v2.10. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Deployments now set &lt;code&gt;maxUnavailable&lt;/code&gt; to 0 and &lt;code&gt;maxSurge&lt;/code&gt; to &lt;code&gt;15%&lt;/code&gt; by default to avoid becoming unavailable during rollout. Please note that if you have
set &lt;code&gt;maxSurge=0&lt;/code&gt;, the upgrade will fail to execute with the following error&lt;/p&gt;

&lt;div class=&#34;code-snippet code-snippet__mini&#34;&gt;&lt;div class=&#34;lang-toolbar__mini&#34;&gt;
    &lt;span class=&#34;code-clipboard&#34;&gt;
      &lt;button x-data=&#34;app_code_snippet()&#34; x-init=&#34;init()&#34; @click=&#34;copy()&#34;&gt;
        &lt;img class=&#34;code-clipboard__icon&#34; src=&#34;/media/images/icons/icon-copy-small-2.svg&#34; alt=&#34;Copy code to clipboard&#34; width=&#34;14&#34; height=&#34;13&#34;&gt;
        &lt;span&gt;Copy&lt;/span&gt;
      &lt;/button&gt;
    &lt;/span&gt;
  &lt;/div&gt;&lt;div class=&#34;code-snippet code-snippet__border&#34;&gt;
    &lt;pre data-expanded=&#34;false&#34;&gt;&lt;code class=&#34;language-none&#34;&gt;Invalid value: intstr.IntOrString{Type:0, IntVal:0, StrVal:&amp;#34;&amp;#34;}: may not be 0 when `maxSurge` is 0&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;and you have to adjust your values of &lt;code&gt;maxSurge&lt;/code&gt; and &lt;code&gt;maxUnavailable&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pod management policy is now configurable for store-gateways and compactors.&lt;/li&gt;
&lt;li&gt;Nginx now listens on IPv6 pod interface as well if available.&lt;/li&gt;
&lt;li&gt;Distributor and querier CPU utilization better in line with CPU request by using &lt;code&gt;GOMAXPROCS&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;511&#34;&gt;5.1.1&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/6371&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 6371&lt;/a&gt;: Updated the Mimir and GEM images to 2.10.2. These include some bugfixes and update grpc-go library to 1.57.1 and golang.org/x/net to 0.17, which include fix for CVE-2023-44487.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;512&#34;&gt;5.1.2&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/6427&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 6427&lt;/a&gt;: Updated the Mimir and GEM images to 2.10.3. These include a fix to the previous release. Update grpc-go library to 1.57.2-dev that includes a fix for a bug introduced in 1.57.1.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;513&#34;&gt;5.1.3&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/6654&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 6654&lt;/a&gt;: Updated the Mimir and GEM images to 2.10.4. This updates otelhttp library to v0.44.0 as a mitigation for CVE-2023-45142. For GEM it also fixes memory leak in Admin client.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;514&#34;&gt;5.1.4&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/6863&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 6863&lt;/a&gt;: Updated the memcached-exporter dependency to version 0.14.1 which includes a fix for CVE-2023-39325.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-51-release-notes">Grafana Mimir Helm chart version 5.1 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.1 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.10 or Grafana Enterprise Metrics (GEM) v2.10. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.2 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.2/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.2/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-52-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.2 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.11 or Grafana Enterprise Metrics (GEM) v2.11. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bugfixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The default timeout used for index-queries caches is increased from &lt;code&gt;200ms&lt;/code&gt; to &lt;code&gt;450ms&lt;/code&gt; to reduce the number of connections opened under increased load.&lt;/li&gt;
&lt;li&gt;The default &lt;code&gt;clusterDomain&lt;/code&gt; is changed from &lt;code&gt;cluster.local&lt;/code&gt; to &lt;code&gt;cluster.local.&lt;/code&gt; to reduce the number of DNS lookups performed.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The lifecycle management of persistent volumes belonging to compactor, ingester, store-gateway and alertmanager components can now be configured via the parameters &lt;code&gt;enableRetentionPolicy&lt;/code&gt;, &lt;code&gt;whenScaled&lt;/code&gt; and &lt;code&gt;whenDeleted&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;The chart now supports the option to use a plain &lt;code&gt;Ingress&lt;/code&gt; resource instead of a gateway service.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;h3 id=&#34;521&#34;&gt;5.2.1&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/7199&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 7199&lt;/a&gt;: Revert &lt;a href=&#34;https://github.com/grafana/mimir/pull/6999&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 6999&lt;/a&gt;, introduced in 5.2.0, which broke installations relying on the default value of &lt;code&gt;blocks_storage.backend: s3&lt;/code&gt;. If &lt;code&gt;mimir.structuredConfig.blocks_storage.backend: s3&lt;/code&gt; wasn&amp;rsquo;t explicitly set, then Mimir would fail to connect to S3 and will instead try to read and write blocks to the local filesystem.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;522&#34;&gt;5.2.2&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/7555&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 7555&lt;/a&gt;: Update GEM to v2.11.2&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;523&#34;&gt;5.2.3&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/7632&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 7632&lt;/a&gt;: Fix crashloop in GEM admin-cache container&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-52-release-notes">Grafana Mimir Helm chart version 5.2 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.2 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.11 or Grafana Enterprise Metrics (GEM) v2.11. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.3 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.3/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.3/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-53-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.3 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.12 or Grafana Enterprise Metrics (GEM) v2.12. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bug fixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;A number of timeout settings have been improved upon:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Relaxed the hash ring heartbeat period and timeout for the distributor, ingester, store-gateway and compactor. This reduces load in intra component communication with the tradeoff that abrupt component failures take longer to detect. The new values are taken from Grafana Cloud Metrics operations.&lt;/li&gt;
&lt;li&gt;Increased the timeout for writing recording rule results to &lt;code&gt;10s&lt;/code&gt; to accommodate large result sets.&lt;/li&gt;
&lt;li&gt;Increased the distributor termination grace period from &lt;code&gt;60s&lt;/code&gt; to &lt;code&gt;100s&lt;/code&gt; to give more time for a clean termination.&lt;/li&gt;
&lt;li&gt;Increased the read timeout for chunks and index caches using memcached from &lt;code&gt;450ms&lt;/code&gt; to &lt;code&gt;750ms&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Tuned the GRPC maximum connection age and shutdown delay for the distributor and query-frontend components to avoid invoking components that are shutting down.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added experimental feature for deploying &lt;a href=&#34;https://keda.sh&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;KEDA&lt;/a&gt; ScaledObjects as part of the helm chart for the components: distributor, querier, query-frontend and ruler. For more details please see the values sections &lt;code&gt;kedaAutoscaling&lt;/code&gt;, &lt;code&gt;distributor.kedaAutoscaling&lt;/code&gt;, &lt;code&gt;ruler.kedaAutoscaling&lt;/code&gt;, &lt;code&gt;query_frontend.kedaAutoscaling&lt;/code&gt;, and &lt;code&gt;querier.kedaAutoscaling&lt;/code&gt;, and the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Gateway: Added option for configuring whether or not NGINX binds IPv6: &lt;code&gt;gateway.nginx.config.enableIPv6&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;bug-fixes&#34;&gt;Bug fixes&lt;/h2&gt;
&lt;h3 id=&#34;531&#34;&gt;5.3.1&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/grafana/mimir/pull/9215&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;PR 9215&lt;/a&gt;: Update GEM to v2.12.1&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-53-release-notes">Grafana Mimir Helm chart version 5.3 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.3 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.12 or Grafana Enterprise Metrics (GEM) v2.12. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.4 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.4/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.4/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-54-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.4 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.4 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.13 or Grafana Enterprise Metrics (GEM) v2.13. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bug fixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;A number of timeout settings are improved:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Fine-tuned termination grace periods for all components. This helps to ensure that components can shut down gracefully, without interrupting queries or write requests.&lt;/li&gt;
&lt;li&gt;Continuous test and smoke test containers now use the Mimir image, as the continuous test code is now part of Mimir.
As a result, the &lt;code&gt;image&lt;/code&gt; section in the values file now replaces &lt;code&gt;smoke_test.image&lt;/code&gt; and &lt;code&gt;continuous_test.image&lt;/code&gt;, and the latter two are removed.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Experimental support for a dedicated ruler query path. With a dedicated set of queriers, query-frontends, and
query-schedulers, outages and slow-downs on the main query path don&amp;rsquo;t affect rule evaluations.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-54-release-notes">Grafana Mimir Helm chart version 5.4 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.4 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.13 or Grafana Enterprise Metrics (GEM) v2.13. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.5 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.5/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.5/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-55-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.5 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.5 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.14 or Grafana Enterprise Metrics (GEM) v2.14. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bug fixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The ingester is configured with &lt;code&gt;GOMAXPROCS&lt;/code&gt; to help with overhead from the Go scheduler, observed on hosts with a large number of CPU cores.&lt;/li&gt;
&lt;li&gt;The GEM query-frontend logs the query author&amp;rsquo;s access policy name and token name in the query statistics logs. This provides more visibility as which token is running a potentially expensive query.&lt;/li&gt;
&lt;li&gt;Dashboards are updated to allow switching between classic and native histograms in the queries that support it.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Notable enhancements are as follows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The dashboard configuration maps support setting a namespace.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;topologySpreadConstraints&lt;/code&gt; configuration of all components is updated to better match what is allowed in Kubernetes.&lt;/li&gt;
&lt;li&gt;Metamonitoring supports AWS Signature Version 4 (sigv4) authentication for remote write.&lt;/li&gt;
&lt;li&gt;Metamonitoring is updated to allow its Grafana Agent pods to set image pull secrets, node selectors, tolerances, topology spread constraints, and resource requests and limits.&lt;/li&gt;
&lt;li&gt;The continous-test is updated to allow setting separate read and write URLs.&lt;/li&gt;
&lt;li&gt;The continous-test can be enabled in GEM.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-55-release-notes">Grafana Mimir Helm chart version 5.5 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.5 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.14 or Grafana Enterprise Metrics (GEM) v2.14. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item><item><title>Grafana Mimir Helm chart version 5.6 release notes</title><link>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.6/</link><pubDate>Thu, 16 Apr 2026 01:00:22 +0000</pubDate><guid>https://grafana.com/docs/helm-charts/mimir-distributed/v5.6.x/release-notes/v5.6/</guid><content><![CDATA[&lt;h1 id=&#34;grafana-mimir-helm-chart-version-56-release-notes&#34;&gt;Grafana Mimir Helm chart version 5.6 release notes&lt;/h1&gt;
&lt;p&gt;Grafana Labs is excited to announce version 5.6 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.15 and Grafana Enterprise Metrics (GEM) v2.15. The &lt;code&gt;mimir-distributed&lt;/code&gt; Helm chart is the best way to install Mimir on Kubernetes.&lt;/p&gt;
&lt;p&gt;The highlights that follow include the top features, enhancements, and bug fixes in this release. For a comprehensive list of changes, see the &lt;a href=&#34;https://github.com/grafana/mimir/tree/main/operations/helm/charts/mimir-distributed/CHANGELOG.md&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Helm chart changelog&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;important-changes&#34;&gt;Important changes&lt;/h2&gt;
&lt;p&gt;The rollout-operator version has been updated to version 0.20.0.&lt;/p&gt;
&lt;p&gt;The &lt;code&gt;track_sizes&lt;/code&gt; feature for Memcached pods has been removed.&lt;/p&gt;
&lt;h2 id=&#34;features-and-enhancements&#34;&gt;Features and enhancements&lt;/h2&gt;
&lt;p&gt;Support has been added for &lt;code&gt;federation-frontend&lt;/code&gt; in the values file. The federation-frontend allows you to query data from multiple GEM clusters using a single endpoint. For more information about cluster query federation, refer to the 
    &lt;a href=&#34;/docs/enterprise-metrics/v2.15.x/operations/cluster-query-federation/&#34;&gt;federation-frontend documentation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can create a service account for the alertmanager with dedicated permissions and authorizations by setting &lt;code&gt;alertmanager.serviceAcount.create&lt;/code&gt; in the values file.&lt;/p&gt;
]]></content><description>&lt;h1 id="grafana-mimir-helm-chart-version-56-release-notes">Grafana Mimir Helm chart version 5.6 release notes&lt;/h1>
&lt;p>Grafana Labs is excited to announce version 5.6 of the Grafana Mimir Helm chart, which is compatible with Grafana Mimir v2.15 and Grafana Enterprise Metrics (GEM) v2.15. The &lt;code>mimir-distributed&lt;/code> Helm chart is the best way to install Mimir on Kubernetes.&lt;/p></description></item></channel></rss>