diff --git a/.github/workflows/test-build-deploy.yml b/.github/workflows/test-build-deploy.yml index fc76c437f0..a8993dea34 100644 --- a/.github/workflows/test-build-deploy.yml +++ b/.github/workflows/test-build-deploy.yml @@ -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 diff --git a/integration/e2emimir/services.go b/integration/e2emimir/services.go index 42be94c914..8631c506cb 100644 --- a/integration/e2emimir/services.go +++ b/integration/e2emimir/services.go @@ -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.