-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mimir-distributed: allow components to override their container image (…
…#10340) * mimir-distributed: allow components to override their container image Signed-off-by: Vladimir Varankin <[email protected]> * add test values Signed-off-by: Vladimir Varankin <[email protected]> * rebuild assets Signed-off-by: Vladimir Varankin <[email protected]> * update changelog Signed-off-by: Vladimir Varankin <[email protected]> * update code comments Signed-off-by: Vladimir Varankin <[email protected]> * add default values for component images Signed-off-by: Vladimir Varankin <[email protected]> * update changelog Signed-off-by: Vladimir Varankin <[email protected]> * rebuild assets Signed-off-by: Vladimir Varankin <[email protected]> * fix how build script removes default image from generated manifest Signed-off-by: Vladimir Varankin <[email protected]> * rebuild assets Signed-off-by: Vladimir Varankin <[email protected]> * update values comments Signed-off-by: Vladimir Varankin <[email protected]> --------- Signed-off-by: Vladimir Varankin <[email protected]>
- Loading branch information
Showing
138 changed files
with
7,221 additions
and
25 deletions.
There are no files selected for viewing
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
97 changes: 97 additions & 0 deletions
97
...ions/helm/charts/mimir-distributed/ci/offline/test-enterprise-component-image-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# General setup | ||
enterprise: | ||
enabled: true | ||
minio: | ||
enabled: false | ||
|
||
# Individual components under test | ||
admin_api: | ||
image: | ||
repository: test/admin-api | ||
tag: 1-admin-api | ||
|
||
alertmanager: | ||
image: | ||
repository: test/alertmanager | ||
tag: 1-alertmanager | ||
|
||
compactor: | ||
image: | ||
repository: test/compactor | ||
tag: 1-compactor | ||
|
||
continuous_test: | ||
image: | ||
repository: test/continuous_test | ||
tag: 1-continuous-test | ||
|
||
distributor: | ||
image: | ||
repository: test/distributor | ||
tag: 1-distributor | ||
|
||
federation_frontend: | ||
enabled: true | ||
image: | ||
repository: test/federation_frontend | ||
tag: 1-federation-frontend | ||
|
||
gateway: | ||
image: | ||
repository: test/gateway | ||
tag: 1-gateway | ||
|
||
ingester: | ||
image: | ||
repository: test/ingester | ||
tag: 1-ingester | ||
|
||
overrides_exporter: | ||
image: | ||
repository: test/overrides_exporter | ||
tag: 1-overrides-exporter | ||
|
||
querier: | ||
image: | ||
repository: test/querier | ||
tag: 1-querier | ||
|
||
query_frontend: | ||
image: | ||
repository: test/query_frontend | ||
tag: 1-query-frontend | ||
|
||
query_scheduler: | ||
image: | ||
repository: test/query_scheduler | ||
tag: 1-query-scheduler | ||
|
||
ruler: | ||
image: | ||
repository: test/ruler | ||
tag: 1-ruler | ||
|
||
ruler_querier: | ||
image: | ||
repository: test/ruler_querier | ||
tag: 1-ruler-querier | ||
|
||
ruler_query_frontend: | ||
image: | ||
repository: test/ruler_query_frontend | ||
tag: 1-ruler-query-frontend | ||
|
||
ruler_query_scheduler: | ||
image: | ||
repository: test/ruler_query_scheduler | ||
tag: 1-ruler-query-scheduler | ||
|
||
smoke_test: | ||
image: | ||
repository: test/smoke_test | ||
tag: 1-smoke-test | ||
|
||
store_gateway: | ||
image: | ||
repository: test/store_gateway | ||
tag: 1-store-gateway |
84 changes: 84 additions & 0 deletions
84
operations/helm/charts/mimir-distributed/ci/offline/test-oss-component-image-values.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# General setup | ||
minio: | ||
enabled: false | ||
|
||
# Individual components under test | ||
alertmanager: | ||
image: | ||
repository: test/alertmanager | ||
tag: 1-alertmanager | ||
|
||
compactor: | ||
image: | ||
repository: test/compactor | ||
tag: 1-compactor | ||
|
||
continuous_test: | ||
image: | ||
repository: test/continuous_test | ||
tag: 1-continuous-test | ||
|
||
distributor: | ||
image: | ||
repository: test/distributor | ||
tag: 1-distributor | ||
|
||
gateway: | ||
image: | ||
repository: test/gateway | ||
tag: 1-gateway | ||
|
||
ingester: | ||
image: | ||
repository: test/ingester | ||
tag: 1-ingester | ||
|
||
overrides_exporter: | ||
image: | ||
repository: test/overrides_exporter | ||
tag: 1-overrides-exporter | ||
|
||
querier: | ||
image: | ||
repository: test/querier | ||
tag: 1-querier | ||
|
||
query_frontend: | ||
image: | ||
repository: test/query_frontend | ||
tag: 1-query-frontend | ||
|
||
query_scheduler: | ||
image: | ||
repository: test/query_scheduler | ||
tag: 1-query-scheduler | ||
|
||
ruler: | ||
image: | ||
repository: test/ruler | ||
tag: 1-ruler | ||
|
||
ruler_querier: | ||
image: | ||
repository: test/ruler_querier | ||
tag: 1-ruler-querier | ||
|
||
ruler_query_frontend: | ||
image: | ||
repository: test/ruler_query_frontend | ||
tag: 1-ruler-query-frontend | ||
|
||
ruler_query_scheduler: | ||
image: | ||
repository: test/ruler_query_scheduler | ||
tag: 1-ruler-query-scheduler | ||
|
||
smoke_test: | ||
image: | ||
repository: test/smoke_test | ||
tag: 1-smoke-test | ||
|
||
store_gateway: | ||
image: | ||
repository: test/store_gateway | ||
tag: 1-store-gateway |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.