Skip to content
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

Print version+arch of Mimir loaded to Docker. #1793

Merged
merged 2 commits into from
Apr 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ jobs:
export IMAGE_TAG=$(make image-tag)
# skopeo will by default load system-specific version of the image (linux/amd64).
skopeo copy oci-archive:/tmp/images/mimir.oci "docker-daemon:grafana/mimir:$IMAGE_TAG"
# Print Mimir version and architecture loaded to Docker.
docker run "grafana/mimir:$IMAGE_TAG" --version
- name: Preload Images
# We download docker images used by integration tests so that all images are available
# locally and the download time doesn't account in the test execution time, which is subject
Expand Down
2 changes: 1 addition & 1 deletion integration/e2emimir/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func NewDistributor(name string, consulAddress string, flags map[string]string,
name,
map[string]string{
"-target": "distributor",
"-log.level": "warn",
"-log.level": "debug",
"-auth.multitenancy-enabled": "true",
"-ingester.ring.replication-factor": "1",
"-distributor.remote-timeout": "2s", // Fail fast in integration tests.
Expand Down