From 6b20438dd56c335ca631a4db7e047ecc73fbf16a Mon Sep 17 00:00:00 2001 From: Brian Jackson <bjackson@fullvisibility.com> Date: Thu, 20 Feb 2025 09:27:52 -0500 Subject: [PATCH 1/2] Deprecate nginx in favor of gateway --- CHANGELOG.md | 5 +++++ README.md | 2 +- chart/Chart.yaml | 2 +- chart/values.yaml | 4 ++++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6270ad3..ff227ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- +## [5.5.1-bb.6] 2025-02-20 +### Changed + +- Set `.Values.nginx.enabled` to `false` as this is deprecated in favor of `gateway` + ## [5.5.1-bb.5] 2025-02-14 ### Changed diff --git a/README.md b/README.md index 1688fae..b855641 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ <!-- Warning: Do not manually edit this file. See notes on gluon + helm-docs at the end of this file for more information. --> # mimir -    +    Grafana Mimir diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 25c2440..3a2aeae 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: mimir description: Grafana Mimir type: application -version: 5.5.1-bb.5 +version: 5.5.1-bb.6 appVersion: 2.14.2 icon: https://raw.githubusercontent.com/grafana/grafana/main/public/img/grafana_icon.svg sources: diff --git a/chart/values.yaml b/chart/values.yaml index a903e22..748ae09 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -73,7 +73,10 @@ mimir-distributed: grafanaAgent: enabled: false +# -- DEPRECATED: use the 'gateway' section instead. For a migration guide refer to +# https://grafana.com/docs/helm-charts/mimir-distributed/latest/migration-guides/migrate-to-unified-proxy-deployment/ nginx: + enabled: false image: registry: registry1.dso.mil repository: ironbank/opensource/nginx/nginx @@ -88,6 +91,7 @@ mimir-distributed: # pullPolicy: gateway: + enabled: true enabledNonEnterprise: true nginx: image: -- GitLab From 066e601dc4bba0ad8c1b34800b50fcab0babe358 Mon Sep 17 00:00:00 2001 From: Brian Jackson <bjackson@fullvisibility.com> Date: Thu, 20 Feb 2025 11:15:57 -0500 Subject: [PATCH 2/2] Changelog linting --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff227ba..934f12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,17 +3,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- -## [5.5.1-bb.6] 2025-02-20 +## [5.5.1-bb.6] - 2025-02-20 ### Changed - Set `.Values.nginx.enabled` to `false` as this is deprecated in favor of `gateway` -## [5.5.1-bb.5] 2025-02-14 +## [5.5.1-bb.5] - 2025-02-14 ### Changed - MinIO Tenant Pool from 4 to 1 server -## [5.5.1-bb.4] 2025-01-31 +## [5.5.1-bb.4] - 2025-01-31 ### Added - Added `app: minio` and `app.kubernetes.io/name: minio` labels to MinIO Tenant @@ -50,13 +50,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Added Istio monitoring auth policy, auth policy template, sidecar, and service entry ## [5.5.0-bb.7] - 2024-12-11 -### Added +### Added - Network Policy for Grafana ingress - Changed the index pattern for network policies ## [5.5.0-bb.6] - 2024-12-11 -### Added +### Added - Added higher Mimir ingester limits to values.yaml - Added grpc and http ports to values.yaml instead of importing from upstream @@ -81,7 +81,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed - Modified chart.yaml details to accurately match upstream 5.5.0 tag -- Updated mimir image to use Ironbank equivalent +- Updated mimir image to use Ironbank equivalent - Updated nginx image to use Ironbank equivalent - Updated memcached image to use Ironbank equivalent -- GitLab