diff --git a/operations/helm/charts/mimir-distributed/CHANGELOG.md b/operations/helm/charts/mimir-distributed/CHANGELOG.md index 59e599f60e3..19737f2262e 100644 --- a/operations/helm/charts/mimir-distributed/CHANGELOG.md +++ b/operations/helm/charts/mimir-distributed/CHANGELOG.md @@ -15,6 +15,7 @@ Entries should include a reference to the Pull Request that introduced the chang * [ENHANCEMENT] Add `extraEnvFrom` capability to all Mimir services to enable injecting secrets via environment variables. #2017 * [ENHANCEMENT] Enable `-config.expand-env=true` option in all Mimir services to be able to take secrets/settings from the environment and inject them into the Mimir configuration file. #2017 +* [ENHANCEMENT] Add a simple test for enterprise installation #2027 ## 2.1.0-beta.7 diff --git a/operations/helm/charts/mimir-distributed/ci/test-enterprise-values.yaml b/operations/helm/charts/mimir-distributed/ci/test-enterprise-values.yaml new file mode 100644 index 00000000000..61bf81e07f7 --- /dev/null +++ b/operations/helm/charts/mimir-distributed/ci/test-enterprise-values.yaml @@ -0,0 +1,22 @@ +# Test values to limit the load during CI +enterprise: + enabled: true + +alertmanager: + persistentVolume: + enabled: false + +compactor: + persistentVolume: + enabled: false + +ingester: + persistentVolume: + enabled: false + resources: + requests: + cpu: 10m + +store_gateway: + persistentVolume: + enabled: false diff --git a/operations/helm/charts/mimir-distributed/ci/test-values.yaml b/operations/helm/charts/mimir-distributed/ci/test-oss-values.yaml similarity index 100% rename from operations/helm/charts/mimir-distributed/ci/test-values.yaml rename to operations/helm/charts/mimir-distributed/ci/test-oss-values.yaml