From 01cbeab1b8ddaef54761b1c0cf973fc5bfe06f31 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:49:35 +0200 Subject: [PATCH 1/7] [release-2.14] query-frontend: Do not break scheduler connection on malformed queries (#9833) * query-frontend: Do not break scheduler connection on malformed queries (#9786) * query-frontend: Do not break scheduler connection on malformed queries Signed-off-by: Ganesh Vernekar * Updated tests Signed-off-by: Ganesh Vernekar * lint Signed-off-by: Ganesh Vernekar --------- Signed-off-by: Ganesh Vernekar (cherry picked from commit 587d234f00f2922cfb31438513c9536e757221ed) * update changelog Signed-off-by: Vladimir Varankin --------- Signed-off-by: Vladimir Varankin Co-authored-by: Ganesh Vernekar Co-authored-by: Vladimir Varankin --- CHANGELOG.md | 6 ++ pkg/frontend/v2/frontend.go | 8 +++ pkg/frontend/v2/frontend_scheduler_worker.go | 4 +- pkg/frontend/v2/frontend_test.go | 60 +++++++++++++++++--- 4 files changed, 67 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1a698c75f8..d18f1c05455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.14.2 (unreleased) + +### Grafana Mimir + +* [BUGFIX] Query-frontend: Do not break scheduler connection on malformed queries. #9833 + ## 2.14.1 ### Grafana Mimir diff --git a/pkg/frontend/v2/frontend.go b/pkg/frontend/v2/frontend.go index 81ae91baf8a..1319107e727 100644 --- a/pkg/frontend/v2/frontend.go +++ b/pkg/frontend/v2/frontend.go @@ -142,6 +142,9 @@ const ( type enqueueResult struct { status enqueueStatus + // If the status is failed and if it was because of a client error on the frontend, + // the clientErr should be updated with the appropriate error. + clientErr error cancelCh chan<- uint64 // Channel that can be used for request cancellation. If nil, cancellation is not possible. } @@ -283,6 +286,11 @@ enqueueAgain: cancelCh = enqRes.cancelCh break // go wait for response. } else if enqRes.status == failed { + if enqRes.clientErr != nil { + // It failed because of a client error. No need to retry. + return nil, nil, httpgrpc.Errorf(http.StatusBadRequest, "failed to enqueue request: %s", enqRes.clientErr.Error()) + } + retries-- if retries > 0 { spanLogger.DebugLog("msg", "enqueuing request failed, will retry") diff --git a/pkg/frontend/v2/frontend_scheduler_worker.go b/pkg/frontend/v2/frontend_scheduler_worker.go index f90293b7c5c..597ada88674 100644 --- a/pkg/frontend/v2/frontend_scheduler_worker.go +++ b/pkg/frontend/v2/frontend_scheduler_worker.go @@ -412,8 +412,8 @@ func (w *frontendSchedulerWorker) enqueueRequest(loop schedulerpb.SchedulerForFr frontendToSchedulerRequest, err := w.toSchedulerAdapter.frontendToSchedulerEnqueueRequest(req, w.frontendAddr) if err != nil { level.Warn(spanLogger).Log("msg", "error converting frontend request to scheduler request", "err", err) - req.enqueue <- enqueueResult{status: failed} - return err + req.enqueue <- enqueueResult{status: failed, clientErr: err} + return nil } err = loop.Send(frontendToSchedulerRequest) diff --git a/pkg/frontend/v2/frontend_test.go b/pkg/frontend/v2/frontend_test.go index 83fe9f39c49..6b24b9567e8 100644 --- a/pkg/frontend/v2/frontend_test.go +++ b/pkg/frontend/v2/frontend_test.go @@ -242,17 +242,59 @@ func TestFrontendTooManyRequests(t *testing.T) { require.Equal(t, int32(http.StatusTooManyRequests), resp.Code) } -func TestFrontendEnqueueFailure(t *testing.T) { - f, _ := setupFrontend(t, nil, func(*Frontend, *schedulerpb.FrontendToScheduler) *schedulerpb.SchedulerToFrontend { - return &schedulerpb.SchedulerToFrontend{Status: schedulerpb.SHUTTING_DOWN} +func TestFrontendEnqueueFailures(t *testing.T) { + t.Run("scheduler is shutting down with valid query", func(t *testing.T) { + f, _ := setupFrontend(t, nil, func(*Frontend, *schedulerpb.FrontendToScheduler) *schedulerpb.SchedulerToFrontend { + return &schedulerpb.SchedulerToFrontend{Status: schedulerpb.SHUTTING_DOWN} + }) + + req := &httpgrpc.HTTPRequest{ + Url: "/api/v1/query_range?start=946684800&end=946771200&step=60&query=up", + } + _, _, err := f.RoundTripGRPC(user.InjectOrgID(context.Background(), "test"), req) + require.Error(t, err) + require.True(t, strings.Contains(err.Error(), "failed to enqueue request")) }) + t.Run("scheduler is running fine", func(t *testing.T) { + f, _ := setupFrontend(t, nil, func(*Frontend, *schedulerpb.FrontendToScheduler) *schedulerpb.SchedulerToFrontend { + return &schedulerpb.SchedulerToFrontend{Status: schedulerpb.OK} + }) - req := &httpgrpc.HTTPRequest{ - Url: "/api/v1/query_range?start=946684800&end=946771200&step=60", - } - _, _, err := f.RoundTripGRPC(user.InjectOrgID(context.Background(), "test"), req) - require.Error(t, err) - require.True(t, strings.Contains(err.Error(), "failed to enqueue request")) + cases := []struct { + name, url, error string + }{ + { + name: "start time is wrong", + url: "/api/v1/query_range?start=9466camnsd84800&end=946771200&step=60&query=up{}", + error: `rpc error: code = Code(400) desc = failed to enqueue request: invalid parameter "start": cannot parse "9466camnsd84800" to a valid timestamp`, + }, + { + name: "end time is wrong", + url: "/api/v1/query_range?start=946684800&end=946771200dgiu&step=60&query=up{}", + error: `rpc error: code = Code(400) desc = failed to enqueue request: invalid parameter "end": cannot parse "946771200dgiu" to a valid timestamp`, + }, + { + name: "query time is wrong", + url: "/api/v1/query_range?start=946684800&end=946771200&step=60&query=up{", + error: `rpc error: code = Code(400) desc = failed to enqueue request: invalid parameter "query": 1:4: parse error: unexpected end of input inside braces`, + }, + { + name: "no query provided", + url: "/api/v1/query_range?start=946684800&end=946771200&step=60", + error: `rpc error: code = Code(400) desc = failed to enqueue request: invalid parameter "query": unknown position: parse error: no expression found in input`, + }, + } + for _, c := range cases { + t.Run(c.name, func(t *testing.T) { + req := &httpgrpc.HTTPRequest{ + Url: c.url, + } + _, _, err := f.RoundTripGRPC(user.InjectOrgID(context.Background(), "test"), req) + require.Error(t, err) + require.Equal(t, c.error, err.Error()) + }) + } + }) } func TestFrontendCancellation(t *testing.T) { From b9fa5978b0fd7ff087ba826f4deaca26d9b15cff Mon Sep 17 00:00:00 2001 From: Vladimir Varankin Date: Wed, 13 Nov 2024 09:36:13 +0100 Subject: [PATCH 2/7] vendor: cherry-pick prometheus/prometheus#15242 (#9889) Signed-off-by: Vladimir Varankin --- go.mod | 2 +- go.sum | 4 ++-- .../prometheus/tsdb/index/postings.go | 23 +++++++++++++++++++ vendor/modules.txt | 4 ++-- 4 files changed, 28 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 1fb24ed3505..0dfc65bda87 100644 --- a/go.mod +++ b/go.mod @@ -279,7 +279,7 @@ require ( ) // Using a fork of Prometheus with Mimir-specific changes. -replace github.com/prometheus/prometheus => github.com/grafana/mimir-prometheus v0.0.0-20241009132338-f7ed04967d38 +replace github.com/prometheus/prometheus => github.com/grafana/mimir-prometheus v0.0.0-20241113080331-8bca08eae66d // client_golang v1.20.3 has some data races in histogram exemplars. // Stick to v1.19.1 until they are fixed. diff --git a/go.sum b/go.sum index c5a8cf125ea..23e70b8eaaf 100644 --- a/go.sum +++ b/go.sum @@ -1265,8 +1265,8 @@ github.com/grafana/gomemcache v0.0.0-20240229205252-cd6a66d6fb56 h1:X8IKQ0wu40wp github.com/grafana/gomemcache v0.0.0-20240229205252-cd6a66d6fb56/go.mod h1:PGk3RjYHpxMM8HFPhKKo+vve3DdlPUELZLSDEFehPuU= github.com/grafana/memberlist v0.3.1-0.20220714140823-09ffed8adbbe h1:yIXAAbLswn7VNWBIvM71O2QsgfgW9fRXZNR0DXe6pDU= github.com/grafana/memberlist v0.3.1-0.20220714140823-09ffed8adbbe/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/grafana/mimir-prometheus v0.0.0-20241009132338-f7ed04967d38 h1:XeyYMfE7MFnrUd5J+evBFAA05L8jenFKhd23Ecef/cU= -github.com/grafana/mimir-prometheus v0.0.0-20241009132338-f7ed04967d38/go.mod h1:oyDm7JaLUh+QGuGkC7iXC8IyTUq5rlh1ba2CRm9DlVg= +github.com/grafana/mimir-prometheus v0.0.0-20241113080331-8bca08eae66d h1:YqzMvY3suPR01Y4G7NomfEf7VOTJq8dVGBHCMoES4k4= +github.com/grafana/mimir-prometheus v0.0.0-20241113080331-8bca08eae66d/go.mod h1:oyDm7JaLUh+QGuGkC7iXC8IyTUq5rlh1ba2CRm9DlVg= github.com/grafana/opentracing-contrib-go-stdlib v0.0.0-20230509071955-f410e79da956 h1:em1oddjXL8c1tL0iFdtVtPloq2hRPen2MJQKoAWpxu0= github.com/grafana/opentracing-contrib-go-stdlib v0.0.0-20230509071955-f410e79da956/go.mod h1:qtI1ogk+2JhVPIXVc6q+NHziSmy2W5GbdQZFUHADCBU= github.com/grafana/prometheus-alertmanager v0.25.1-0.20240906122908-60521fae6a42 h1:01cldIKyxTrraTYroDWNBItBWWs9Bh07I4rSOakLilo= diff --git a/vendor/github.com/prometheus/prometheus/tsdb/index/postings.go b/vendor/github.com/prometheus/prometheus/tsdb/index/postings.go index 1b36b0b153f..a8fdb98bc0d 100644 --- a/vendor/github.com/prometheus/prometheus/tsdb/index/postings.go +++ b/vendor/github.com/prometheus/prometheus/tsdb/index/postings.go @@ -24,6 +24,7 @@ import ( "sort" "strings" "sync" + "time" "github.com/bboreham/go-loser" @@ -312,8 +313,30 @@ func (p *MemPostings) Delete(deleted map[storage.SeriesRef]struct{}, affected ma } } + i := 0 for l := range affected { + i++ process(l) + + // From time to time we want some readers to go through and read their postings. + // It takes around 50ms to process a 1K series batch, and 120ms to process a 10K series batch (local benchmarks on an M3). + // Note that a read query will most likely want to read multiple postings lists, say 5, 10 or 20 (depending on the number of matchers) + // And that read query will most likely evaluate only one of those matchers before we unpause here, so we want to pause often. + if i%512 == 0 { + p.mtx.Unlock() + // While it's tempting to just do a `time.Sleep(time.Millisecond)` here, + // it wouldn't ensure use that readers actually were able to get the read lock, + // because if there are writes waiting on same mutex, readers won't be able to get it. + // So we just grab one RLock ourselves. + p.mtx.RLock() + // We shouldn't wait here, because we would be blocking a potential write for no reason. + // Note that if there's a writer waiting for us to unlock, no reader will be able to get the read lock. + p.mtx.RUnlock() //nolint:staticcheck // SA2001: this is an intentionally empty critical section. + // Now we can wait a little bit just to increase the chance of a reader getting the lock. + // If we were deleting 100M series here, pausing every 512 with 1ms sleeps would be an extra of 200s, which is negligible. + time.Sleep(time.Millisecond) + p.mtx.Lock() + } } process(allPostingsKey) } diff --git a/vendor/modules.txt b/vendor/modules.txt index a25b4bf8ab3..1104952b8cb 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1001,7 +1001,7 @@ github.com/prometheus/exporter-toolkit/web github.com/prometheus/procfs github.com/prometheus/procfs/internal/fs github.com/prometheus/procfs/internal/util -# github.com/prometheus/prometheus v1.99.0 => github.com/grafana/mimir-prometheus v0.0.0-20241009132338-f7ed04967d38 +# github.com/prometheus/prometheus v1.99.0 => github.com/grafana/mimir-prometheus v0.0.0-20241113080331-8bca08eae66d ## explicit; go 1.22.0 github.com/prometheus/prometheus/config github.com/prometheus/prometheus/discovery @@ -1653,7 +1653,7 @@ sigs.k8s.io/kustomize/kyaml/yaml/walk sigs.k8s.io/yaml sigs.k8s.io/yaml/goyaml.v2 sigs.k8s.io/yaml/goyaml.v3 -# github.com/prometheus/prometheus => github.com/grafana/mimir-prometheus v0.0.0-20241009132338-f7ed04967d38 +# github.com/prometheus/prometheus => github.com/grafana/mimir-prometheus v0.0.0-20241113080331-8bca08eae66d # github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.19.1 # github.com/hashicorp/memberlist => github.com/grafana/memberlist v0.3.1-0.20220714140823-09ffed8adbbe # gopkg.in/yaml.v3 => github.com/colega/go-yaml-yaml v0.0.0-20220720105220-255a8d16d094 From 2db2c4d9de8565c52fcef3050b95b8a2808b407e Mon Sep 17 00:00:00 2001 From: Vladimir Varankin Date: Wed, 13 Nov 2024 12:45:10 +0100 Subject: [PATCH 3/7] [release-2.14] Prepare 2.14.2 patch release (#9890) * prepare release 2.14.2 Signed-off-by: Vladimir Varankin * rebuild assets Signed-off-by: Vladimir Varankin --------- Signed-off-by: Vladimir Varankin --- CHANGELOG.md | 2 +- RELEASE.md | 2 +- VERSION | 2 +- operations/mimir-rules-action/Dockerfile | 2 +- .../test-all-components-generated.yaml | 18 ++++----- ...onents-with-custom-max-skew-generated.yaml | 18 ++++----- ...-with-custom-runtime-config-generated.yaml | 18 ++++----- ...-tsdb-head-early-compaction-generated.yaml | 18 ++++----- ...nts-without-chunk-streaming-generated.yaml | 18 ++++----- .../test-automated-downscale-generated.yaml | 26 ++++++------ ...test-automated-downscale-v2-generated.yaml | 26 ++++++------ ...g-custom-target-utilization-generated.yaml | 24 +++++------ .../test-autoscaling-generated.yaml | 24 +++++------ ...ompactor-concurrent-rollout-generated.yaml | 14 +++---- ...out-max-unavailable-percent-generated.yaml | 14 +++---- .../mimir-tests/test-consul-generated.yaml | 18 ++++----- .../test-consul-multi-zone-generated.yaml | 26 ++++++------ .../test-consul-ruler-disabled-generated.yaml | 16 ++++---- .../test-continuous-test-generated.yaml | 16 ++++---- .../mimir-tests/test-defaults-generated.yaml | 14 +++---- ...t-deployment-mode-migration-generated.yaml | 40 +++++++++---------- .../mimir-tests/test-env-vars-generated.yaml | 18 ++++----- .../test-etcd-replicas-generated.yaml | 14 +++---- .../test-extra-runtime-config-generated.yaml | 18 ++++----- .../test-helm-parity-generated.yaml | 20 +++++----- ...st-storage-migration-step-0-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-1-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-10-generated.yaml | 30 +++++++------- ...t-storage-migration-step-11-generated.yaml | 30 +++++++------- ...st-storage-migration-step-2-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-3-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-4-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-5a-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-5b-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-6-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-7-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-8-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-9-generated.yaml | 30 +++++++------- ...torage-migration-step-final-generated.yaml | 32 +++++++-------- ...bel-migration-step-0-before-generated.yaml | 18 ++++----- ...ster-label-migration-step-1-generated.yaml | 18 ++++----- ...ster-label-migration-step-2-generated.yaml | 18 ++++----- ...ster-label-migration-step-3-generated.yaml | 18 ++++----- ...ist-migration-step-0-before-generated.yaml | 18 ++++----- ...memberlist-migration-step-1-generated.yaml | 18 ++++----- ...memberlist-migration-step-2-generated.yaml | 18 ++++----- ...memberlist-migration-step-3-generated.yaml | 18 ++++----- ...memberlist-migration-step-4-generated.yaml | 18 ++++----- ...memberlist-migration-step-5-generated.yaml | 18 ++++----- ...list-migration-step-6-final-generated.yaml | 18 ++++----- .../test-memcached-mtls-generated.yaml | 18 ++++----- .../test-multi-zone-generated.yaml | 26 ++++++------ ...zone-with-ongoing-migration-generated.yaml | 30 +++++++------- ...teway-automated-downscaling-generated.yaml | 26 ++++++------ ...-new-resource-scaled-object-generated.yaml | 14 +++---- ...-node-selector-and-affinity-generated.yaml | 14 +++---- .../test-pvc-auto-deletion-generated.yaml | 22 +++++----- ...query-scheduler-consul-ring-generated.yaml | 18 ++++----- ...and-ruler-remote-evaluation-generated.yaml | 24 +++++------ ...y-scheduler-memberlist-ring-generated.yaml | 18 ++++----- ...ist-ring-read-path-disabled-generated.yaml | 18 ++++----- .../test-query-sharding-generated.yaml | 18 ++++----- ...ployment-mode-s3-autoscaled-generated.yaml | 14 +++---- ...ent-mode-s3-caches-disabled-generated.yaml | 14 +++---- ...ad-write-deployment-mode-s3-generated.yaml | 14 +++---- ...est-ruler-remote-evaluation-generated.yaml | 24 +++++------ ...remote-evaluation-migration-generated.yaml | 24 +++++------ .../test-shuffle-sharding-generated.yaml | 18 ++++----- ...sharding-partitions-enabled-generated.yaml | 18 ++++----- ...sharding-read-path-disabled-generated.yaml | 18 ++++----- .../test-storage-azure-generated.yaml | 18 ++++----- .../test-storage-gcs-generated.yaml | 18 ++++----- .../test-storage-gcs-redis-generated.yaml | 18 ++++----- .../test-storage-s3-generated.yaml | 18 ++++----- ...est-without-query-scheduler-generated.yaml | 12 +++--- operations/mimir/images.libsonnet | 6 +-- 76 files changed, 791 insertions(+), 791 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d18f1c05455..196b6c4652c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 2.14.2 (unreleased) +## 2.14.2 ### Grafana Mimir diff --git a/RELEASE.md b/RELEASE.md index a704b7e5e20..b33de01c6e7 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -23,7 +23,7 @@ The following table contains past releases and tentative dates for upcoming rele | 2.11.0 | 2023-12-06 | Justin Lei | | 2.12.0 | 2024-03-11 | Yuri Nikolic | | 2.13.0 | 2024-06-17 | Dimitar Dimitrov | -| 2.14.0 | 2024-09-09 | _To be announced_ | +| 2.14.0 | 2024-10-07 | Vladimir Varankin | | 2.15.0 | 2024-12-09 | _To be announced_ | | 2.16.0 | 2025-03-10 | _To be announced_ | diff --git a/VERSION b/VERSION index b70ae75a88d..7243b12cf41 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.14.1 +2.14.2 diff --git a/operations/mimir-rules-action/Dockerfile b/operations/mimir-rules-action/Dockerfile index 45a448eeecc..b568e866cd3 100644 --- a/operations/mimir-rules-action/Dockerfile +++ b/operations/mimir-rules-action/Dockerfile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-only -FROM grafana/mimirtool:2.14.1 +FROM grafana/mimirtool:2.14.2 COPY entrypoint.sh /entrypoint.sh diff --git a/operations/mimir-tests/test-all-components-generated.yaml b/operations/mimir-tests/test-all-components-generated.yaml index 662df008260..565141363b1 100644 --- a/operations/mimir-tests/test-all-components-generated.yaml +++ b/operations/mimir-tests/test-all-components-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml b/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml index 2c5e5ad07da..06ab00638be 100644 --- a/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml b/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml index 52de0ae39cb..ae74132841e 100644 --- a/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml @@ -543,7 +543,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -640,7 +640,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -721,7 +721,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -793,7 +793,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -886,7 +886,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -964,7 +964,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1063,7 +1063,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1174,7 +1174,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1515,7 +1515,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml b/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml index 92fa9d95a83..97121b166e8 100644 --- a/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1167,7 +1167,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1508,7 +1508,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml b/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml index 6dfec93dc70..bdffc8c127b 100644 --- a/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml +++ b/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -632,7 +632,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -713,7 +713,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -785,7 +785,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -878,7 +878,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -956,7 +956,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1055,7 +1055,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1166,7 +1166,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1507,7 +1507,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-automated-downscale-generated.yaml b/operations/mimir-tests/test-automated-downscale-generated.yaml index 02bc82ac1a0..31fe4669b37 100644 --- a/operations/mimir-tests/test-automated-downscale-generated.yaml +++ b/operations/mimir-tests/test-automated-downscale-generated.yaml @@ -711,7 +711,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -810,7 +810,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -891,7 +891,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -963,7 +963,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1102,7 +1102,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1180,7 +1180,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1279,7 +1279,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1407,7 +1407,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1535,7 +1535,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1663,7 +1663,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2022,7 +2022,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2165,7 +2165,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2308,7 +2308,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-automated-downscale-v2-generated.yaml b/operations/mimir-tests/test-automated-downscale-v2-generated.yaml index 35d913798a2..1986c1aa10e 100644 --- a/operations/mimir-tests/test-automated-downscale-v2-generated.yaml +++ b/operations/mimir-tests/test-automated-downscale-v2-generated.yaml @@ -770,7 +770,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -869,7 +869,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -950,7 +950,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1022,7 +1022,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1161,7 +1161,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1239,7 +1239,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1338,7 +1338,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1470,7 +1470,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1603,7 +1603,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1736,7 +1736,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2095,7 +2095,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2238,7 +2238,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2381,7 +2381,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml b/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml index 13053a106e8..97ec0d7bf4a 100644 --- a/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml +++ b/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml @@ -650,7 +650,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -746,7 +746,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -826,7 +826,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -898,7 +898,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -992,7 +992,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1085,7 +1085,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1168,7 +1168,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1240,7 +1240,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1309,7 +1309,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1408,7 +1408,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1519,7 +1519,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1860,7 +1860,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-autoscaling-generated.yaml b/operations/mimir-tests/test-autoscaling-generated.yaml index eb43519a2cf..bcc6a57db7f 100644 --- a/operations/mimir-tests/test-autoscaling-generated.yaml +++ b/operations/mimir-tests/test-autoscaling-generated.yaml @@ -650,7 +650,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -746,7 +746,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -826,7 +826,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -898,7 +898,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -992,7 +992,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1085,7 +1085,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1168,7 +1168,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1240,7 +1240,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1309,7 +1309,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1408,7 +1408,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1519,7 +1519,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1860,7 +1860,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml b/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml index e33a4b02159..9bde74b5f8e 100644 --- a/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml +++ b/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml @@ -533,7 +533,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -630,7 +630,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -711,7 +711,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -783,7 +783,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -912,7 +912,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1023,7 +1023,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1364,7 +1364,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml b/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml index bbfe1ccee11..f161f87200f 100644 --- a/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml +++ b/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml @@ -533,7 +533,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -630,7 +630,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -711,7 +711,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -783,7 +783,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -912,7 +912,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1023,7 +1023,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1364,7 +1364,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-generated.yaml b/operations/mimir-tests/test-consul-generated.yaml index d492c5c64e8..5fcd25d717d 100644 --- a/operations/mimir-tests/test-consul-generated.yaml +++ b/operations/mimir-tests/test-consul-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1016,7 +1016,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1260,7 +1260,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1336,7 +1336,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1431,7 +1431,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1538,7 +1538,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1875,7 +1875,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-multi-zone-generated.yaml b/operations/mimir-tests/test-consul-multi-zone-generated.yaml index 25cdc0dd43b..755bd00e421 100644 --- a/operations/mimir-tests/test-consul-multi-zone-generated.yaml +++ b/operations/mimir-tests/test-consul-multi-zone-generated.yaml @@ -1087,7 +1087,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1183,7 +1183,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1262,7 +1262,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1334,7 +1334,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1473,7 +1473,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1549,7 +1549,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1644,7 +1644,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1764,7 +1764,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1884,7 +1884,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2004,7 +2004,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2354,7 +2354,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2488,7 +2488,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2622,7 +2622,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml b/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml index e4dd38ffea8..5d339fa1bb0 100644 --- a/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml +++ b/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml @@ -891,7 +891,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -985,7 +985,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1064,7 +1064,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1136,7 +1136,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1204,7 +1204,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1299,7 +1299,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1406,7 +1406,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1743,7 +1743,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-continuous-test-generated.yaml b/operations/mimir-tests/test-continuous-test-generated.yaml index 417994174de..c23db912d70 100644 --- a/operations/mimir-tests/test-continuous-test-generated.yaml +++ b/operations/mimir-tests/test-continuous-test-generated.yaml @@ -451,7 +451,7 @@ spec: - -tests.write-endpoint=http://distributor.default.svc.cluster.local - -tests.write-read-series-test.max-query-age=48h - -tests.write-read-series-test.num-series=1000 - image: grafana/mimir-continuous-test:2.14.1 + image: grafana/mimir-continuous-test:2.14.2 imagePullPolicy: IfNotPresent name: continuous-test ports: @@ -522,7 +522,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -619,7 +619,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -700,7 +700,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -772,7 +772,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -852,7 +852,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -963,7 +963,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1304,7 +1304,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-defaults-generated.yaml b/operations/mimir-tests/test-defaults-generated.yaml index f87e9f25b29..038a975ab80 100644 --- a/operations/mimir-tests/test-defaults-generated.yaml +++ b/operations/mimir-tests/test-defaults-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-deployment-mode-migration-generated.yaml b/operations/mimir-tests/test-deployment-mode-migration-generated.yaml index 195887e8d3d..b4f1d3388b1 100644 --- a/operations/mimir-tests/test-deployment-mode-migration-generated.yaml +++ b/operations/mimir-tests/test-deployment-mode-migration-generated.yaml @@ -983,7 +983,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -1196,7 +1196,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1282,7 +1282,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1362,7 +1362,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1503,7 +1503,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1581,7 +1581,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1680,7 +1680,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1804,7 +1804,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1928,7 +1928,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2052,7 +2052,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2460,7 +2460,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2652,7 +2652,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2844,7 +2844,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2981,7 +2981,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3118,7 +3118,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3255,7 +3255,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3393,7 +3393,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3531,7 +3531,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3669,7 +3669,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-env-vars-generated.yaml b/operations/mimir-tests/test-env-vars-generated.yaml index 11d285405f5..b9741483f87 100644 --- a/operations/mimir-tests/test-env-vars-generated.yaml +++ b/operations/mimir-tests/test-env-vars-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1169,7 +1169,7 @@ spec: value: 1Gi - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1512,7 +1512,7 @@ spec: value: 2Gi - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-etcd-replicas-generated.yaml b/operations/mimir-tests/test-etcd-replicas-generated.yaml index 361bdc0cb29..cfbf159ba93 100644 --- a/operations/mimir-tests/test-etcd-replicas-generated.yaml +++ b/operations/mimir-tests/test-etcd-replicas-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-extra-runtime-config-generated.yaml b/operations/mimir-tests/test-extra-runtime-config-generated.yaml index 72af01f70e1..bf4b94a5784 100644 --- a/operations/mimir-tests/test-extra-runtime-config-generated.yaml +++ b/operations/mimir-tests/test-extra-runtime-config-generated.yaml @@ -542,7 +542,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -644,7 +644,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -730,7 +730,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -807,7 +807,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -905,7 +905,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -988,7 +988,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1092,7 +1092,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1208,7 +1208,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1554,7 +1554,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-helm-parity-generated.yaml b/operations/mimir-tests/test-helm-parity-generated.yaml index 260c4035560..74d05143fc1 100644 --- a/operations/mimir-tests/test-helm-parity-generated.yaml +++ b/operations/mimir-tests/test-helm-parity-generated.yaml @@ -574,7 +574,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -648,7 +648,7 @@ spec: - -runtime-config.file=/etc/mimir/overrides.yaml - -server.http-listen-port=8080 - -target=overrides-exporter - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: overrides-exporter ports: @@ -730,7 +730,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -814,7 +814,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -886,7 +886,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -978,7 +978,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1057,7 +1057,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1161,7 +1161,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1272,7 +1272,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1613,7 +1613,7 @@ spec: value: "536870912" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml index 0518f9f7dc2..417ecb7559d 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml @@ -829,7 +829,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -930,7 +930,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1012,7 +1012,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1085,7 +1085,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1229,7 +1229,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1327,7 +1327,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1412,7 +1412,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1485,7 +1485,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1555,7 +1555,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1654,7 +1654,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1791,7 +1791,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1922,7 +1922,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2053,7 +2053,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2410,7 +2410,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2553,7 +2553,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2694,7 +2694,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml index 36348e99d8e..4fba967e84e 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml @@ -899,7 +899,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1001,7 +1001,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1083,7 +1083,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1156,7 +1156,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1301,7 +1301,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1400,7 +1400,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1485,7 +1485,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1558,7 +1558,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1628,7 +1628,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1727,7 +1727,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1865,7 +1865,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2011,7 +2011,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2143,7 +2143,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2283,7 +2283,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2415,7 +2415,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2555,7 +2555,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2912,7 +2912,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3055,7 +3055,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3196,7 +3196,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml index f5c8976586b..2f9443eee06 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml @@ -872,7 +872,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -979,7 +979,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1067,7 +1067,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1144,7 +1144,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1294,7 +1294,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1398,7 +1398,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1489,7 +1489,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1566,7 +1566,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1640,7 +1640,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1743,7 +1743,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1889,7 +1889,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2029,7 +2029,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2390,7 +2390,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2537,7 +2537,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2682,7 +2682,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml index de9bb7c82d9..4edf1a826f4 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml @@ -872,7 +872,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -979,7 +979,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1067,7 +1067,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1144,7 +1144,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1294,7 +1294,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1398,7 +1398,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1489,7 +1489,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1566,7 +1566,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1640,7 +1640,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1743,7 +1743,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1893,7 +1893,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2033,7 +2033,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2394,7 +2394,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2541,7 +2541,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2686,7 +2686,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml index 154cea9dfee..7d1c3b14399 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml @@ -906,7 +906,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1008,7 +1008,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1163,7 +1163,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1314,7 +1314,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1413,7 +1413,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1498,7 +1498,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1571,7 +1571,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1641,7 +1641,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1740,7 +1740,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1878,7 +1878,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2024,7 +2024,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2156,7 +2156,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2296,7 +2296,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2428,7 +2428,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2568,7 +2568,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2925,7 +2925,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3068,7 +3068,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3209,7 +3209,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml index 156d980d9d2..f5f3a8331a9 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml @@ -906,7 +906,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1013,7 +1013,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1101,7 +1101,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1174,7 +1174,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1325,7 +1325,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1429,7 +1429,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1520,7 +1520,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1593,7 +1593,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1663,7 +1663,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1762,7 +1762,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1900,7 +1900,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2046,7 +2046,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2178,7 +2178,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2318,7 +2318,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2450,7 +2450,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2590,7 +2590,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2947,7 +2947,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3090,7 +3090,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3231,7 +3231,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml index 95a97a3001b..c6317013d8c 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml index 776d136193a..f750c077e81 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml index 971357822a2..ded253cefad 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml index bfbf6f6c0a7..89cc3c3b008 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1104,7 +1104,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1254,7 +1254,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1358,7 +1358,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1449,7 +1449,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1522,7 +1522,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1592,7 +1592,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1691,7 +1691,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1837,7 +1837,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1977,7 +1977,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2117,7 +2117,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2474,7 +2474,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2617,7 +2617,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2758,7 +2758,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml index 182068ca6a5..3f2d0429de6 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1108,7 +1108,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1258,7 +1258,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1362,7 +1362,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1453,7 +1453,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1530,7 +1530,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1604,7 +1604,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1707,7 +1707,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1853,7 +1853,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1993,7 +1993,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2133,7 +2133,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2494,7 +2494,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2641,7 +2641,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2786,7 +2786,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml index 8c7efe8578e..9956cff4bc8 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1108,7 +1108,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1258,7 +1258,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1362,7 +1362,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1453,7 +1453,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1530,7 +1530,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1604,7 +1604,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1707,7 +1707,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1853,7 +1853,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1993,7 +1993,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2133,7 +2133,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2494,7 +2494,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2641,7 +2641,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2786,7 +2786,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml index e4e288d612b..69d8dfbffd5 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml @@ -813,7 +813,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -920,7 +920,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1008,7 +1008,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1085,7 +1085,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1235,7 +1235,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1339,7 +1339,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1430,7 +1430,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1581,7 +1581,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1684,7 +1684,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1830,7 +1830,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1970,7 +1970,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2331,7 +2331,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2478,7 +2478,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2623,7 +2623,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml index 1dddaf1cdc5..7d12a35967b 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml @@ -895,7 +895,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1002,7 +1002,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1317,7 +1317,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1421,7 +1421,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1512,7 +1512,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1589,7 +1589,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1663,7 +1663,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1766,7 +1766,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1916,7 +1916,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2056,7 +2056,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2196,7 +2196,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2557,7 +2557,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2704,7 +2704,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2849,7 +2849,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml index 662df008260..565141363b1 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml index dccddc958b0..66b763bb685 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -959,7 +959,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1171,7 +1171,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1513,7 +1513,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml index 85c6f624c6a..a0ba60194c3 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml @@ -536,7 +536,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -635,7 +635,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -788,7 +788,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -883,7 +883,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -963,7 +963,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1064,7 +1064,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1177,7 +1177,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1520,7 +1520,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml index b6325b15aef..0a0c6fe7f7f 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -959,7 +959,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1171,7 +1171,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1513,7 +1513,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml index d492c5c64e8..5fcd25d717d 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1016,7 +1016,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1260,7 +1260,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1336,7 +1336,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1431,7 +1431,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1538,7 +1538,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1875,7 +1875,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml index d31611eb77c..a322a286057 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml index bb974ec91e1..57c2356d781 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml index 74810bcc6ed..a0b3406833b 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml index 3b92a7b0578..77426075376 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml index 44f320b266e..d546734735f 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml @@ -537,7 +537,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -715,7 +715,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -787,7 +787,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -958,7 +958,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1057,7 +1057,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1168,7 +1168,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1509,7 +1509,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml index 662df008260..565141363b1 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memcached-mtls-generated.yaml b/operations/mimir-tests/test-memcached-mtls-generated.yaml index 4119380906c..1b3f223aca9 100644 --- a/operations/mimir-tests/test-memcached-mtls-generated.yaml +++ b/operations/mimir-tests/test-memcached-mtls-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -637,7 +637,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -742,7 +742,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -832,7 +832,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -937,7 +937,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1015,7 +1015,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1114,7 +1114,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1225,7 +1225,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1676,7 +1676,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-generated.yaml b/operations/mimir-tests/test-multi-zone-generated.yaml index 1adb71b1f8f..a4879d73ebb 100644 --- a/operations/mimir-tests/test-multi-zone-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-generated.yaml @@ -711,7 +711,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -810,7 +810,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -891,7 +891,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -963,7 +963,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1102,7 +1102,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1180,7 +1180,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1279,7 +1279,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1411,7 +1411,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1537,7 +1537,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1663,7 +1663,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2019,7 +2019,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2161,7 +2161,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2301,7 +2301,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml b/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml index db636b9a0b0..39923d5db3d 100644 --- a/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml @@ -779,7 +779,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -878,7 +878,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -959,7 +959,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1031,7 +1031,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1170,7 +1170,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1248,7 +1248,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1347,7 +1347,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1458,7 +1458,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1582,7 +1582,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1706,7 +1706,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1830,7 +1830,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2171,7 +2171,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2309,7 +2309,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2447,7 +2447,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2585,7 +2585,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml b/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml index 454c2325b8b..5a5b1d15572 100644 --- a/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml @@ -788,7 +788,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -887,7 +887,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -968,7 +968,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1040,7 +1040,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1180,7 +1180,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1258,7 +1258,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1357,7 +1357,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1489,7 +1489,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1615,7 +1615,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1741,7 +1741,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2102,7 +2102,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2249,7 +2249,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2394,7 +2394,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml b/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml index a14c11de676..bc69d2e2fc9 100644 --- a/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml +++ b/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml b/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml index b8dfe52d8f3..3db8b2ff070 100644 --- a/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml +++ b/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml @@ -482,7 +482,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -595,7 +595,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -692,7 +692,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -779,7 +779,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -875,7 +875,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1001,7 +1001,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1365,7 +1365,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml b/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml index 8efbdcf40d5..674e5aab594 100644 --- a/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml +++ b/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml @@ -645,7 +645,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -744,7 +744,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -825,7 +825,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -897,7 +897,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1023,7 +1023,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1149,7 +1149,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1275,7 +1275,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1401,7 +1401,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1757,7 +1757,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -1897,7 +1897,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2037,7 +2037,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml b/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml index 53a1c4fec0e..c7f418dc91e 100644 --- a/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1019,7 +1019,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -1101,7 +1101,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1177,7 +1177,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1270,7 +1270,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1346,7 +1346,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1441,7 +1441,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1548,7 +1548,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1885,7 +1885,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml index 18425c0e9f1..96d1a6bcc79 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml @@ -669,7 +669,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -769,7 +769,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -855,7 +855,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -935,7 +935,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1033,7 +1033,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1130,7 +1130,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1219,7 +1219,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1299,7 +1299,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1372,7 +1372,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1472,7 +1472,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1584,7 +1584,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1926,7 +1926,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml index 604ceeb3c45..5ebf5656f6a 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml @@ -543,7 +543,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -643,7 +643,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -729,7 +729,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -809,7 +809,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -905,7 +905,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -984,7 +984,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1084,7 +1084,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1196,7 +1196,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1538,7 +1538,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml index 08f4b81a9b3..378c515e8e3 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml @@ -540,7 +540,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -638,7 +638,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -719,7 +719,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -797,7 +797,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -893,7 +893,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -972,7 +972,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1072,7 +1072,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1184,7 +1184,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1526,7 +1526,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-sharding-generated.yaml b/operations/mimir-tests/test-query-sharding-generated.yaml index 60947ba1b96..122b6027f54 100644 --- a/operations/mimir-tests/test-query-sharding-generated.yaml +++ b/operations/mimir-tests/test-query-sharding-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -717,7 +717,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -882,7 +882,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -960,7 +960,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1170,7 +1170,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1511,7 +1511,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml index 26fe2b7385b..13797aad5a2 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml @@ -557,7 +557,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -999,7 +999,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1192,7 +1192,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1385,7 +1385,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1523,7 +1523,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1661,7 +1661,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1799,7 +1799,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml index a89c026f8bd..7470b23d5c6 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml @@ -420,7 +420,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -622,7 +622,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -791,7 +791,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -960,7 +960,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1098,7 +1098,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1236,7 +1236,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1374,7 +1374,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml index 2d717bad553..e2a6ece4f1e 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml @@ -558,7 +558,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -1000,7 +1000,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1193,7 +1193,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1386,7 +1386,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1524,7 +1524,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1662,7 +1662,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1800,7 +1800,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml b/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml index 0ad7990f75f..02be4dfa625 100644 --- a/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml +++ b/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml @@ -651,7 +651,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -748,7 +748,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -829,7 +829,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -901,7 +901,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -996,7 +996,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1174,7 +1174,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1246,7 +1246,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1316,7 +1316,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1415,7 +1415,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1526,7 +1526,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1867,7 +1867,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml b/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml index 14a114090f5..de48dbb8a1b 100644 --- a/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml +++ b/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml @@ -651,7 +651,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -748,7 +748,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -829,7 +829,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -901,7 +901,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -994,7 +994,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1088,7 +1088,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1172,7 +1172,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1244,7 +1244,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1314,7 +1314,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1413,7 +1413,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1524,7 +1524,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1865,7 +1865,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-generated.yaml index 799d05f5fcc..6bcd4dfcb16 100644 --- a/operations/mimir-tests/test-shuffle-sharding-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -885,7 +885,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -963,7 +963,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1062,7 +1062,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1174,7 +1174,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1516,7 +1516,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml index 0c2ae96caeb..6df3414a3e4 100644 --- a/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml @@ -536,7 +536,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -636,7 +636,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -718,7 +718,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -791,7 +791,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -888,7 +888,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -966,7 +966,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1065,7 +1065,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1178,7 +1178,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1520,7 +1520,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml index bb781895014..b06c42fd7e4 100644 --- a/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -886,7 +886,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -964,7 +964,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1063,7 +1063,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1175,7 +1175,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1517,7 +1517,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-azure-generated.yaml b/operations/mimir-tests/test-storage-azure-generated.yaml index 6220169c4d9..76ff4706171 100644 --- a/operations/mimir-tests/test-storage-azure-generated.yaml +++ b/operations/mimir-tests/test-storage-azure-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -881,7 +881,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -961,7 +961,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1062,7 +1062,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1175,7 +1175,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1518,7 +1518,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-gcs-generated.yaml b/operations/mimir-tests/test-storage-gcs-generated.yaml index 662df008260..565141363b1 100644 --- a/operations/mimir-tests/test-storage-gcs-generated.yaml +++ b/operations/mimir-tests/test-storage-gcs-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-gcs-redis-generated.yaml b/operations/mimir-tests/test-storage-gcs-redis-generated.yaml index 10f04f82640..62ab47c4ef9 100644 --- a/operations/mimir-tests/test-storage-gcs-redis-generated.yaml +++ b/operations/mimir-tests/test-storage-gcs-redis-generated.yaml @@ -406,7 +406,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -503,7 +503,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -581,7 +581,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -653,7 +653,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -746,7 +746,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -824,7 +824,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -923,7 +923,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1034,7 +1034,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1157,7 +1157,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-s3-generated.yaml b/operations/mimir-tests/test-storage-s3-generated.yaml index d55a1598f94..ef3e907a552 100644 --- a/operations/mimir-tests/test-storage-s3-generated.yaml +++ b/operations/mimir-tests/test-storage-s3-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -632,7 +632,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -713,7 +713,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -785,7 +785,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -879,7 +879,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ruler ports: @@ -958,7 +958,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1058,7 +1058,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1170,7 +1170,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1512,7 +1512,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-without-query-scheduler-generated.yaml b/operations/mimir-tests/test-without-query-scheduler-generated.yaml index b07b1be3157..0d9b858c34f 100644 --- a/operations/mimir-tests/test-without-query-scheduler-generated.yaml +++ b/operations/mimir-tests/test-without-query-scheduler-generated.yaml @@ -437,7 +437,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: distributor ports: @@ -534,7 +534,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: querier ports: @@ -614,7 +614,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -701,7 +701,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: compactor ports: @@ -812,7 +812,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1153,7 +1153,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.1 + image: grafana/mimir:2.14.2 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir/images.libsonnet b/operations/mimir/images.libsonnet index d38b64b2d34..70f56290c02 100644 --- a/operations/mimir/images.libsonnet +++ b/operations/mimir/images.libsonnet @@ -5,7 +5,7 @@ memcachedExporter: 'prom/memcached-exporter:v0.14.4', // Our services. - mimir: 'grafana/mimir:2.14.1', + mimir: 'grafana/mimir:2.14.2', alertmanager: self.mimir, distributor: self.mimir, @@ -19,8 +19,8 @@ query_scheduler: self.mimir, overrides_exporter: self.mimir, - query_tee: 'grafana/query-tee:2.14.1', - continuous_test: 'grafana/mimir-continuous-test:2.14.1', + query_tee: 'grafana/query-tee:2.14.2', + continuous_test: 'grafana/mimir-continuous-test:2.14.2', // Read-write deployment mode. mimir_write: self.mimir, From fe8ef4b53b6094e909598c188018dd6831f902d6 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:49:33 +0200 Subject: [PATCH 4/7] fix(deps): update dependency puppeteer to v23 (#9893) (#10062) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> (cherry picked from commit f4756db4d314cdba4563e5f7d2c835150321730b) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../screenshots/package-lock.json | 781 ++++++++++-------- .../screenshots/package.json | 2 +- 2 files changed, 432 insertions(+), 351 deletions(-) diff --git a/operations/mimir-mixin-tools/screenshots/package-lock.json b/operations/mimir-mixin-tools/screenshots/package-lock.json index 25ebaeddca2..0c88c166d35 100644 --- a/operations/mimir-mixin-tools/screenshots/package-lock.json +++ b/operations/mimir-mixin-tools/screenshots/package-lock.json @@ -8,7 +8,7 @@ "name": "screenshots", "version": "0.1.0", "dependencies": { - "puppeteer": "^21.0.0" + "puppeteer": "^23.0.0" } }, "node_modules/@babel/code-frame": { @@ -44,23 +44,24 @@ } }, "node_modules/@puppeteer/browsers": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", - "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.4.1.tgz", + "integrity": "sha512-0kdAbmic3J09I6dT8e9vE2JOCSt13wHCW5x/ly8TSt2bDtuIWe2TgLZZDHdcziw9AVCzflMAXCrVyRIhIs44Ng==", "dependencies": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.1", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.2" + "debug": "^4.3.7", + "extract-zip": "^2.0.1", + "progress": "^2.0.3", + "proxy-agent": "^6.4.0", + "semver": "^7.6.3", + "tar-fs": "^3.0.6", + "unbzip2-stream": "^1.4.3", + "yargs": "^17.7.2" }, "bin": { "browsers": "lib/cjs/main-cli.js" }, "engines": { - "node": ">=16.3.0" + "node": ">=18" } }, "node_modules/@tootallnate/quickjs-emscripten": { @@ -84,9 +85,9 @@ } }, "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dependencies": { "debug": "^4.3.4" }, @@ -130,9 +131,50 @@ } }, "node_modules/b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==" + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==" + }, + "node_modules/bare-events": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", + "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", + "optional": true, + "dependencies": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "node_modules/bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "optional": true, + "dependencies": { + "bare-os": "^2.1.0" + } + }, + "node_modules/bare-stream": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.2.tgz", + "integrity": "sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==", + "optional": true, + "dependencies": { + "streamx": "^2.20.0" + } }, "node_modules/base64-js": { "version": "1.5.1", @@ -154,9 +196,9 @@ ] }, "node_modules/basic-ftp": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", - "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", "engines": { "node": ">=10.0.0" } @@ -214,12 +256,13 @@ } }, "node_modules/chromium-bidi": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.8.tgz", - "integrity": "sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.8.0.tgz", + "integrity": "sha512-uJydbGdTw0DEUjhoogGveneJVWX/9YuqkWePzMmkBYwtdAqo5d3J/ovNKFr+/2hWXYmYCr6it8mSSTIj6SS6Ug==", "dependencies": { "mitt": "3.0.1", - "urlpattern-polyfill": "10.0.0" + "urlpattern-polyfill": "10.0.0", + "zod": "3.23.8" }, "peerDependencies": { "devtools-protocol": "*" @@ -276,28 +319,20 @@ } } }, - "node_modules/cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dependencies": { - "node-fetch": "^2.6.12" - } - }, "node_modules/data-uri-to-buffer": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz", - "integrity": "sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", "engines": { "node": ">= 14" } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -322,9 +357,9 @@ } }, "node_modules/devtools-protocol": { - "version": "0.0.1232444", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1232444.tgz", - "integrity": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==" + "version": "0.0.1367902", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz", + "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==" }, "node_modules/emoji-regex": { "version": "8.0.0", @@ -452,16 +487,16 @@ } }, "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=14.14" } }, "node_modules/get-caller-file": { @@ -487,14 +522,14 @@ } }, "node_modules/get-uri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", - "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", "dependencies": { "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.0", + "data-uri-to-buffer": "^6.0.2", "debug": "^4.3.4", - "fs-extra": "^8.1.0" + "fs-extra": "^11.2.0" }, "engines": { "node": ">= 14" @@ -514,9 +549,9 @@ } }, "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -526,9 +561,9 @@ } }, "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "dependencies": { "agent-base": "^7.0.2", "debug": "4" @@ -571,10 +606,17 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } }, "node_modules/is-arrayish": { "version": "0.2.1", @@ -605,15 +647,23 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -636,15 +686,10 @@ "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/netmask": { "version": "2.0.2", @@ -654,25 +699,6 @@ "node": ">= 0.4.0" } }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -682,30 +708,29 @@ } }, "node_modules/pac-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", - "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", + "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", "dependencies": { "@tootallnate/quickjs-emscripten": "^0.23.0", "agent-base": "^7.0.2", "debug": "^4.3.4", "get-uri": "^6.0.1", "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" + "https-proxy-agent": "^7.0.5", + "pac-resolver": "^7.0.1", + "socks-proxy-agent": "^8.0.4" }, "engines": { "node": ">= 14" } }, "node_modules/pac-resolver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", - "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", "dependencies": { "degenerator": "^5.0.0", - "ip": "^1.1.8", "netmask": "^2.0.2" }, "engines": { @@ -754,14 +779,14 @@ } }, "node_modules/proxy-agent": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz", - "integrity": "sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", "dependencies": { "agent-base": "^7.0.2", "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.3", "lru-cache": "^7.14.1", "pac-proxy-agent": "^7.0.1", "proxy-from-env": "^1.1.0", @@ -786,36 +811,39 @@ } }, "node_modules/puppeteer": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-21.11.0.tgz", - "integrity": "sha512-9jTHuYe22TD3sNxy0nEIzC7ZrlRnDgeX3xPkbS7PnbdwYjl2o/z/YuCrRBwezdKpbTDTJ4VqIggzNyeRcKq3cg==", + "version": "23.8.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.8.0.tgz", + "integrity": "sha512-MFWDMWoCcOpwNwQIjA9gPKWrEUbj8bLCzkK56w5lZPMUT6wK4FfpgOEPxKffVmXEMYMZzgcjxzqy15b/Q1ibaw==", "hasInstallScript": true, "dependencies": { - "@puppeteer/browsers": "1.9.1", - "cosmiconfig": "9.0.0", - "puppeteer-core": "21.11.0" + "@puppeteer/browsers": "2.4.1", + "chromium-bidi": "0.8.0", + "cosmiconfig": "^9.0.0", + "devtools-protocol": "0.0.1367902", + "puppeteer-core": "23.8.0", + "typed-query-selector": "^2.12.0" }, "bin": { - "puppeteer": "lib/esm/puppeteer/node/cli.js" + "puppeteer": "lib/cjs/puppeteer/node/cli.js" }, "engines": { - "node": ">=16.13.2" + "node": ">=18" } }, "node_modules/puppeteer-core": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.11.0.tgz", - "integrity": "sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==", + "version": "23.8.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.8.0.tgz", + "integrity": "sha512-c2ymGN2M//We7pC+JhP2dE/g4+qnT89BO+EMSZyJmecN3DN6RNqErA7eH7DrWoNIcU75r2nP4VHa4pswAL6NVg==", "dependencies": { - "@puppeteer/browsers": "1.9.1", - "chromium-bidi": "0.5.8", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1232444", - "ws": "8.16.0" + "@puppeteer/browsers": "2.4.1", + "chromium-bidi": "0.8.0", + "debug": "^4.3.7", + "devtools-protocol": "0.0.1367902", + "typed-query-selector": "^2.12.0", + "ws": "^8.18.0" }, "engines": { - "node": ">=16.13.2" + "node": ">=18" } }, "node_modules/queue-tick": { @@ -839,6 +867,17 @@ "node": ">=4" } }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", @@ -849,36 +888,31 @@ } }, "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", + "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.1", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" }, "engines": { "node": ">= 14" } }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -888,13 +922,22 @@ "node": ">=0.10.0" } }, + "node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + }, "node_modules/streamx": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", - "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", + "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", "dependencies": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" } }, "node_modules/string-width": { @@ -933,39 +976,47 @@ } }, "node_modules/tar-fs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", - "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", "dependencies": { - "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" } }, "node_modules/tar-stream": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", - "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, + "node_modules/text-decoder": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.1.tgz", + "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==" + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + }, + "node_modules/typed-query-selector": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==" }, "node_modules/unbzip2-stream": { "version": "1.4.3", @@ -977,11 +1028,11 @@ } }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/urlpattern-polyfill": { @@ -989,20 +1040,6 @@ "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -1055,9 +1092,9 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "engines": { "node": ">=10.0.0" }, @@ -1115,6 +1152,14 @@ "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } }, "dependencies": { @@ -1142,17 +1187,18 @@ } }, "@puppeteer/browsers": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", - "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.4.1.tgz", + "integrity": "sha512-0kdAbmic3J09I6dT8e9vE2JOCSt13wHCW5x/ly8TSt2bDtuIWe2TgLZZDHdcziw9AVCzflMAXCrVyRIhIs44Ng==", "requires": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.1", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.2" + "debug": "^4.3.7", + "extract-zip": "^2.0.1", + "progress": "^2.0.3", + "proxy-agent": "^6.4.0", + "semver": "^7.6.3", + "tar-fs": "^3.0.6", + "unbzip2-stream": "^1.4.3", + "yargs": "^17.7.2" } }, "@tootallnate/quickjs-emscripten": { @@ -1176,9 +1222,9 @@ } }, "agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "requires": { "debug": "^4.3.4" } @@ -1210,9 +1256,50 @@ } }, "b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==" + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==" + }, + "bare-events": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", + "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", + "optional": true + }, + "bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", + "optional": true, + "requires": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", + "optional": true + }, + "bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "optional": true, + "requires": { + "bare-os": "^2.1.0" + } + }, + "bare-stream": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.2.tgz", + "integrity": "sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==", + "optional": true, + "requires": { + "streamx": "^2.20.0" + } }, "base64-js": { "version": "1.5.1", @@ -1220,9 +1307,9 @@ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" }, "basic-ftp": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", - "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==" + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==" }, "buffer": { "version": "5.7.1", @@ -1254,12 +1341,13 @@ } }, "chromium-bidi": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.8.tgz", - "integrity": "sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.8.0.tgz", + "integrity": "sha512-uJydbGdTw0DEUjhoogGveneJVWX/9YuqkWePzMmkBYwtdAqo5d3J/ovNKFr+/2hWXYmYCr6it8mSSTIj6SS6Ug==", "requires": { "mitt": "3.0.1", - "urlpattern-polyfill": "10.0.0" + "urlpattern-polyfill": "10.0.0", + "zod": "3.23.8" } }, "cliui": { @@ -1296,25 +1384,17 @@ "parse-json": "^5.2.0" } }, - "cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "requires": { - "node-fetch": "^2.6.12" - } - }, "data-uri-to-buffer": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz", - "integrity": "sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==" }, "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", "requires": { - "ms": "2.1.2" + "ms": "^2.1.3" } }, "degenerator": { @@ -1328,9 +1408,9 @@ } }, "devtools-protocol": { - "version": "0.0.1232444", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1232444.tgz", - "integrity": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==" + "version": "0.0.1367902", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz", + "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==" }, "emoji-regex": { "version": "8.0.0", @@ -1419,13 +1499,13 @@ } }, "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "requires": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, "get-caller-file": { @@ -1442,14 +1522,14 @@ } }, "get-uri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", - "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", "requires": { "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.0", + "data-uri-to-buffer": "^6.0.2", "debug": "^4.3.4", - "fs-extra": "^8.1.0" + "fs-extra": "^11.2.0" } }, "graceful-fs": { @@ -1463,18 +1543,18 @@ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" }, "http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "requires": { "agent-base": "^7.1.0", "debug": "^4.3.4" } }, "https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", "requires": { "agent-base": "^7.0.2", "debug": "4" @@ -1494,10 +1574,14 @@ "resolve-from": "^4.0.0" } }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + "ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "requires": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + } }, "is-arrayish": { "version": "0.2.1", @@ -1522,17 +1606,23 @@ "argparse": "^2.0.1" } }, + "jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" + }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "requires": { - "graceful-fs": "^4.1.6" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, "lines-and-columns": { @@ -1550,29 +1640,16 @@ "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - }, "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "netmask": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" }, - "node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -1582,27 +1659,26 @@ } }, "pac-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", - "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", + "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", "requires": { "@tootallnate/quickjs-emscripten": "^0.23.0", "agent-base": "^7.0.2", "debug": "^4.3.4", "get-uri": "^6.0.1", "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" + "https-proxy-agent": "^7.0.5", + "pac-resolver": "^7.0.1", + "socks-proxy-agent": "^8.0.4" } }, "pac-resolver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", - "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", "requires": { "degenerator": "^5.0.0", - "ip": "^1.1.8", "netmask": "^2.0.2" } }, @@ -1636,14 +1712,14 @@ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" }, "proxy-agent": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz", - "integrity": "sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", "requires": { "agent-base": "^7.0.2", "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.3", "lru-cache": "^7.14.1", "pac-proxy-agent": "^7.0.1", "proxy-from-env": "^1.1.0", @@ -1665,26 +1741,29 @@ } }, "puppeteer": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-21.11.0.tgz", - "integrity": "sha512-9jTHuYe22TD3sNxy0nEIzC7ZrlRnDgeX3xPkbS7PnbdwYjl2o/z/YuCrRBwezdKpbTDTJ4VqIggzNyeRcKq3cg==", + "version": "23.8.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.8.0.tgz", + "integrity": "sha512-MFWDMWoCcOpwNwQIjA9gPKWrEUbj8bLCzkK56w5lZPMUT6wK4FfpgOEPxKffVmXEMYMZzgcjxzqy15b/Q1ibaw==", "requires": { - "@puppeteer/browsers": "1.9.1", - "cosmiconfig": "9.0.0", - "puppeteer-core": "21.11.0" + "@puppeteer/browsers": "2.4.1", + "chromium-bidi": "0.8.0", + "cosmiconfig": "^9.0.0", + "devtools-protocol": "0.0.1367902", + "puppeteer-core": "23.8.0", + "typed-query-selector": "^2.12.0" } }, "puppeteer-core": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.11.0.tgz", - "integrity": "sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==", + "version": "23.8.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.8.0.tgz", + "integrity": "sha512-c2ymGN2M//We7pC+JhP2dE/g4+qnT89BO+EMSZyJmecN3DN6RNqErA7eH7DrWoNIcU75r2nP4VHa4pswAL6NVg==", "requires": { - "@puppeteer/browsers": "1.9.1", - "chromium-bidi": "0.5.8", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1232444", - "ws": "8.16.0" + "@puppeteer/browsers": "2.4.1", + "chromium-bidi": "0.8.0", + "debug": "^4.3.7", + "devtools-protocol": "0.0.1367902", + "typed-query-selector": "^2.12.0", + "ws": "^8.18.0" } }, "queue-tick": { @@ -1702,35 +1781,33 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" }, + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" + }, "smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" }, "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "requires": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" - }, - "dependencies": { - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - } } }, "socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", + "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", "requires": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.1", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" } }, "source-map": { @@ -1739,13 +1816,20 @@ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "optional": true }, + "sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" + }, "streamx": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", - "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", + "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", "requires": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" + "bare-events": "^2.2.0", + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" } }, "string-width": { @@ -1775,39 +1859,45 @@ } }, "tar-fs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", - "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", "requires": { - "mkdirp-classic": "^0.5.2", + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0", "pump": "^3.0.0", "tar-stream": "^3.1.5" } }, "tar-stream": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", - "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "requires": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, + "text-decoder": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.1.tgz", + "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==" + }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + }, + "typed-query-selector": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==" }, "unbzip2-stream": { "version": "1.4.3", @@ -1819,29 +1909,15 @@ } }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" }, "urlpattern-polyfill": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -1881,9 +1957,9 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "requires": {} }, "y18n": { @@ -1918,6 +1994,11 @@ "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } + }, + "zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==" } } } diff --git a/operations/mimir-mixin-tools/screenshots/package.json b/operations/mimir-mixin-tools/screenshots/package.json index f34e87e5e81..22e7dc51707 100644 --- a/operations/mimir-mixin-tools/screenshots/package.json +++ b/operations/mimir-mixin-tools/screenshots/package.json @@ -2,6 +2,6 @@ "name": "screenshots", "version": "0.1.0", "dependencies": { - "puppeteer": "^21.0.0" + "puppeteer": "^23.0.0" } } From f858dbb9545f0f744f937fc56840d80ef03a0b8c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 10:15:17 +0000 Subject: [PATCH 5/7] Update module golang.org/x/crypto to v0.31.0 [SECURITY] (#10251) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 8 +- go.sum | 20 +- .../x/crypto/chacha20/chacha_noasm.go | 2 +- .../{chacha_ppc64le.go => chacha_ppc64x.go} | 2 +- .../{chacha_ppc64le.s => chacha_ppc64x.s} | 114 ++++++--- .../x/crypto/internal/poly1305/mac_noasm.go | 2 +- .../{sum_ppc64le.go => sum_ppc64x.go} | 2 +- .../poly1305/{sum_ppc64le.s => sum_ppc64x.s} | 30 ++- .../golang.org/x/sys/cpu/asm_darwin_x86_gc.s | 17 ++ vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go | 61 +++++ vendor/golang.org/x/sys/cpu/cpu_gc_x86.go | 4 +- .../x/sys/cpu/{cpu_x86.s => cpu_gc_x86.s} | 2 +- vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go | 6 - .../golang.org/x/sys/cpu/cpu_linux_arm64.go | 1 - vendor/golang.org/x/sys/cpu/cpu_other_x86.go | 11 + vendor/golang.org/x/sys/cpu/cpu_x86.go | 6 +- .../x/sys/cpu/syscall_darwin_x86_gc.go | 98 ++++++++ vendor/golang.org/x/sys/unix/README.md | 2 +- vendor/golang.org/x/sys/unix/ioctl_linux.go | 96 ++++++++ vendor/golang.org/x/sys/unix/mkerrors.sh | 16 +- vendor/golang.org/x/sys/unix/syscall_aix.go | 2 +- vendor/golang.org/x/sys/unix/syscall_linux.go | 64 ++++- .../x/sys/unix/syscall_linux_arm64.go | 2 + .../x/sys/unix/syscall_linux_loong64.go | 2 + .../x/sys/unix/syscall_linux_riscv64.go | 2 + .../x/sys/unix/syscall_zos_s390x.go | 104 +++++++- .../golang.org/x/sys/unix/vgetrandom_linux.go | 13 + .../x/sys/unix/vgetrandom_unsupported.go | 11 + vendor/golang.org/x/sys/unix/zerrors_linux.go | 44 +++- .../x/sys/unix/zerrors_linux_386.go | 25 ++ .../x/sys/unix/zerrors_linux_amd64.go | 25 ++ .../x/sys/unix/zerrors_linux_arm.go | 25 ++ .../x/sys/unix/zerrors_linux_arm64.go | 26 ++ .../x/sys/unix/zerrors_linux_loong64.go | 25 ++ .../x/sys/unix/zerrors_linux_mips.go | 25 ++ .../x/sys/unix/zerrors_linux_mips64.go | 25 ++ .../x/sys/unix/zerrors_linux_mips64le.go | 25 ++ .../x/sys/unix/zerrors_linux_mipsle.go | 25 ++ .../x/sys/unix/zerrors_linux_ppc.go | 25 ++ .../x/sys/unix/zerrors_linux_ppc64.go | 25 ++ .../x/sys/unix/zerrors_linux_ppc64le.go | 25 ++ .../x/sys/unix/zerrors_linux_riscv64.go | 25 ++ .../x/sys/unix/zerrors_linux_s390x.go | 25 ++ .../x/sys/unix/zerrors_linux_sparc64.go | 25 ++ .../golang.org/x/sys/unix/zsyscall_linux.go | 27 +-- .../x/sys/unix/zsysnum_linux_amd64.go | 1 + .../x/sys/unix/zsysnum_linux_arm64.go | 2 +- .../x/sys/unix/zsysnum_linux_loong64.go | 2 + .../x/sys/unix/zsysnum_linux_riscv64.go | 2 +- .../x/sys/unix/ztypes_darwin_amd64.go | 60 +++++ .../x/sys/unix/ztypes_darwin_arm64.go | 60 +++++ vendor/golang.org/x/sys/unix/ztypes_linux.go | 222 ++++++++++++++---- .../golang.org/x/sys/unix/ztypes_zos_s390x.go | 6 + .../golang.org/x/sys/windows/dll_windows.go | 2 +- .../x/sys/windows/syscall_windows.go | 36 +-- .../golang.org/x/sys/windows/types_windows.go | 127 ++++++++++ .../x/sys/windows/zsyscall_windows.go | 71 ++++++ vendor/modules.txt | 8 +- 58 files changed, 1581 insertions(+), 165 deletions(-) rename vendor/golang.org/x/crypto/chacha20/{chacha_ppc64le.go => chacha_ppc64x.go} (89%) rename vendor/golang.org/x/crypto/chacha20/{chacha_ppc64le.s => chacha_ppc64x.s} (76%) rename vendor/golang.org/x/crypto/internal/poly1305/{sum_ppc64le.go => sum_ppc64x.go} (95%) rename vendor/golang.org/x/crypto/internal/poly1305/{sum_ppc64le.s => sum_ppc64x.s} (89%) create mode 100644 vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s create mode 100644 vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go rename vendor/golang.org/x/sys/cpu/{cpu_x86.s => cpu_gc_x86.s} (94%) create mode 100644 vendor/golang.org/x/sys/cpu/cpu_other_x86.go create mode 100644 vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go create mode 100644 vendor/golang.org/x/sys/unix/vgetrandom_linux.go create mode 100644 vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go diff --git a/go.mod b/go.mod index 0dfc65bda87..6f6260d9ead 100644 --- a/go.mod +++ b/go.mod @@ -45,9 +45,9 @@ require ( github.com/uber/jaeger-client-go v2.30.0+incompatible go.uber.org/atomic v1.11.0 go.uber.org/goleak v1.3.0 - golang.org/x/crypto v0.27.0 + golang.org/x/crypto v0.31.0 golang.org/x/net v0.29.0 - golang.org/x/sync v0.8.0 + golang.org/x/sync v0.10.0 golang.org/x/time v0.6.0 google.golang.org/grpc v1.66.0 gopkg.in/yaml.v2 v2.4.0 @@ -267,8 +267,8 @@ require ( go.uber.org/zap v1.21.0 // indirect golang.org/x/mod v0.21.0 // indirect golang.org/x/oauth2 v0.22.0 // indirect - golang.org/x/sys v0.25.0 // indirect - golang.org/x/text v0.18.0 // indirect + golang.org/x/sys v0.28.0 // indirect + golang.org/x/text v0.21.0 // indirect golang.org/x/tools v0.25.0 // indirect google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect diff --git a/go.sum b/go.sum index 23e70b8eaaf..6dbf8c15fbe 100644 --- a/go.sum +++ b/go.sum @@ -1801,8 +1801,8 @@ golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1m golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= -golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A= -golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70= +golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= +golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1991,8 +1991,8 @@ golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= -golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= +golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2097,8 +2097,8 @@ golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34= -golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= +golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2115,8 +2115,8 @@ golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY= -golang.org/x/term v0.24.0 h1:Mh5cbb+Zk2hqqXNO7S1iTjEphVL+jb8ZWaqh/g+JWkM= -golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8= +golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= +golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2136,8 +2136,8 @@ golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224= -golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= +golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= +golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go index db42e6676ab..c709b728477 100644 --- a/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go +++ b/vendor/golang.org/x/crypto/chacha20/chacha_noasm.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build (!arm64 && !s390x && !ppc64le) || !gc || purego +//go:build (!arm64 && !s390x && !ppc64 && !ppc64le) || !gc || purego package chacha20 diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.go similarity index 89% rename from vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go rename to vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.go index 3a4287f9900..bd183d9ba12 100644 --- a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go +++ b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build gc && !purego +//go:build gc && !purego && (ppc64 || ppc64le) package chacha20 diff --git a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.s similarity index 76% rename from vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s rename to vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.s index c672ccf6986..a660b4112fa 100644 --- a/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s +++ b/vendor/golang.org/x/crypto/chacha20/chacha_ppc64x.s @@ -19,7 +19,7 @@ // The differences in this and the original implementation are // due to the calling conventions and initialization of constants. -//go:build gc && !purego +//go:build gc && !purego && (ppc64 || ppc64le) #include "textflag.h" @@ -36,32 +36,68 @@ // for VPERMXOR #define MASK R18 -DATA consts<>+0x00(SB)/8, $0x3320646e61707865 -DATA consts<>+0x08(SB)/8, $0x6b20657479622d32 -DATA consts<>+0x10(SB)/8, $0x0000000000000001 -DATA consts<>+0x18(SB)/8, $0x0000000000000000 -DATA consts<>+0x20(SB)/8, $0x0000000000000004 -DATA consts<>+0x28(SB)/8, $0x0000000000000000 -DATA consts<>+0x30(SB)/8, $0x0a0b08090e0f0c0d -DATA consts<>+0x38(SB)/8, $0x0203000106070405 -DATA consts<>+0x40(SB)/8, $0x090a0b080d0e0f0c -DATA consts<>+0x48(SB)/8, $0x0102030005060704 -DATA consts<>+0x50(SB)/8, $0x6170786561707865 -DATA consts<>+0x58(SB)/8, $0x6170786561707865 -DATA consts<>+0x60(SB)/8, $0x3320646e3320646e -DATA consts<>+0x68(SB)/8, $0x3320646e3320646e -DATA consts<>+0x70(SB)/8, $0x79622d3279622d32 -DATA consts<>+0x78(SB)/8, $0x79622d3279622d32 -DATA consts<>+0x80(SB)/8, $0x6b2065746b206574 -DATA consts<>+0x88(SB)/8, $0x6b2065746b206574 -DATA consts<>+0x90(SB)/8, $0x0000000100000000 -DATA consts<>+0x98(SB)/8, $0x0000000300000002 -DATA consts<>+0xa0(SB)/8, $0x5566774411223300 -DATA consts<>+0xa8(SB)/8, $0xddeeffcc99aabb88 -DATA consts<>+0xb0(SB)/8, $0x6677445522330011 -DATA consts<>+0xb8(SB)/8, $0xeeffccddaabb8899 +DATA consts<>+0x00(SB)/4, $0x61707865 +DATA consts<>+0x04(SB)/4, $0x3320646e +DATA consts<>+0x08(SB)/4, $0x79622d32 +DATA consts<>+0x0c(SB)/4, $0x6b206574 +DATA consts<>+0x10(SB)/4, $0x00000001 +DATA consts<>+0x14(SB)/4, $0x00000000 +DATA consts<>+0x18(SB)/4, $0x00000000 +DATA consts<>+0x1c(SB)/4, $0x00000000 +DATA consts<>+0x20(SB)/4, $0x00000004 +DATA consts<>+0x24(SB)/4, $0x00000000 +DATA consts<>+0x28(SB)/4, $0x00000000 +DATA consts<>+0x2c(SB)/4, $0x00000000 +DATA consts<>+0x30(SB)/4, $0x0e0f0c0d +DATA consts<>+0x34(SB)/4, $0x0a0b0809 +DATA consts<>+0x38(SB)/4, $0x06070405 +DATA consts<>+0x3c(SB)/4, $0x02030001 +DATA consts<>+0x40(SB)/4, $0x0d0e0f0c +DATA consts<>+0x44(SB)/4, $0x090a0b08 +DATA consts<>+0x48(SB)/4, $0x05060704 +DATA consts<>+0x4c(SB)/4, $0x01020300 +DATA consts<>+0x50(SB)/4, $0x61707865 +DATA consts<>+0x54(SB)/4, $0x61707865 +DATA consts<>+0x58(SB)/4, $0x61707865 +DATA consts<>+0x5c(SB)/4, $0x61707865 +DATA consts<>+0x60(SB)/4, $0x3320646e +DATA consts<>+0x64(SB)/4, $0x3320646e +DATA consts<>+0x68(SB)/4, $0x3320646e +DATA consts<>+0x6c(SB)/4, $0x3320646e +DATA consts<>+0x70(SB)/4, $0x79622d32 +DATA consts<>+0x74(SB)/4, $0x79622d32 +DATA consts<>+0x78(SB)/4, $0x79622d32 +DATA consts<>+0x7c(SB)/4, $0x79622d32 +DATA consts<>+0x80(SB)/4, $0x6b206574 +DATA consts<>+0x84(SB)/4, $0x6b206574 +DATA consts<>+0x88(SB)/4, $0x6b206574 +DATA consts<>+0x8c(SB)/4, $0x6b206574 +DATA consts<>+0x90(SB)/4, $0x00000000 +DATA consts<>+0x94(SB)/4, $0x00000001 +DATA consts<>+0x98(SB)/4, $0x00000002 +DATA consts<>+0x9c(SB)/4, $0x00000003 +DATA consts<>+0xa0(SB)/4, $0x11223300 +DATA consts<>+0xa4(SB)/4, $0x55667744 +DATA consts<>+0xa8(SB)/4, $0x99aabb88 +DATA consts<>+0xac(SB)/4, $0xddeeffcc +DATA consts<>+0xb0(SB)/4, $0x22330011 +DATA consts<>+0xb4(SB)/4, $0x66774455 +DATA consts<>+0xb8(SB)/4, $0xaabb8899 +DATA consts<>+0xbc(SB)/4, $0xeeffccdd GLOBL consts<>(SB), RODATA, $0xc0 +#ifdef GOARCH_ppc64 +#define BE_XXBRW_INIT() \ + LVSL (R0)(R0), V24 \ + VSPLTISB $3, V25 \ + VXOR V24, V25, V24 \ + +#define BE_XXBRW(vr) VPERM vr, vr, V24, vr +#else +#define BE_XXBRW_INIT() +#define BE_XXBRW(vr) +#endif + //func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32) TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40 MOVD out+0(FP), OUT @@ -94,6 +130,8 @@ TEXT ·chaCha20_ctr32_vsx(SB),NOSPLIT,$64-40 // Clear V27 VXOR V27, V27, V27 + BE_XXBRW_INIT() + // V28 LXVW4X (CONSTBASE)(R11), VS60 @@ -299,6 +337,11 @@ loop_vsx: VADDUWM V8, V18, V8 VADDUWM V12, V19, V12 + BE_XXBRW(V0) + BE_XXBRW(V4) + BE_XXBRW(V8) + BE_XXBRW(V12) + CMPU LEN, $64 BLT tail_vsx @@ -327,6 +370,11 @@ loop_vsx: VADDUWM V9, V18, V8 VADDUWM V13, V19, V12 + BE_XXBRW(V0) + BE_XXBRW(V4) + BE_XXBRW(V8) + BE_XXBRW(V12) + CMPU LEN, $64 BLT tail_vsx @@ -334,8 +382,8 @@ loop_vsx: LXVW4X (INP)(R8), VS60 LXVW4X (INP)(R9), VS61 LXVW4X (INP)(R10), VS62 - VXOR V27, V0, V27 + VXOR V27, V0, V27 VXOR V28, V4, V28 VXOR V29, V8, V29 VXOR V30, V12, V30 @@ -354,6 +402,11 @@ loop_vsx: VADDUWM V10, V18, V8 VADDUWM V14, V19, V12 + BE_XXBRW(V0) + BE_XXBRW(V4) + BE_XXBRW(V8) + BE_XXBRW(V12) + CMPU LEN, $64 BLT tail_vsx @@ -381,6 +434,11 @@ loop_vsx: VADDUWM V11, V18, V8 VADDUWM V15, V19, V12 + BE_XXBRW(V0) + BE_XXBRW(V4) + BE_XXBRW(V8) + BE_XXBRW(V12) + CMPU LEN, $64 BLT tail_vsx @@ -408,9 +466,9 @@ loop_vsx: done_vsx: // Increment counter by number of 64 byte blocks - MOVD (CNT), R14 + MOVWZ (CNT), R14 ADD BLOCKS, R14 - MOVD R14, (CNT) + MOVWZ R14, (CNT) RET tail_vsx: diff --git a/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go b/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go index 333da285b32..bd896bdc76d 100644 --- a/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go +++ b/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build (!amd64 && !ppc64le && !s390x) || !gc || purego +//go:build (!amd64 && !ppc64le && !ppc64 && !s390x) || !gc || purego package poly1305 diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.go similarity index 95% rename from vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go rename to vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.go index 4aec4874b50..1a1679aaad9 100644 --- a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go +++ b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build gc && !purego +//go:build gc && !purego && (ppc64 || ppc64le) package poly1305 diff --git a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.s similarity index 89% rename from vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s rename to vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.s index b3c1699bff5..6899a1dabc0 100644 --- a/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s +++ b/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64x.s @@ -2,15 +2,25 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build gc && !purego +//go:build gc && !purego && (ppc64 || ppc64le) #include "textflag.h" // This was ported from the amd64 implementation. +#ifdef GOARCH_ppc64le +#define LE_MOVD MOVD +#define LE_MOVWZ MOVWZ +#define LE_MOVHZ MOVHZ +#else +#define LE_MOVD MOVDBR +#define LE_MOVWZ MOVWBR +#define LE_MOVHZ MOVHBR +#endif + #define POLY1305_ADD(msg, h0, h1, h2, t0, t1, t2) \ - MOVD (msg), t0; \ - MOVD 8(msg), t1; \ + LE_MOVD (msg)( R0), t0; \ + LE_MOVD (msg)(R24), t1; \ MOVD $1, t2; \ ADDC t0, h0, h0; \ ADDE t1, h1, h1; \ @@ -50,10 +60,6 @@ ADDE t3, h1, h1; \ ADDZE h2 -DATA ·poly1305Mask<>+0x00(SB)/8, $0x0FFFFFFC0FFFFFFF -DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC -GLOBL ·poly1305Mask<>(SB), RODATA, $16 - // func update(state *[7]uint64, msg []byte) TEXT ·update(SB), $0-32 MOVD state+0(FP), R3 @@ -66,6 +72,8 @@ TEXT ·update(SB), $0-32 MOVD 24(R3), R11 // r0 MOVD 32(R3), R12 // r1 + MOVD $8, R24 + CMP R5, $16 BLT bytes_between_0_and_15 @@ -94,7 +102,7 @@ flush_buffer: // Greater than 8 -- load the rightmost remaining bytes in msg // and put into R17 (h1) - MOVD (R4)(R21), R17 + LE_MOVD (R4)(R21), R17 MOVD $16, R22 // Find the offset to those bytes @@ -118,7 +126,7 @@ just1: BLT less8 // Exactly 8 - MOVD (R4), R16 + LE_MOVD (R4), R16 CMP R17, $0 @@ -133,7 +141,7 @@ less8: MOVD $0, R22 // shift count CMP R5, $4 BLT less4 - MOVWZ (R4), R16 + LE_MOVWZ (R4), R16 ADD $4, R4 ADD $-4, R5 MOVD $32, R22 @@ -141,7 +149,7 @@ less8: less4: CMP R5, $2 BLT less2 - MOVHZ (R4), R21 + LE_MOVHZ (R4), R21 SLD R22, R21, R21 OR R16, R21, R16 ADD $16, R22 diff --git a/vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s b/vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s new file mode 100644 index 00000000000..ec2acfe540e --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/asm_darwin_x86_gc.s @@ -0,0 +1,17 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build darwin && amd64 && gc + +#include "textflag.h" + +TEXT libc_sysctl_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_sysctl(SB) +GLOBL ·libc_sysctl_trampoline_addr(SB), RODATA, $8 +DATA ·libc_sysctl_trampoline_addr(SB)/8, $libc_sysctl_trampoline<>(SB) + +TEXT libc_sysctlbyname_trampoline<>(SB),NOSPLIT,$0-0 + JMP libc_sysctlbyname(SB) +GLOBL ·libc_sysctlbyname_trampoline_addr(SB), RODATA, $8 +DATA ·libc_sysctlbyname_trampoline_addr(SB)/8, $libc_sysctlbyname_trampoline<>(SB) diff --git a/vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go b/vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go new file mode 100644 index 00000000000..b838cb9e956 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_darwin_x86.go @@ -0,0 +1,61 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build darwin && amd64 && gc + +package cpu + +// darwinSupportsAVX512 checks Darwin kernel for AVX512 support via sysctl +// call (see issue 43089). It also restricts AVX512 support for Darwin to +// kernel version 21.3.0 (MacOS 12.2.0) or later (see issue 49233). +// +// Background: +// Darwin implements a special mechanism to economize on thread state when +// AVX512 specific registers are not in use. This scheme minimizes state when +// preempting threads that haven't yet used any AVX512 instructions, but adds +// special requirements to check for AVX512 hardware support at runtime (e.g. +// via sysctl call or commpage inspection). See issue 43089 and link below for +// full background: +// https://github.com/apple-oss-distributions/xnu/blob/xnu-11215.1.10/osfmk/i386/fpu.c#L214-L240 +// +// Additionally, all versions of the Darwin kernel from 19.6.0 through 21.2.0 +// (corresponding to MacOS 10.15.6 - 12.1) have a bug that can cause corruption +// of the AVX512 mask registers (K0-K7) upon signal return. For this reason +// AVX512 is considered unsafe to use on Darwin for kernel versions prior to +// 21.3.0, where a fix has been confirmed. See issue 49233 for full background. +func darwinSupportsAVX512() bool { + return darwinSysctlEnabled([]byte("hw.optional.avx512f\x00")) && darwinKernelVersionCheck(21, 3, 0) +} + +// Ensure Darwin kernel version is at least major.minor.patch, avoiding dependencies +func darwinKernelVersionCheck(major, minor, patch int) bool { + var release [256]byte + err := darwinOSRelease(&release) + if err != nil { + return false + } + + var mmp [3]int + c := 0 +Loop: + for _, b := range release[:] { + switch { + case b >= '0' && b <= '9': + mmp[c] = 10*mmp[c] + int(b-'0') + case b == '.': + c++ + if c > 2 { + return false + } + case b == 0: + break Loop + default: + return false + } + } + if c != 2 { + return false + } + return mmp[0] > major || mmp[0] == major && (mmp[1] > minor || mmp[1] == minor && mmp[2] >= patch) +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go index 910728fb163..32a44514e24 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go +++ b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go @@ -6,10 +6,10 @@ package cpu -// cpuid is implemented in cpu_x86.s for gc compiler +// cpuid is implemented in cpu_gc_x86.s for gc compiler // and in cpu_gccgo.c for gccgo. func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32) -// xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler +// xgetbv with ecx = 0 is implemented in cpu_gc_x86.s for gc compiler // and in cpu_gccgo.c for gccgo. func xgetbv() (eax, edx uint32) diff --git a/vendor/golang.org/x/sys/cpu/cpu_x86.s b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s similarity index 94% rename from vendor/golang.org/x/sys/cpu/cpu_x86.s rename to vendor/golang.org/x/sys/cpu/cpu_gc_x86.s index 7d7ba33efb8..ce208ce6d6a 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_x86.s +++ b/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s @@ -18,7 +18,7 @@ TEXT ·cpuid(SB), NOSPLIT, $0-24 RET // func xgetbv() (eax, edx uint32) -TEXT ·xgetbv(SB),NOSPLIT,$0-8 +TEXT ·xgetbv(SB), NOSPLIT, $0-8 MOVL $0, CX XGETBV MOVL AX, eax+0(FP) diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go index 99c60fe9f9c..170d21ddfda 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go @@ -23,9 +23,3 @@ func xgetbv() (eax, edx uint32) { gccgoXgetbv(&a, &d) return a, d } - -// gccgo doesn't build on Darwin, per: -// https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/gcc.rb#L76 -func darwinSupportsAVX512() bool { - return false -} diff --git a/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go index 08f35ea1773..f1caf0f78e2 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go +++ b/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go @@ -110,7 +110,6 @@ func doinit() { ARM64.HasASIMDFHM = isSet(hwCap, hwcap_ASIMDFHM) ARM64.HasDIT = isSet(hwCap, hwcap_DIT) - // HWCAP2 feature bits ARM64.HasSVE2 = isSet(hwCap2, hwcap2_SVE2) ARM64.HasI8MM = isSet(hwCap2, hwcap2_I8MM) diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_x86.go b/vendor/golang.org/x/sys/cpu/cpu_other_x86.go new file mode 100644 index 00000000000..a0fd7e2f75d --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_other_x86.go @@ -0,0 +1,11 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build 386 || amd64p32 || (amd64 && (!darwin || !gc)) + +package cpu + +func darwinSupportsAVX512() bool { + panic("only implemented for gc && amd64 && darwin") +} diff --git a/vendor/golang.org/x/sys/cpu/cpu_x86.go b/vendor/golang.org/x/sys/cpu/cpu_x86.go index c29f5e4c5a6..600a6807861 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_x86.go +++ b/vendor/golang.org/x/sys/cpu/cpu_x86.go @@ -92,10 +92,8 @@ func archInit() { osSupportsAVX = isSet(1, eax) && isSet(2, eax) if runtime.GOOS == "darwin" { - // Darwin doesn't save/restore AVX-512 mask registers correctly across signal handlers. - // Since users can't rely on mask register contents, let's not advertise AVX-512 support. - // See issue 49233. - osSupportsAVX512 = false + // Darwin requires special AVX512 checks, see cpu_darwin_x86.go + osSupportsAVX512 = osSupportsAVX && darwinSupportsAVX512() } else { // Check if OPMASK and ZMM registers have OS support. osSupportsAVX512 = osSupportsAVX && isSet(5, eax) && isSet(6, eax) && isSet(7, eax) diff --git a/vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go b/vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go new file mode 100644 index 00000000000..4d0888b0c01 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/syscall_darwin_x86_gc.go @@ -0,0 +1,98 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Minimal copy of x/sys/unix so the cpu package can make a +// system call on Darwin without depending on x/sys/unix. + +//go:build darwin && amd64 && gc + +package cpu + +import ( + "syscall" + "unsafe" +) + +type _C_int int32 + +// adapted from unix.Uname() at x/sys/unix/syscall_darwin.go L419 +func darwinOSRelease(release *[256]byte) error { + // from x/sys/unix/zerrors_openbsd_amd64.go + const ( + CTL_KERN = 0x1 + KERN_OSRELEASE = 0x2 + ) + + mib := []_C_int{CTL_KERN, KERN_OSRELEASE} + n := unsafe.Sizeof(*release) + + return sysctl(mib, &release[0], &n, nil, 0) +} + +type Errno = syscall.Errno + +var _zero uintptr // Single-word zero for use when we need a valid pointer to 0 bytes. + +// from x/sys/unix/zsyscall_darwin_amd64.go L791-807 +func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) error { + var _p0 unsafe.Pointer + if len(mib) > 0 { + _p0 = unsafe.Pointer(&mib[0]) + } else { + _p0 = unsafe.Pointer(&_zero) + } + if _, _, err := syscall_syscall6( + libc_sysctl_trampoline_addr, + uintptr(_p0), + uintptr(len(mib)), + uintptr(unsafe.Pointer(old)), + uintptr(unsafe.Pointer(oldlen)), + uintptr(unsafe.Pointer(new)), + uintptr(newlen), + ); err != 0 { + return err + } + + return nil +} + +var libc_sysctl_trampoline_addr uintptr + +// adapted from internal/cpu/cpu_arm64_darwin.go +func darwinSysctlEnabled(name []byte) bool { + out := int32(0) + nout := unsafe.Sizeof(out) + if ret := sysctlbyname(&name[0], (*byte)(unsafe.Pointer(&out)), &nout, nil, 0); ret != nil { + return false + } + return out > 0 +} + +//go:cgo_import_dynamic libc_sysctl sysctl "/usr/lib/libSystem.B.dylib" + +var libc_sysctlbyname_trampoline_addr uintptr + +// adapted from runtime/sys_darwin.go in the pattern of sysctl() above, as defined in x/sys/unix +func sysctlbyname(name *byte, old *byte, oldlen *uintptr, new *byte, newlen uintptr) error { + if _, _, err := syscall_syscall6( + libc_sysctlbyname_trampoline_addr, + uintptr(unsafe.Pointer(name)), + uintptr(unsafe.Pointer(old)), + uintptr(unsafe.Pointer(oldlen)), + uintptr(unsafe.Pointer(new)), + uintptr(newlen), + 0, + ); err != 0 { + return err + } + + return nil +} + +//go:cgo_import_dynamic libc_sysctlbyname sysctlbyname "/usr/lib/libSystem.B.dylib" + +// Implemented in the runtime package (runtime/sys_darwin.go) +func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) + +//go:linkname syscall_syscall6 syscall.syscall6 diff --git a/vendor/golang.org/x/sys/unix/README.md b/vendor/golang.org/x/sys/unix/README.md index 7d3c060e122..6e08a76a716 100644 --- a/vendor/golang.org/x/sys/unix/README.md +++ b/vendor/golang.org/x/sys/unix/README.md @@ -156,7 +156,7 @@ from the generated architecture-specific files listed below, and merge these into a common file for each OS. The merge is performed in the following steps: -1. Construct the set of common code that is idential in all architecture-specific files. +1. Construct the set of common code that is identical in all architecture-specific files. 2. Write this common code to the merged file. 3. Remove the common code from all architecture-specific files. diff --git a/vendor/golang.org/x/sys/unix/ioctl_linux.go b/vendor/golang.org/x/sys/unix/ioctl_linux.go index dbe680eab88..7ca4fa12aa6 100644 --- a/vendor/golang.org/x/sys/unix/ioctl_linux.go +++ b/vendor/golang.org/x/sys/unix/ioctl_linux.go @@ -58,6 +58,102 @@ func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, error) { return &value, err } +// IoctlGetEthtoolTsInfo fetches ethtool timestamping and PHC +// association for the network device specified by ifname. +func IoctlGetEthtoolTsInfo(fd int, ifname string) (*EthtoolTsInfo, error) { + ifr, err := NewIfreq(ifname) + if err != nil { + return nil, err + } + + value := EthtoolTsInfo{Cmd: ETHTOOL_GET_TS_INFO} + ifrd := ifr.withData(unsafe.Pointer(&value)) + + err = ioctlIfreqData(fd, SIOCETHTOOL, &ifrd) + return &value, err +} + +// IoctlGetHwTstamp retrieves the hardware timestamping configuration +// for the network device specified by ifname. +func IoctlGetHwTstamp(fd int, ifname string) (*HwTstampConfig, error) { + ifr, err := NewIfreq(ifname) + if err != nil { + return nil, err + } + + value := HwTstampConfig{} + ifrd := ifr.withData(unsafe.Pointer(&value)) + + err = ioctlIfreqData(fd, SIOCGHWTSTAMP, &ifrd) + return &value, err +} + +// IoctlSetHwTstamp updates the hardware timestamping configuration for +// the network device specified by ifname. +func IoctlSetHwTstamp(fd int, ifname string, cfg *HwTstampConfig) error { + ifr, err := NewIfreq(ifname) + if err != nil { + return err + } + ifrd := ifr.withData(unsafe.Pointer(cfg)) + return ioctlIfreqData(fd, SIOCSHWTSTAMP, &ifrd) +} + +// FdToClockID derives the clock ID from the file descriptor number +// - see clock_gettime(3), FD_TO_CLOCKID macros. The resulting ID is +// suitable for system calls like ClockGettime. +func FdToClockID(fd int) int32 { return int32((int(^fd) << 3) | 3) } + +// IoctlPtpClockGetcaps returns the description of a given PTP device. +func IoctlPtpClockGetcaps(fd int) (*PtpClockCaps, error) { + var value PtpClockCaps + err := ioctlPtr(fd, PTP_CLOCK_GETCAPS2, unsafe.Pointer(&value)) + return &value, err +} + +// IoctlPtpSysOffsetPrecise returns a description of the clock +// offset compared to the system clock. +func IoctlPtpSysOffsetPrecise(fd int) (*PtpSysOffsetPrecise, error) { + var value PtpSysOffsetPrecise + err := ioctlPtr(fd, PTP_SYS_OFFSET_PRECISE2, unsafe.Pointer(&value)) + return &value, err +} + +// IoctlPtpSysOffsetExtended returns an extended description of the +// clock offset compared to the system clock. The samples parameter +// specifies the desired number of measurements. +func IoctlPtpSysOffsetExtended(fd int, samples uint) (*PtpSysOffsetExtended, error) { + value := PtpSysOffsetExtended{Samples: uint32(samples)} + err := ioctlPtr(fd, PTP_SYS_OFFSET_EXTENDED2, unsafe.Pointer(&value)) + return &value, err +} + +// IoctlPtpPinGetfunc returns the configuration of the specified +// I/O pin on given PTP device. +func IoctlPtpPinGetfunc(fd int, index uint) (*PtpPinDesc, error) { + value := PtpPinDesc{Index: uint32(index)} + err := ioctlPtr(fd, PTP_PIN_GETFUNC2, unsafe.Pointer(&value)) + return &value, err +} + +// IoctlPtpPinSetfunc updates configuration of the specified PTP +// I/O pin. +func IoctlPtpPinSetfunc(fd int, pd *PtpPinDesc) error { + return ioctlPtr(fd, PTP_PIN_SETFUNC2, unsafe.Pointer(pd)) +} + +// IoctlPtpPeroutRequest configures the periodic output mode of the +// PTP I/O pins. +func IoctlPtpPeroutRequest(fd int, r *PtpPeroutRequest) error { + return ioctlPtr(fd, PTP_PEROUT_REQUEST2, unsafe.Pointer(r)) +} + +// IoctlPtpExttsRequest configures the external timestamping mode +// of the PTP I/O pins. +func IoctlPtpExttsRequest(fd int, r *PtpExttsRequest) error { + return ioctlPtr(fd, PTP_EXTTS_REQUEST2, unsafe.Pointer(r)) +} + // IoctlGetWatchdogInfo fetches information about a watchdog device from the // Linux watchdog API. For more information, see: // https://www.kernel.org/doc/html/latest/watchdog/watchdog-api.html. diff --git a/vendor/golang.org/x/sys/unix/mkerrors.sh b/vendor/golang.org/x/sys/unix/mkerrors.sh index e14b766a32c..6ab02b6c312 100644 --- a/vendor/golang.org/x/sys/unix/mkerrors.sh +++ b/vendor/golang.org/x/sys/unix/mkerrors.sh @@ -158,6 +158,16 @@ includes_Linux=' #endif #define _GNU_SOURCE +// See the description in unix/linux/types.go +#if defined(__ARM_EABI__) || \ + (defined(__mips__) && (_MIPS_SIM == _ABIO32)) || \ + (defined(__powerpc__) && (!defined(__powerpc64__))) +# ifdef _TIME_BITS +# undef _TIME_BITS +# endif +# define _TIME_BITS 32 +#endif + // is broken on powerpc64, as it fails to include definitions of // these structures. We just include them copied from . #if defined(__powerpc__) @@ -256,6 +266,7 @@ struct ltchars { #include #include #include +#include #include #include #include @@ -527,6 +538,7 @@ ccflags="$@" $2 ~ /^(AF|SOCK|SO|SOL|IPPROTO|IP|IPV6|TCP|MCAST|EVFILT|NOTE|SHUT|PROT|MAP|MREMAP|MFD|T?PACKET|MSG|SCM|MCL|DT|MADV|PR|LOCAL|TCPOPT|UDP)_/ || $2 ~ /^NFC_(GENL|PROTO|COMM|RF|SE|DIRECTION|LLCP|SOCKPROTO)_/ || $2 ~ /^NFC_.*_(MAX)?SIZE$/ || + $2 ~ /^PTP_/ || $2 ~ /^RAW_PAYLOAD_/ || $2 ~ /^[US]F_/ || $2 ~ /^TP_STATUS_/ || @@ -656,7 +668,7 @@ errors=$( signals=$( echo '#include ' | $CC -x c - -E -dM $ccflags | awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' | - grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | + grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | sort ) @@ -666,7 +678,7 @@ echo '#include ' | $CC -x c - -E -dM $ccflags | sort >_error.grep echo '#include ' | $CC -x c - -E -dM $ccflags | awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | - grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | + grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | sort >_signal.grep echo '// mkerrors.sh' "$@" diff --git a/vendor/golang.org/x/sys/unix/syscall_aix.go b/vendor/golang.org/x/sys/unix/syscall_aix.go index 67ce6cef2d5..6f15ba1eaff 100644 --- a/vendor/golang.org/x/sys/unix/syscall_aix.go +++ b/vendor/golang.org/x/sys/unix/syscall_aix.go @@ -360,7 +360,7 @@ func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, var status _C_int var r Pid_t err = ERESTART - // AIX wait4 may return with ERESTART errno, while the processus is still + // AIX wait4 may return with ERESTART errno, while the process is still // active. for err == ERESTART { r, err = wait4(Pid_t(pid), &status, options, rusage) diff --git a/vendor/golang.org/x/sys/unix/syscall_linux.go b/vendor/golang.org/x/sys/unix/syscall_linux.go index 3f1d3d4cb25..230a94549a7 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux.go @@ -1295,6 +1295,48 @@ func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) { return &value, err } +// GetsockoptTCPCCVegasInfo returns algorithm specific congestion control information for a socket using the "vegas" +// algorithm. +// +// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option: +// +// algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION) +func GetsockoptTCPCCVegasInfo(fd, level, opt int) (*TCPVegasInfo, error) { + var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment + vallen := _Socklen(SizeofTCPCCInfo) + err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen) + out := (*TCPVegasInfo)(unsafe.Pointer(&value[0])) + return out, err +} + +// GetsockoptTCPCCDCTCPInfo returns algorithm specific congestion control information for a socket using the "dctp" +// algorithm. +// +// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option: +// +// algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION) +func GetsockoptTCPCCDCTCPInfo(fd, level, opt int) (*TCPDCTCPInfo, error) { + var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment + vallen := _Socklen(SizeofTCPCCInfo) + err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen) + out := (*TCPDCTCPInfo)(unsafe.Pointer(&value[0])) + return out, err +} + +// GetsockoptTCPCCBBRInfo returns algorithm specific congestion control information for a socket using the "bbr" +// algorithm. +// +// The socket's congestion control algorighm can be retrieved via [GetsockoptString] with the [TCP_CONGESTION] option: +// +// algo, err := unix.GetsockoptString(fd, unix.IPPROTO_TCP, unix.TCP_CONGESTION) +func GetsockoptTCPCCBBRInfo(fd, level, opt int) (*TCPBBRInfo, error) { + var value [SizeofTCPCCInfo / 4]uint32 // ensure proper alignment + vallen := _Socklen(SizeofTCPCCInfo) + err := getsockopt(fd, level, opt, unsafe.Pointer(&value[0]), &vallen) + out := (*TCPBBRInfo)(unsafe.Pointer(&value[0])) + return out, err +} + // GetsockoptString returns the string value of the socket option opt for the // socket associated with fd at the given socket level. func GetsockoptString(fd, level, opt int) (string, error) { @@ -1818,6 +1860,7 @@ func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err e //sys ClockAdjtime(clockid int32, buf *Timex) (state int, err error) //sys ClockGetres(clockid int32, res *Timespec) (err error) //sys ClockGettime(clockid int32, time *Timespec) (err error) +//sys ClockSettime(clockid int32, time *Timespec) (err error) //sys ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error) //sys Close(fd int) (err error) //sys CloseRange(first uint, last uint, flags uint) (err error) @@ -1959,7 +2002,26 @@ func Getpgrp() (pid int) { //sysnb Getpid() (pid int) //sysnb Getppid() (ppid int) //sys Getpriority(which int, who int) (prio int, err error) -//sys Getrandom(buf []byte, flags int) (n int, err error) + +func Getrandom(buf []byte, flags int) (n int, err error) { + vdsoRet, supported := vgetrandom(buf, uint32(flags)) + if supported { + if vdsoRet < 0 { + return 0, errnoErr(syscall.Errno(-vdsoRet)) + } + return vdsoRet, nil + } + var p *byte + if len(buf) > 0 { + p = &buf[0] + } + r, _, e := Syscall(SYS_GETRANDOM, uintptr(unsafe.Pointer(p)), uintptr(len(buf)), uintptr(flags)) + if e != 0 { + return 0, errnoErr(e) + } + return int(r), nil +} + //sysnb Getrusage(who int, rusage *Rusage) (err error) //sysnb Getsid(pid int) (sid int, err error) //sysnb Gettid() (tid int) diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go b/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go index cf2ee6c75ef..745e5c7e6c0 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go @@ -182,3 +182,5 @@ func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error } return kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags) } + +const SYS_FSTATAT = SYS_NEWFSTATAT diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go index 3d0e98451f8..dd2262a4079 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go @@ -214,3 +214,5 @@ func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int) error } return kexecFileLoad(kernelFd, initrdFd, cmdlineLen, cmdline, flags) } + +const SYS_FSTATAT = SYS_NEWFSTATAT diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go b/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go index 6f5a288944d..8cf3670bda6 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go @@ -187,3 +187,5 @@ func RISCVHWProbe(pairs []RISCVHWProbePairs, set *CPUSet, flags uint) (err error } return riscvHWProbe(pairs, setSize, set, flags) } + +const SYS_FSTATAT = SYS_NEWFSTATAT diff --git a/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go b/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go index 312ae6ac1d2..7bf5c04bb0a 100644 --- a/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +++ b/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go @@ -768,6 +768,15 @@ func Munmap(b []byte) (err error) { return mapper.Munmap(b) } +func MmapPtr(fd int, offset int64, addr unsafe.Pointer, length uintptr, prot int, flags int) (ret unsafe.Pointer, err error) { + xaddr, err := mapper.mmap(uintptr(addr), length, prot, flags, fd, offset) + return unsafe.Pointer(xaddr), err +} + +func MunmapPtr(addr unsafe.Pointer, length uintptr) (err error) { + return mapper.munmap(uintptr(addr), length) +} + //sys Gethostname(buf []byte) (err error) = SYS___GETHOSTNAME_A //sysnb Getgid() (gid int) //sysnb Getpid() (pid int) @@ -816,10 +825,10 @@ func Lstat(path string, stat *Stat_t) (err error) { // for checking symlinks begins with $VERSION/ $SYSNAME/ $SYSSYMR/ $SYSSYMA/ func isSpecialPath(path []byte) (v bool) { var special = [4][8]byte{ - [8]byte{'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'}, - [8]byte{'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'}, - [8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'}, - [8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}} + {'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'}, + {'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'}, + {'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'}, + {'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}} var i, j int for i = 0; i < len(special); i++ { @@ -3115,3 +3124,90 @@ func legacy_Mkfifoat(dirfd int, path string, mode uint32) (err error) { //sys Posix_openpt(oflag int) (fd int, err error) = SYS_POSIX_OPENPT //sys Grantpt(fildes int) (rc int, err error) = SYS_GRANTPT //sys Unlockpt(fildes int) (rc int, err error) = SYS_UNLOCKPT + +func fcntlAsIs(fd uintptr, cmd int, arg uintptr) (val int, err error) { + runtime.EnterSyscall() + r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_FCNTL<<4, uintptr(fd), uintptr(cmd), arg) + runtime.ExitSyscall() + val = int(r0) + if int64(r0) == -1 { + err = errnoErr2(e1, e2) + } + return +} + +func Fcntl(fd uintptr, cmd int, op interface{}) (ret int, err error) { + switch op.(type) { + case *Flock_t: + err = FcntlFlock(fd, cmd, op.(*Flock_t)) + if err != nil { + ret = -1 + } + return + case int: + return FcntlInt(fd, cmd, op.(int)) + case *F_cnvrt: + return fcntlAsIs(fd, cmd, uintptr(unsafe.Pointer(op.(*F_cnvrt)))) + case unsafe.Pointer: + return fcntlAsIs(fd, cmd, uintptr(op.(unsafe.Pointer))) + default: + return -1, EINVAL + } + return +} + +func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) { + if raceenabled { + raceReleaseMerge(unsafe.Pointer(&ioSync)) + } + return sendfile(outfd, infd, offset, count) +} + +func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) { + // TODO: use LE call instead if the call is implemented + originalOffset, err := Seek(infd, 0, SEEK_CUR) + if err != nil { + return -1, err + } + //start reading data from in_fd + if offset != nil { + _, err := Seek(infd, *offset, SEEK_SET) + if err != nil { + return -1, err + } + } + + buf := make([]byte, count) + readBuf := make([]byte, 0) + var n int = 0 + for i := 0; i < count; i += n { + n, err := Read(infd, buf) + if n == 0 { + if err != nil { + return -1, err + } else { // EOF + break + } + } + readBuf = append(readBuf, buf...) + buf = buf[0:0] + } + + n2, err := Write(outfd, readBuf) + if err != nil { + return -1, err + } + + //When sendfile() returns, this variable will be set to the + // offset of the byte following the last byte that was read. + if offset != nil { + *offset = *offset + int64(n) + // If offset is not NULL, then sendfile() does not modify the file + // offset of in_fd + _, err := Seek(infd, originalOffset, SEEK_SET) + if err != nil { + return -1, err + } + } + return n2, nil +} diff --git a/vendor/golang.org/x/sys/unix/vgetrandom_linux.go b/vendor/golang.org/x/sys/unix/vgetrandom_linux.go new file mode 100644 index 00000000000..07ac8e09d1b --- /dev/null +++ b/vendor/golang.org/x/sys/unix/vgetrandom_linux.go @@ -0,0 +1,13 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build linux && go1.24 + +package unix + +import _ "unsafe" + +//go:linkname vgetrandom runtime.vgetrandom +//go:noescape +func vgetrandom(p []byte, flags uint32) (ret int, supported bool) diff --git a/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go b/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go new file mode 100644 index 00000000000..297e97bce92 --- /dev/null +++ b/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go @@ -0,0 +1,11 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build !linux || !go1.24 + +package unix + +func vgetrandom(p []byte, flags uint32) (ret int, supported bool) { + return -1, false +} diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux.go b/vendor/golang.org/x/sys/unix/zerrors_linux.go index 01a70b24638..6ebc48b3fec 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux.go @@ -321,6 +321,9 @@ const ( AUDIT_INTEGRITY_STATUS = 0x70a AUDIT_IPC = 0x517 AUDIT_IPC_SET_PERM = 0x51f + AUDIT_IPE_ACCESS = 0x58c + AUDIT_IPE_CONFIG_CHANGE = 0x58d + AUDIT_IPE_POLICY_LOAD = 0x58e AUDIT_KERNEL = 0x7d0 AUDIT_KERNEL_OTHER = 0x524 AUDIT_KERN_MODULE = 0x532 @@ -489,12 +492,14 @@ const ( BPF_F_ID = 0x20 BPF_F_NETFILTER_IP_DEFRAG = 0x1 BPF_F_QUERY_EFFECTIVE = 0x1 + BPF_F_REDIRECT_FLAGS = 0x19 BPF_F_REPLACE = 0x4 BPF_F_SLEEPABLE = 0x10 BPF_F_STRICT_ALIGNMENT = 0x1 BPF_F_TEST_REG_INVARIANTS = 0x80 BPF_F_TEST_RND_HI32 = 0x4 BPF_F_TEST_RUN_ON_CPU = 0x1 + BPF_F_TEST_SKB_CHECKSUM_COMPLETE = 0x4 BPF_F_TEST_STATE_FREQ = 0x8 BPF_F_TEST_XDP_LIVE_FRAMES = 0x2 BPF_F_XDP_DEV_BOUND_ONLY = 0x40 @@ -1165,6 +1170,7 @@ const ( EXTA = 0xe EXTB = 0xf F2FS_SUPER_MAGIC = 0xf2f52010 + FALLOC_FL_ALLOCATE_RANGE = 0x0 FALLOC_FL_COLLAPSE_RANGE = 0x8 FALLOC_FL_INSERT_RANGE = 0x20 FALLOC_FL_KEEP_SIZE = 0x1 @@ -1798,6 +1804,8 @@ const ( LANDLOCK_ACCESS_NET_BIND_TCP = 0x1 LANDLOCK_ACCESS_NET_CONNECT_TCP = 0x2 LANDLOCK_CREATE_RULESET_VERSION = 0x1 + LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET = 0x1 + LANDLOCK_SCOPE_SIGNAL = 0x2 LINUX_REBOOT_CMD_CAD_OFF = 0x0 LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef LINUX_REBOOT_CMD_HALT = 0xcdef0123 @@ -1922,6 +1930,8 @@ const ( MNT_EXPIRE = 0x4 MNT_FORCE = 0x1 MNT_ID_REQ_SIZE_VER0 = 0x18 + MNT_ID_REQ_SIZE_VER1 = 0x20 + MNT_NS_INFO_SIZE_VER0 = 0x10 MODULE_INIT_COMPRESSED_FILE = 0x4 MODULE_INIT_IGNORE_MODVERSIONS = 0x1 MODULE_INIT_IGNORE_VERMAGIC = 0x2 @@ -2187,7 +2197,7 @@ const ( NFT_REG_SIZE = 0x10 NFT_REJECT_ICMPX_MAX = 0x3 NFT_RT_MAX = 0x4 - NFT_SECMARK_CTX_MAXLEN = 0x100 + NFT_SECMARK_CTX_MAXLEN = 0x1000 NFT_SET_MAXNAMELEN = 0x100 NFT_SOCKET_MAX = 0x3 NFT_TABLE_F_MASK = 0x7 @@ -2356,9 +2366,11 @@ const ( PERF_MEM_LVLNUM_IO = 0xa PERF_MEM_LVLNUM_L1 = 0x1 PERF_MEM_LVLNUM_L2 = 0x2 + PERF_MEM_LVLNUM_L2_MHB = 0x5 PERF_MEM_LVLNUM_L3 = 0x3 PERF_MEM_LVLNUM_L4 = 0x4 PERF_MEM_LVLNUM_LFB = 0xc + PERF_MEM_LVLNUM_MSC = 0x6 PERF_MEM_LVLNUM_NA = 0xf PERF_MEM_LVLNUM_PMEM = 0xe PERF_MEM_LVLNUM_RAM = 0xd @@ -2431,6 +2443,7 @@ const ( PRIO_PGRP = 0x1 PRIO_PROCESS = 0x0 PRIO_USER = 0x2 + PROCFS_IOCTL_MAGIC = 'f' PROC_SUPER_MAGIC = 0x9fa0 PROT_EXEC = 0x4 PROT_GROWSDOWN = 0x1000000 @@ -2620,6 +2633,28 @@ const ( PR_UNALIGN_NOPRINT = 0x1 PR_UNALIGN_SIGBUS = 0x2 PSTOREFS_MAGIC = 0x6165676c + PTP_CLK_MAGIC = '=' + PTP_ENABLE_FEATURE = 0x1 + PTP_EXTTS_EDGES = 0x6 + PTP_EXTTS_EVENT_VALID = 0x1 + PTP_EXTTS_V1_VALID_FLAGS = 0x7 + PTP_EXTTS_VALID_FLAGS = 0x1f + PTP_EXT_OFFSET = 0x10 + PTP_FALLING_EDGE = 0x4 + PTP_MAX_SAMPLES = 0x19 + PTP_PEROUT_DUTY_CYCLE = 0x2 + PTP_PEROUT_ONE_SHOT = 0x1 + PTP_PEROUT_PHASE = 0x4 + PTP_PEROUT_V1_VALID_FLAGS = 0x0 + PTP_PEROUT_VALID_FLAGS = 0x7 + PTP_PIN_GETFUNC = 0xc0603d06 + PTP_PIN_GETFUNC2 = 0xc0603d0f + PTP_RISING_EDGE = 0x2 + PTP_STRICT_FLAGS = 0x8 + PTP_SYS_OFFSET_EXTENDED = 0xc4c03d09 + PTP_SYS_OFFSET_EXTENDED2 = 0xc4c03d12 + PTP_SYS_OFFSET_PRECISE = 0xc0403d08 + PTP_SYS_OFFSET_PRECISE2 = 0xc0403d11 PTRACE_ATTACH = 0x10 PTRACE_CONT = 0x7 PTRACE_DETACH = 0x11 @@ -2933,15 +2968,17 @@ const ( RUSAGE_SELF = 0x0 RUSAGE_THREAD = 0x1 RWF_APPEND = 0x10 + RWF_ATOMIC = 0x40 RWF_DSYNC = 0x2 RWF_HIPRI = 0x1 RWF_NOAPPEND = 0x20 RWF_NOWAIT = 0x8 - RWF_SUPPORTED = 0x3f + RWF_SUPPORTED = 0x7f RWF_SYNC = 0x4 RWF_WRITE_LIFE_NOT_SET = 0x0 SCHED_BATCH = 0x3 SCHED_DEADLINE = 0x6 + SCHED_EXT = 0x7 SCHED_FIFO = 0x1 SCHED_FLAG_ALL = 0x7f SCHED_FLAG_DL_OVERRUN = 0x4 @@ -3210,6 +3247,7 @@ const ( STATX_ATTR_MOUNT_ROOT = 0x2000 STATX_ATTR_NODUMP = 0x40 STATX_ATTR_VERITY = 0x100000 + STATX_ATTR_WRITE_ATOMIC = 0x400000 STATX_BASIC_STATS = 0x7ff STATX_BLOCKS = 0x400 STATX_BTIME = 0x800 @@ -3226,6 +3264,7 @@ const ( STATX_SUBVOL = 0x8000 STATX_TYPE = 0x1 STATX_UID = 0x8 + STATX_WRITE_ATOMIC = 0x10000 STATX__RESERVED = 0x80000000 SYNC_FILE_RANGE_WAIT_AFTER = 0x4 SYNC_FILE_RANGE_WAIT_BEFORE = 0x1 @@ -3624,6 +3663,7 @@ const ( XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000 XDP_UMEM_PGOFF_FILL_RING = 0x100000000 XDP_UMEM_REG = 0x4 + XDP_UMEM_TX_METADATA_LEN = 0x4 XDP_UMEM_TX_SW_CSUM = 0x2 XDP_UMEM_UNALIGNED_CHUNK_FLAG = 0x1 XDP_USE_NEED_WAKEUP = 0x8 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go index 684a5168dac..c0d45e32050 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go @@ -109,6 +109,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -153,9 +154,14 @@ const ( NFDBITS = 0x20 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -232,6 +238,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_GETFPREGS = 0xe PTRACE_GETFPXREGS = 0x12 PTRACE_GET_THREAD_AREA = 0x19 @@ -278,6 +298,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -316,6 +338,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go index 61d74b592d6..c731d24f025 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go @@ -109,6 +109,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -153,9 +154,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -232,6 +238,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_ARCH_PRCTL = 0x1e PTRACE_GETFPREGS = 0xe PTRACE_GETFPXREGS = 0x12 @@ -279,6 +299,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -317,6 +339,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go index a28c9e3e893..680018a4a7c 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x20 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_GETCRUNCHREGS = 0x19 PTRACE_GETFDPIC = 0x1f PTRACE_GETFDPIC_EXEC = 0x0 @@ -284,6 +304,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -322,6 +344,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go index ab5d1fe8ead..a63909f308d 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go @@ -112,6 +112,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -154,9 +155,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -200,6 +206,7 @@ const ( PERF_EVENT_IOC_SET_BPF = 0x40042408 PERF_EVENT_IOC_SET_FILTER = 0x40082406 PERF_EVENT_IOC_SET_OUTPUT = 0x2405 + POE_MAGIC = 0x504f4530 PPPIOCATTACH = 0x4004743d PPPIOCATTCHAN = 0x40047438 PPPIOCBRIDGECHAN = 0x40047435 @@ -235,6 +242,20 @@ const ( PROT_BTI = 0x10 PROT_MTE = 0x20 PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_PEEKMTETAGS = 0x21 PTRACE_POKEMTETAGS = 0x22 PTRACE_SYSEMU = 0x1f @@ -275,6 +296,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -313,6 +336,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go index c523090e7c1..9b0a2573fe3 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go @@ -109,6 +109,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -154,9 +155,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -233,6 +239,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_SYSEMU = 0x1f PTRACE_SYSEMU_SINGLESTEP = 0x20 RLIMIT_AS = 0x9 @@ -271,6 +291,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -309,6 +331,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go index 01e6ea7804b..958e6e0645a 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x100 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x20 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x20007434 PPPIOCXFERUNIT = 0x2000744e PR_SET_PTRACER_ANY = 0xffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETFPREGS = 0xe PTRACE_GET_THREAD_AREA = 0x19 PTRACE_GET_THREAD_AREA_3264 = 0xc4 @@ -277,6 +297,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -315,6 +337,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x1029 SO_DONTROUTE = 0x10 SO_ERROR = 0x1007 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go index 7aa610b1e71..50c7f25bd16 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x100 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x20007434 PPPIOCXFERUNIT = 0x2000744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETFPREGS = 0xe PTRACE_GET_THREAD_AREA = 0x19 PTRACE_GET_THREAD_AREA_3264 = 0xc4 @@ -277,6 +297,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -315,6 +337,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x1029 SO_DONTROUTE = 0x10 SO_ERROR = 0x1007 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go index 92af771b44a..ced21d66d95 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x100 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x20007434 PPPIOCXFERUNIT = 0x2000744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETFPREGS = 0xe PTRACE_GET_THREAD_AREA = 0x19 PTRACE_GET_THREAD_AREA_3264 = 0xc4 @@ -277,6 +297,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -315,6 +337,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x1029 SO_DONTROUTE = 0x10 SO_ERROR = 0x1007 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go index b27ef5e6f11..226c0441902 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x100 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x20 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x20007434 PPPIOCXFERUNIT = 0x2000744e PR_SET_PTRACER_ANY = 0xffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETFPREGS = 0xe PTRACE_GET_THREAD_AREA = 0x19 PTRACE_GET_THREAD_AREA_3264 = 0xc4 @@ -277,6 +297,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -315,6 +337,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x1029 SO_DONTROUTE = 0x10 SO_ERROR = 0x1007 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go index 237a2cefb3e..3122737cd46 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x4000 ICANON = 0x100 IEXTEN = 0x400 @@ -152,9 +153,14 @@ const ( NL3 = 0x300 NLDLY = 0x300 NOFLSH = 0x80000000 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x4 ONLCR = 0x2 @@ -232,6 +238,20 @@ const ( PPPIOCXFERUNIT = 0x2000744e PROT_SAO = 0x10 PR_SET_PTRACER_ANY = 0xffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETEVRREGS = 0x14 PTRACE_GETFPREGS = 0xe PTRACE_GETREGS64 = 0x16 @@ -332,6 +352,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -370,6 +392,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go index 4a5c555a36e..eb5d3467edf 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x4000 ICANON = 0x100 IEXTEN = 0x400 @@ -152,9 +153,14 @@ const ( NL3 = 0x300 NLDLY = 0x300 NOFLSH = 0x80000000 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x4 ONLCR = 0x2 @@ -232,6 +238,20 @@ const ( PPPIOCXFERUNIT = 0x2000744e PROT_SAO = 0x10 PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETEVRREGS = 0x14 PTRACE_GETFPREGS = 0xe PTRACE_GETREGS64 = 0x16 @@ -336,6 +356,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -374,6 +396,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go index a02fb49a5f8..e921ebc60b7 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x4000 ICANON = 0x100 IEXTEN = 0x400 @@ -152,9 +153,14 @@ const ( NL3 = 0x300 NLDLY = 0x300 NOFLSH = 0x80000000 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x4 ONLCR = 0x2 @@ -232,6 +238,20 @@ const ( PPPIOCXFERUNIT = 0x2000744e PROT_SAO = 0x10 PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETEVRREGS = 0x14 PTRACE_GETFPREGS = 0xe PTRACE_GETREGS64 = 0x16 @@ -336,6 +356,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -374,6 +396,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go index e26a7c61b2b..38ba81c55c1 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_GETFDPIC = 0x21 PTRACE_GETFDPIC_EXEC = 0x0 PTRACE_GETFDPIC_INTERP = 0x1 @@ -268,6 +288,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -306,6 +328,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go index c48f7c2103b..71f0400977b 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go @@ -108,6 +108,7 @@ const ( HIDIOCGRAWINFO = 0x80084803 HIDIOCGRDESC = 0x90044802 HIDIOCGRDESCSIZE = 0x80044801 + HIDIOCREVOKE = 0x4004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -150,9 +151,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x8008b705 NS_GET_NSTYPE = 0xb703 NS_GET_OWNER_UID = 0xb704 NS_GET_PARENT = 0xb702 + NS_GET_PID_FROM_PIDNS = 0x8004b706 + NS_GET_PID_IN_PIDNS = 0x8004b708 + NS_GET_TGID_FROM_PIDNS = 0x8004b707 + NS_GET_TGID_IN_PIDNS = 0x8004b709 NS_GET_USERNS = 0xb701 OLCUC = 0x2 ONLCR = 0x4 @@ -229,6 +235,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x7434 PPPIOCXFERUNIT = 0x744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x80503d01 + PTP_CLOCK_GETCAPS2 = 0x80503d0a + PTP_ENABLE_PPS = 0x40043d04 + PTP_ENABLE_PPS2 = 0x40043d0d + PTP_EXTTS_REQUEST = 0x40103d02 + PTP_EXTTS_REQUEST2 = 0x40103d0b + PTP_MASK_CLEAR_ALL = 0x3d13 + PTP_MASK_EN_SINGLE = 0x40043d14 + PTP_PEROUT_REQUEST = 0x40383d03 + PTP_PEROUT_REQUEST2 = 0x40383d0c + PTP_PIN_SETFUNC = 0x40603d07 + PTP_PIN_SETFUNC2 = 0x40603d10 + PTP_SYS_OFFSET = 0x43403d05 + PTP_SYS_OFFSET2 = 0x43403d0e PTRACE_DISABLE_TE = 0x5010 PTRACE_ENABLE_TE = 0x5009 PTRACE_GET_LAST_BREAK = 0x5006 @@ -340,6 +360,8 @@ const ( RTC_WIE_ON = 0x700f RTC_WKALM_RD = 0x80287010 RTC_WKALM_SET = 0x4028700f + SCM_DEVMEM_DMABUF = 0x4f + SCM_DEVMEM_LINEAR = 0x4e SCM_TIMESTAMPING = 0x25 SCM_TIMESTAMPING_OPT_STATS = 0x36 SCM_TIMESTAMPING_PKTINFO = 0x3a @@ -378,6 +400,9 @@ const ( SO_CNX_ADVICE = 0x35 SO_COOKIE = 0x39 SO_DETACH_REUSEPORT_BPF = 0x44 + SO_DEVMEM_DMABUF = 0x4f + SO_DEVMEM_DONTNEED = 0x50 + SO_DEVMEM_LINEAR = 0x4e SO_DOMAIN = 0x27 SO_DONTROUTE = 0x5 SO_ERROR = 0x4 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go index ad4b9aace7b..c44a313322c 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go @@ -112,6 +112,7 @@ const ( HIDIOCGRAWINFO = 0x40084803 HIDIOCGRDESC = 0x50044802 HIDIOCGRDESCSIZE = 0x40044801 + HIDIOCREVOKE = 0x8004480d HUPCL = 0x400 ICANON = 0x2 IEXTEN = 0x8000 @@ -155,9 +156,14 @@ const ( NFDBITS = 0x40 NLDLY = 0x100 NOFLSH = 0x80 + NS_GET_MNTNS_ID = 0x4008b705 NS_GET_NSTYPE = 0x2000b703 NS_GET_OWNER_UID = 0x2000b704 NS_GET_PARENT = 0x2000b702 + NS_GET_PID_FROM_PIDNS = 0x4004b706 + NS_GET_PID_IN_PIDNS = 0x4004b708 + NS_GET_TGID_FROM_PIDNS = 0x4004b707 + NS_GET_TGID_IN_PIDNS = 0x4004b709 NS_GET_USERNS = 0x2000b701 OLCUC = 0x2 ONLCR = 0x4 @@ -234,6 +240,20 @@ const ( PPPIOCUNBRIDGECHAN = 0x20007434 PPPIOCXFERUNIT = 0x2000744e PR_SET_PTRACER_ANY = 0xffffffffffffffff + PTP_CLOCK_GETCAPS = 0x40503d01 + PTP_CLOCK_GETCAPS2 = 0x40503d0a + PTP_ENABLE_PPS = 0x80043d04 + PTP_ENABLE_PPS2 = 0x80043d0d + PTP_EXTTS_REQUEST = 0x80103d02 + PTP_EXTTS_REQUEST2 = 0x80103d0b + PTP_MASK_CLEAR_ALL = 0x20003d13 + PTP_MASK_EN_SINGLE = 0x80043d14 + PTP_PEROUT_REQUEST = 0x80383d03 + PTP_PEROUT_REQUEST2 = 0x80383d0c + PTP_PIN_SETFUNC = 0x80603d07 + PTP_PIN_SETFUNC2 = 0x80603d10 + PTP_SYS_OFFSET = 0x83403d05 + PTP_SYS_OFFSET2 = 0x83403d0e PTRACE_GETFPAREGS = 0x14 PTRACE_GETFPREGS = 0xe PTRACE_GETFPREGS64 = 0x19 @@ -331,6 +351,8 @@ const ( RTC_WIE_ON = 0x2000700f RTC_WKALM_RD = 0x40287010 RTC_WKALM_SET = 0x8028700f + SCM_DEVMEM_DMABUF = 0x58 + SCM_DEVMEM_LINEAR = 0x57 SCM_TIMESTAMPING = 0x23 SCM_TIMESTAMPING_OPT_STATS = 0x38 SCM_TIMESTAMPING_PKTINFO = 0x3c @@ -417,6 +439,9 @@ const ( SO_CNX_ADVICE = 0x37 SO_COOKIE = 0x3b SO_DETACH_REUSEPORT_BPF = 0x47 + SO_DEVMEM_DMABUF = 0x58 + SO_DEVMEM_DONTNEED = 0x59 + SO_DEVMEM_LINEAR = 0x57 SO_DOMAIN = 0x1029 SO_DONTROUTE = 0x10 SO_ERROR = 0x1007 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux.go b/vendor/golang.org/x/sys/unix/zsyscall_linux.go index 1bc1a5adb25..5cc1e8eb2f3 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_linux.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_linux.go @@ -592,6 +592,16 @@ func ClockGettime(clockid int32, time *Timespec) (err error) { // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func ClockSettime(clockid int32, time *Timespec) (err error) { + _, _, e1 := Syscall(SYS_CLOCK_SETTIME, uintptr(clockid), uintptr(unsafe.Pointer(time)), 0) + if e1 != 0 { + err = errnoErr(e1) + } + return +} + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT + func ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error) { _, _, e1 := Syscall6(SYS_CLOCK_NANOSLEEP, uintptr(clockid), uintptr(flags), uintptr(unsafe.Pointer(request)), uintptr(unsafe.Pointer(remain)), 0, 0) if e1 != 0 { @@ -971,23 +981,6 @@ func Getpriority(which int, who int) (prio int, err error) { // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT -func Getrandom(buf []byte, flags int) (n int, err error) { - var _p0 unsafe.Pointer - if len(buf) > 0 { - _p0 = unsafe.Pointer(&buf[0]) - } else { - _p0 = unsafe.Pointer(&_zero) - } - r0, _, e1 := Syscall(SYS_GETRANDOM, uintptr(_p0), uintptr(len(buf)), uintptr(flags)) - n = int(r0) - if e1 != 0 { - err = errnoErr(e1) - } - return -} - -// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT - func Getrusage(who int, rusage *Rusage) (err error) { _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0) if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go index d3e38f681ab..f485dbf4565 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go @@ -341,6 +341,7 @@ const ( SYS_STATX = 332 SYS_IO_PGETEVENTS = 333 SYS_RSEQ = 334 + SYS_URETPROBE = 335 SYS_PIDFD_SEND_SIGNAL = 424 SYS_IO_URING_SETUP = 425 SYS_IO_URING_ENTER = 426 diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go index 6c778c23278..1893e2fe884 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go @@ -85,7 +85,7 @@ const ( SYS_SPLICE = 76 SYS_TEE = 77 SYS_READLINKAT = 78 - SYS_FSTATAT = 79 + SYS_NEWFSTATAT = 79 SYS_FSTAT = 80 SYS_SYNC = 81 SYS_FSYNC = 82 diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go index 37281cf51a8..16a4017da0a 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go @@ -84,6 +84,8 @@ const ( SYS_SPLICE = 76 SYS_TEE = 77 SYS_READLINKAT = 78 + SYS_NEWFSTATAT = 79 + SYS_FSTAT = 80 SYS_SYNC = 81 SYS_FSYNC = 82 SYS_FDATASYNC = 83 diff --git a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go index 9889f6a5591..a5459e766f5 100644 --- a/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go @@ -84,7 +84,7 @@ const ( SYS_SPLICE = 76 SYS_TEE = 77 SYS_READLINKAT = 78 - SYS_FSTATAT = 79 + SYS_NEWFSTATAT = 79 SYS_FSTAT = 80 SYS_SYNC = 81 SYS_FSYNC = 82 diff --git a/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go index d003c3d4378..17c53bd9b33 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +++ b/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go @@ -462,11 +462,14 @@ type FdSet struct { const ( SizeofIfMsghdr = 0x70 + SizeofIfMsghdr2 = 0xa0 SizeofIfData = 0x60 + SizeofIfData64 = 0x80 SizeofIfaMsghdr = 0x14 SizeofIfmaMsghdr = 0x10 SizeofIfmaMsghdr2 = 0x14 SizeofRtMsghdr = 0x5c + SizeofRtMsghdr2 = 0x5c SizeofRtMetrics = 0x38 ) @@ -480,6 +483,20 @@ type IfMsghdr struct { Data IfData } +type IfMsghdr2 struct { + Msglen uint16 + Version uint8 + Type uint8 + Addrs int32 + Flags int32 + Index uint16 + Snd_len int32 + Snd_maxlen int32 + Snd_drops int32 + Timer int32 + Data IfData64 +} + type IfData struct { Type uint8 Typelen uint8 @@ -512,6 +529,34 @@ type IfData struct { Reserved2 uint32 } +type IfData64 struct { + Type uint8 + Typelen uint8 + Physical uint8 + Addrlen uint8 + Hdrlen uint8 + Recvquota uint8 + Xmitquota uint8 + Unused1 uint8 + Mtu uint32 + Metric uint32 + Baudrate uint64 + Ipackets uint64 + Ierrors uint64 + Opackets uint64 + Oerrors uint64 + Collisions uint64 + Ibytes uint64 + Obytes uint64 + Imcasts uint64 + Omcasts uint64 + Iqdrops uint64 + Noproto uint64 + Recvtiming uint32 + Xmittiming uint32 + Lastchange Timeval32 +} + type IfaMsghdr struct { Msglen uint16 Version uint8 @@ -557,6 +602,21 @@ type RtMsghdr struct { Rmx RtMetrics } +type RtMsghdr2 struct { + Msglen uint16 + Version uint8 + Type uint8 + Index uint16 + Flags int32 + Addrs int32 + Refcnt int32 + Parentflags int32 + Reserved int32 + Use int32 + Inits uint32 + Rmx RtMetrics +} + type RtMetrics struct { Locks uint32 Mtu uint32 diff --git a/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go index 0d45a941aae..2392226a743 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +++ b/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go @@ -462,11 +462,14 @@ type FdSet struct { const ( SizeofIfMsghdr = 0x70 + SizeofIfMsghdr2 = 0xa0 SizeofIfData = 0x60 + SizeofIfData64 = 0x80 SizeofIfaMsghdr = 0x14 SizeofIfmaMsghdr = 0x10 SizeofIfmaMsghdr2 = 0x14 SizeofRtMsghdr = 0x5c + SizeofRtMsghdr2 = 0x5c SizeofRtMetrics = 0x38 ) @@ -480,6 +483,20 @@ type IfMsghdr struct { Data IfData } +type IfMsghdr2 struct { + Msglen uint16 + Version uint8 + Type uint8 + Addrs int32 + Flags int32 + Index uint16 + Snd_len int32 + Snd_maxlen int32 + Snd_drops int32 + Timer int32 + Data IfData64 +} + type IfData struct { Type uint8 Typelen uint8 @@ -512,6 +529,34 @@ type IfData struct { Reserved2 uint32 } +type IfData64 struct { + Type uint8 + Typelen uint8 + Physical uint8 + Addrlen uint8 + Hdrlen uint8 + Recvquota uint8 + Xmitquota uint8 + Unused1 uint8 + Mtu uint32 + Metric uint32 + Baudrate uint64 + Ipackets uint64 + Ierrors uint64 + Opackets uint64 + Oerrors uint64 + Collisions uint64 + Ibytes uint64 + Obytes uint64 + Imcasts uint64 + Omcasts uint64 + Iqdrops uint64 + Noproto uint64 + Recvtiming uint32 + Xmittiming uint32 + Lastchange Timeval32 +} + type IfaMsghdr struct { Msglen uint16 Version uint8 @@ -557,6 +602,21 @@ type RtMsghdr struct { Rmx RtMetrics } +type RtMsghdr2 struct { + Msglen uint16 + Version uint8 + Type uint8 + Index uint16 + Flags int32 + Addrs int32 + Refcnt int32 + Parentflags int32 + Reserved int32 + Use int32 + Inits uint32 + Rmx RtMetrics +} + type RtMetrics struct { Locks uint32 Mtu uint32 diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go index 9f2550dc312..5537148dcbb 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_linux.go +++ b/vendor/golang.org/x/sys/unix/ztypes_linux.go @@ -87,31 +87,35 @@ type StatxTimestamp struct { } type Statx_t struct { - Mask uint32 - Blksize uint32 - Attributes uint64 - Nlink uint32 - Uid uint32 - Gid uint32 - Mode uint16 - _ [1]uint16 - Ino uint64 - Size uint64 - Blocks uint64 - Attributes_mask uint64 - Atime StatxTimestamp - Btime StatxTimestamp - Ctime StatxTimestamp - Mtime StatxTimestamp - Rdev_major uint32 - Rdev_minor uint32 - Dev_major uint32 - Dev_minor uint32 - Mnt_id uint64 - Dio_mem_align uint32 - Dio_offset_align uint32 - Subvol uint64 - _ [11]uint64 + Mask uint32 + Blksize uint32 + Attributes uint64 + Nlink uint32 + Uid uint32 + Gid uint32 + Mode uint16 + _ [1]uint16 + Ino uint64 + Size uint64 + Blocks uint64 + Attributes_mask uint64 + Atime StatxTimestamp + Btime StatxTimestamp + Ctime StatxTimestamp + Mtime StatxTimestamp + Rdev_major uint32 + Rdev_minor uint32 + Dev_major uint32 + Dev_minor uint32 + Mnt_id uint64 + Dio_mem_align uint32 + Dio_offset_align uint32 + Subvol uint64 + Atomic_write_unit_min uint32 + Atomic_write_unit_max uint32 + Atomic_write_segments_max uint32 + _ [1]uint32 + _ [9]uint64 } type Fsid struct { @@ -516,6 +520,29 @@ type TCPInfo struct { Total_rto_time uint32 } +type TCPVegasInfo struct { + Enabled uint32 + Rttcnt uint32 + Rtt uint32 + Minrtt uint32 +} + +type TCPDCTCPInfo struct { + Enabled uint16 + Ce_state uint16 + Alpha uint32 + Ab_ecn uint32 + Ab_tot uint32 +} + +type TCPBBRInfo struct { + Bw_lo uint32 + Bw_hi uint32 + Min_rtt uint32 + Pacing_gain uint32 + Cwnd_gain uint32 +} + type CanFilter struct { Id uint32 Mask uint32 @@ -557,6 +584,7 @@ const ( SizeofICMPv6Filter = 0x20 SizeofUcred = 0xc SizeofTCPInfo = 0xf8 + SizeofTCPCCInfo = 0x14 SizeofCanFilter = 0x8 SizeofTCPRepairOpt = 0x8 ) @@ -1724,12 +1752,6 @@ const ( IFLA_IPVLAN_UNSPEC = 0x0 IFLA_IPVLAN_MODE = 0x1 IFLA_IPVLAN_FLAGS = 0x2 - NETKIT_NEXT = -0x1 - NETKIT_PASS = 0x0 - NETKIT_DROP = 0x2 - NETKIT_REDIRECT = 0x7 - NETKIT_L2 = 0x0 - NETKIT_L3 = 0x1 IFLA_NETKIT_UNSPEC = 0x0 IFLA_NETKIT_PEER_INFO = 0x1 IFLA_NETKIT_PRIMARY = 0x2 @@ -1768,6 +1790,7 @@ const ( IFLA_VXLAN_DF = 0x1d IFLA_VXLAN_VNIFILTER = 0x1e IFLA_VXLAN_LOCALBYPASS = 0x1f + IFLA_VXLAN_LABEL_POLICY = 0x20 IFLA_GENEVE_UNSPEC = 0x0 IFLA_GENEVE_ID = 0x1 IFLA_GENEVE_REMOTE = 0x2 @@ -1797,6 +1820,8 @@ const ( IFLA_GTP_ROLE = 0x4 IFLA_GTP_CREATE_SOCKETS = 0x5 IFLA_GTP_RESTART_COUNT = 0x6 + IFLA_GTP_LOCAL = 0x7 + IFLA_GTP_LOCAL6 = 0x8 IFLA_BOND_UNSPEC = 0x0 IFLA_BOND_MODE = 0x1 IFLA_BOND_ACTIVE_SLAVE = 0x2 @@ -1829,6 +1854,7 @@ const ( IFLA_BOND_AD_LACP_ACTIVE = 0x1d IFLA_BOND_MISSED_MAX = 0x1e IFLA_BOND_NS_IP6_TARGET = 0x1f + IFLA_BOND_COUPLED_CONTROL = 0x20 IFLA_BOND_AD_INFO_UNSPEC = 0x0 IFLA_BOND_AD_INFO_AGGREGATOR = 0x1 IFLA_BOND_AD_INFO_NUM_PORTS = 0x2 @@ -1897,6 +1923,7 @@ const ( IFLA_HSR_SEQ_NR = 0x5 IFLA_HSR_VERSION = 0x6 IFLA_HSR_PROTOCOL = 0x7 + IFLA_HSR_INTERLINK = 0x8 IFLA_STATS_UNSPEC = 0x0 IFLA_STATS_LINK_64 = 0x1 IFLA_STATS_LINK_XSTATS = 0x2 @@ -1949,6 +1976,15 @@ const ( IFLA_DSA_MASTER = 0x1 ) +const ( + NETKIT_NEXT = -0x1 + NETKIT_PASS = 0x0 + NETKIT_DROP = 0x2 + NETKIT_REDIRECT = 0x7 + NETKIT_L2 = 0x0 + NETKIT_L3 = 0x1 +) + const ( NF_INET_PRE_ROUTING = 0x0 NF_INET_LOCAL_IN = 0x1 @@ -2558,8 +2594,8 @@ const ( SOF_TIMESTAMPING_BIND_PHC = 0x8000 SOF_TIMESTAMPING_OPT_ID_TCP = 0x10000 - SOF_TIMESTAMPING_LAST = 0x10000 - SOF_TIMESTAMPING_MASK = 0x1ffff + SOF_TIMESTAMPING_LAST = 0x20000 + SOF_TIMESTAMPING_MASK = 0x3ffff SCM_TSTAMP_SND = 0x0 SCM_TSTAMP_SCHED = 0x1 @@ -3505,7 +3541,7 @@ type Nhmsg struct { type NexthopGrp struct { Id uint32 Weight uint8 - Resvd1 uint8 + High uint8 Resvd2 uint16 } @@ -3766,7 +3802,7 @@ const ( ETHTOOL_MSG_PSE_GET = 0x24 ETHTOOL_MSG_PSE_SET = 0x25 ETHTOOL_MSG_RSS_GET = 0x26 - ETHTOOL_MSG_USER_MAX = 0x2b + ETHTOOL_MSG_USER_MAX = 0x2d ETHTOOL_MSG_KERNEL_NONE = 0x0 ETHTOOL_MSG_STRSET_GET_REPLY = 0x1 ETHTOOL_MSG_LINKINFO_GET_REPLY = 0x2 @@ -3806,7 +3842,7 @@ const ( ETHTOOL_MSG_MODULE_NTF = 0x24 ETHTOOL_MSG_PSE_GET_REPLY = 0x25 ETHTOOL_MSG_RSS_GET_REPLY = 0x26 - ETHTOOL_MSG_KERNEL_MAX = 0x2b + ETHTOOL_MSG_KERNEL_MAX = 0x2e ETHTOOL_FLAG_COMPACT_BITSETS = 0x1 ETHTOOL_FLAG_OMIT_REPLY = 0x2 ETHTOOL_FLAG_STATS = 0x4 @@ -3814,7 +3850,7 @@ const ( ETHTOOL_A_HEADER_DEV_INDEX = 0x1 ETHTOOL_A_HEADER_DEV_NAME = 0x2 ETHTOOL_A_HEADER_FLAGS = 0x3 - ETHTOOL_A_HEADER_MAX = 0x3 + ETHTOOL_A_HEADER_MAX = 0x4 ETHTOOL_A_BITSET_BIT_UNSPEC = 0x0 ETHTOOL_A_BITSET_BIT_INDEX = 0x1 ETHTOOL_A_BITSET_BIT_NAME = 0x2 @@ -3951,7 +3987,7 @@ const ( ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 0x17 ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 0x18 ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 0x19 - ETHTOOL_A_COALESCE_MAX = 0x1c + ETHTOOL_A_COALESCE_MAX = 0x1e ETHTOOL_A_PAUSE_UNSPEC = 0x0 ETHTOOL_A_PAUSE_HEADER = 0x1 ETHTOOL_A_PAUSE_AUTONEG = 0x2 @@ -3995,11 +4031,11 @@ const ( ETHTOOL_A_CABLE_RESULT_UNSPEC = 0x0 ETHTOOL_A_CABLE_RESULT_PAIR = 0x1 ETHTOOL_A_CABLE_RESULT_CODE = 0x2 - ETHTOOL_A_CABLE_RESULT_MAX = 0x2 + ETHTOOL_A_CABLE_RESULT_MAX = 0x3 ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0x0 ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 0x1 ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 0x2 - ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 0x2 + ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 0x3 ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0x0 ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 0x1 ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 0x2 @@ -4082,6 +4118,107 @@ type EthtoolDrvinfo struct { Regdump_len uint32 } +type EthtoolTsInfo struct { + Cmd uint32 + So_timestamping uint32 + Phc_index int32 + Tx_types uint32 + Tx_reserved [3]uint32 + Rx_filters uint32 + Rx_reserved [3]uint32 +} + +type HwTstampConfig struct { + Flags int32 + Tx_type int32 + Rx_filter int32 +} + +const ( + HWTSTAMP_FILTER_NONE = 0x0 + HWTSTAMP_FILTER_ALL = 0x1 + HWTSTAMP_FILTER_SOME = 0x2 + HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 0x3 + HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 0x6 + HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 0x9 + HWTSTAMP_FILTER_PTP_V2_EVENT = 0xc +) + +const ( + HWTSTAMP_TX_OFF = 0x0 + HWTSTAMP_TX_ON = 0x1 + HWTSTAMP_TX_ONESTEP_SYNC = 0x2 +) + +type ( + PtpClockCaps struct { + Max_adj int32 + N_alarm int32 + N_ext_ts int32 + N_per_out int32 + Pps int32 + N_pins int32 + Cross_timestamping int32 + Adjust_phase int32 + Max_phase_adj int32 + Rsv [11]int32 + } + PtpClockTime struct { + Sec int64 + Nsec uint32 + Reserved uint32 + } + PtpExttsEvent struct { + T PtpClockTime + Index uint32 + Flags uint32 + Rsv [2]uint32 + } + PtpExttsRequest struct { + Index uint32 + Flags uint32 + Rsv [2]uint32 + } + PtpPeroutRequest struct { + StartOrPhase PtpClockTime + Period PtpClockTime + Index uint32 + Flags uint32 + On PtpClockTime + } + PtpPinDesc struct { + Name [64]byte + Index uint32 + Func uint32 + Chan uint32 + Rsv [5]uint32 + } + PtpSysOffset struct { + Samples uint32 + Rsv [3]uint32 + Ts [51]PtpClockTime + } + PtpSysOffsetExtended struct { + Samples uint32 + Clockid int32 + Rsv [2]uint32 + Ts [25][3]PtpClockTime + } + PtpSysOffsetPrecise struct { + Device PtpClockTime + Realtime PtpClockTime + Monoraw PtpClockTime + Rsv [4]uint32 + } +) + +const ( + PTP_PF_NONE = 0x0 + PTP_PF_EXTTS = 0x1 + PTP_PF_PEROUT = 0x2 + PTP_PF_PHYSYNC = 0x3 +) + type ( HIDRawReportDescriptor struct { Size uint32 @@ -4263,6 +4400,7 @@ const ( type LandlockRulesetAttr struct { Access_fs uint64 Access_net uint64 + Scoped uint64 } type LandlockPathBeneathAttr struct { @@ -4609,7 +4747,7 @@ const ( NL80211_ATTR_MAC_HINT = 0xc8 NL80211_ATTR_MAC_MASK = 0xd7 NL80211_ATTR_MAX_AP_ASSOC_STA = 0xca - NL80211_ATTR_MAX = 0x14a + NL80211_ATTR_MAX = 0x14c NL80211_ATTR_MAX_CRIT_PROT_DURATION = 0xb4 NL80211_ATTR_MAX_CSA_COUNTERS = 0xce NL80211_ATTR_MAX_MATCH_SETS = 0x85 @@ -5213,7 +5351,7 @@ const ( NL80211_FREQUENCY_ATTR_GO_CONCURRENT = 0xf NL80211_FREQUENCY_ATTR_INDOOR_ONLY = 0xe NL80211_FREQUENCY_ATTR_IR_CONCURRENT = 0xf - NL80211_FREQUENCY_ATTR_MAX = 0x20 + NL80211_FREQUENCY_ATTR_MAX = 0x21 NL80211_FREQUENCY_ATTR_MAX_TX_POWER = 0x6 NL80211_FREQUENCY_ATTR_NO_10MHZ = 0x11 NL80211_FREQUENCY_ATTR_NO_160MHZ = 0xc diff --git a/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go b/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go index d9a13af4684..2e5d5a44357 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +++ b/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go @@ -377,6 +377,12 @@ type Flock_t struct { Pid int32 } +type F_cnvrt struct { + Cvtcmd int32 + Pccsid int16 + Fccsid int16 +} + type Termios struct { Cflag uint32 Iflag uint32 diff --git a/vendor/golang.org/x/sys/windows/dll_windows.go b/vendor/golang.org/x/sys/windows/dll_windows.go index 115341fba66..4e613cf6335 100644 --- a/vendor/golang.org/x/sys/windows/dll_windows.go +++ b/vendor/golang.org/x/sys/windows/dll_windows.go @@ -65,7 +65,7 @@ func LoadDLL(name string) (dll *DLL, err error) { return d, nil } -// MustLoadDLL is like LoadDLL but panics if load operation failes. +// MustLoadDLL is like LoadDLL but panics if load operation fails. func MustLoadDLL(name string) *DLL { d, e := LoadDLL(name) if e != nil { diff --git a/vendor/golang.org/x/sys/windows/syscall_windows.go b/vendor/golang.org/x/sys/windows/syscall_windows.go index 5cee9a3143f..4a325438685 100644 --- a/vendor/golang.org/x/sys/windows/syscall_windows.go +++ b/vendor/golang.org/x/sys/windows/syscall_windows.go @@ -168,6 +168,8 @@ func NewCallbackCDecl(fn interface{}) uintptr { //sys CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint32, defaultTimeout uint32, sa *SecurityAttributes) (handle Handle, err error) [failretval==InvalidHandle] = CreateNamedPipeW //sys ConnectNamedPipe(pipe Handle, overlapped *Overlapped) (err error) //sys DisconnectNamedPipe(pipe Handle) (err error) +//sys GetNamedPipeClientProcessId(pipe Handle, clientProcessID *uint32) (err error) +//sys GetNamedPipeServerProcessId(pipe Handle, serverProcessID *uint32) (err error) //sys GetNamedPipeInfo(pipe Handle, flags *uint32, outSize *uint32, inSize *uint32, maxInstances *uint32) (err error) //sys GetNamedPipeHandleState(pipe Handle, state *uint32, curInstances *uint32, maxCollectionCount *uint32, collectDataTimeout *uint32, userName *uint16, maxUserNameSize uint32) (err error) = GetNamedPipeHandleStateW //sys SetNamedPipeHandleState(pipe Handle, state *uint32, maxCollectionCount *uint32, collectDataTimeout *uint32) (err error) = SetNamedPipeHandleState @@ -725,20 +727,12 @@ func DurationSinceBoot() time.Duration { } func Ftruncate(fd Handle, length int64) (err error) { - curoffset, e := Seek(fd, 0, 1) - if e != nil { - return e - } - defer Seek(fd, curoffset, 0) - _, e = Seek(fd, length, 0) - if e != nil { - return e + type _FILE_END_OF_FILE_INFO struct { + EndOfFile int64 } - e = SetEndOfFile(fd) - if e != nil { - return e - } - return nil + var info _FILE_END_OF_FILE_INFO + info.EndOfFile = length + return SetFileInformationByHandle(fd, FileEndOfFileInfo, (*byte)(unsafe.Pointer(&info)), uint32(unsafe.Sizeof(info))) } func Gettimeofday(tv *Timeval) (err error) { @@ -894,6 +888,11 @@ const socket_error = uintptr(^uint32(0)) //sys GetACP() (acp uint32) = kernel32.GetACP //sys MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error) = kernel32.MultiByteToWideChar //sys getBestInterfaceEx(sockaddr unsafe.Pointer, pdwBestIfIndex *uint32) (errcode error) = iphlpapi.GetBestInterfaceEx +//sys GetIfEntry2Ex(level uint32, row *MibIfRow2) (errcode error) = iphlpapi.GetIfEntry2Ex +//sys GetUnicastIpAddressEntry(row *MibUnicastIpAddressRow) (errcode error) = iphlpapi.GetUnicastIpAddressEntry +//sys NotifyIpInterfaceChange(family uint16, callback uintptr, callerContext unsafe.Pointer, initialNotification bool, notificationHandle *Handle) (errcode error) = iphlpapi.NotifyIpInterfaceChange +//sys NotifyUnicastIpAddressChange(family uint16, callback uintptr, callerContext unsafe.Pointer, initialNotification bool, notificationHandle *Handle) (errcode error) = iphlpapi.NotifyUnicastIpAddressChange +//sys CancelMibChangeNotify2(notificationHandle Handle) (errcode error) = iphlpapi.CancelMibChangeNotify2 // For testing: clients can set this flag to force // creation of IPv6 sockets to return EAFNOSUPPORT. @@ -1685,13 +1684,16 @@ func (s NTStatus) Error() string { // do not use NTUnicodeString, and instead UTF16PtrFromString should be used for // the more common *uint16 string type. func NewNTUnicodeString(s string) (*NTUnicodeString, error) { - var u NTUnicodeString - s16, err := UTF16PtrFromString(s) + s16, err := UTF16FromString(s) if err != nil { return nil, err } - RtlInitUnicodeString(&u, s16) - return &u, nil + n := uint16(len(s16) * 2) + return &NTUnicodeString{ + Length: n - 2, // subtract 2 bytes for the NULL terminator + MaximumLength: n, + Buffer: &s16[0], + }, nil } // Slice returns a uint16 slice that aliases the data in the NTUnicodeString. diff --git a/vendor/golang.org/x/sys/windows/types_windows.go b/vendor/golang.org/x/sys/windows/types_windows.go index 7b97a154c95..9d138de5fed 100644 --- a/vendor/golang.org/x/sys/windows/types_windows.go +++ b/vendor/golang.org/x/sys/windows/types_windows.go @@ -176,6 +176,7 @@ const ( WAIT_FAILED = 0xFFFFFFFF // Access rights for process. + PROCESS_ALL_ACCESS = 0xFFFF PROCESS_CREATE_PROCESS = 0x0080 PROCESS_CREATE_THREAD = 0x0002 PROCESS_DUP_HANDLE = 0x0040 @@ -2203,6 +2204,132 @@ const ( IfOperStatusLowerLayerDown = 7 ) +const ( + IF_MAX_PHYS_ADDRESS_LENGTH = 32 + IF_MAX_STRING_SIZE = 256 +) + +// MIB_IF_ENTRY_LEVEL enumeration from netioapi.h or +// https://learn.microsoft.com/en-us/windows/win32/api/netioapi/nf-netioapi-getifentry2ex. +const ( + MibIfEntryNormal = 0 + MibIfEntryNormalWithoutStatistics = 2 +) + +// MIB_NOTIFICATION_TYPE enumeration from netioapi.h or +// https://learn.microsoft.com/en-us/windows/win32/api/netioapi/ne-netioapi-mib_notification_type. +const ( + MibParameterNotification = 0 + MibAddInstance = 1 + MibDeleteInstance = 2 + MibInitialNotification = 3 +) + +// MibIfRow2 stores information about a particular interface. See +// https://learn.microsoft.com/en-us/windows/win32/api/netioapi/ns-netioapi-mib_if_row2. +type MibIfRow2 struct { + InterfaceLuid uint64 + InterfaceIndex uint32 + InterfaceGuid GUID + Alias [IF_MAX_STRING_SIZE + 1]uint16 + Description [IF_MAX_STRING_SIZE + 1]uint16 + PhysicalAddressLength uint32 + PhysicalAddress [IF_MAX_PHYS_ADDRESS_LENGTH]uint8 + PermanentPhysicalAddress [IF_MAX_PHYS_ADDRESS_LENGTH]uint8 + Mtu uint32 + Type uint32 + TunnelType uint32 + MediaType uint32 + PhysicalMediumType uint32 + AccessType uint32 + DirectionType uint32 + InterfaceAndOperStatusFlags uint8 + OperStatus uint32 + AdminStatus uint32 + MediaConnectState uint32 + NetworkGuid GUID + ConnectionType uint32 + TransmitLinkSpeed uint64 + ReceiveLinkSpeed uint64 + InOctets uint64 + InUcastPkts uint64 + InNUcastPkts uint64 + InDiscards uint64 + InErrors uint64 + InUnknownProtos uint64 + InUcastOctets uint64 + InMulticastOctets uint64 + InBroadcastOctets uint64 + OutOctets uint64 + OutUcastPkts uint64 + OutNUcastPkts uint64 + OutDiscards uint64 + OutErrors uint64 + OutUcastOctets uint64 + OutMulticastOctets uint64 + OutBroadcastOctets uint64 + OutQLen uint64 +} + +// MIB_UNICASTIPADDRESS_ROW stores information about a unicast IP address. See +// https://learn.microsoft.com/en-us/windows/win32/api/netioapi/ns-netioapi-mib_unicastipaddress_row. +type MibUnicastIpAddressRow struct { + Address RawSockaddrInet6 // SOCKADDR_INET union + InterfaceLuid uint64 + InterfaceIndex uint32 + PrefixOrigin uint32 + SuffixOrigin uint32 + ValidLifetime uint32 + PreferredLifetime uint32 + OnLinkPrefixLength uint8 + SkipAsSource uint8 + DadState uint32 + ScopeId uint32 + CreationTimeStamp Filetime +} + +const ScopeLevelCount = 16 + +// MIB_IPINTERFACE_ROW stores interface management information for a particular IP address family on a network interface. +// See https://learn.microsoft.com/en-us/windows/win32/api/netioapi/ns-netioapi-mib_ipinterface_row. +type MibIpInterfaceRow struct { + Family uint16 + InterfaceLuid uint64 + InterfaceIndex uint32 + MaxReassemblySize uint32 + InterfaceIdentifier uint64 + MinRouterAdvertisementInterval uint32 + MaxRouterAdvertisementInterval uint32 + AdvertisingEnabled uint8 + ForwardingEnabled uint8 + WeakHostSend uint8 + WeakHostReceive uint8 + UseAutomaticMetric uint8 + UseNeighborUnreachabilityDetection uint8 + ManagedAddressConfigurationSupported uint8 + OtherStatefulConfigurationSupported uint8 + AdvertiseDefaultRoute uint8 + RouterDiscoveryBehavior uint32 + DadTransmits uint32 + BaseReachableTime uint32 + RetransmitTime uint32 + PathMtuDiscoveryTimeout uint32 + LinkLocalAddressBehavior uint32 + LinkLocalAddressTimeout uint32 + ZoneIndices [ScopeLevelCount]uint32 + SitePrefixLength uint32 + Metric uint32 + NlMtu uint32 + Connected uint8 + SupportsWakeUpPatterns uint8 + SupportsNeighborDiscovery uint8 + SupportsRouterDiscovery uint8 + ReachableTime uint32 + TransmitOffload uint32 + ReceiveOffload uint32 + DisableDefaultRoutes uint8 +} + // Console related constants used for the mode parameter to SetConsoleMode. See // https://docs.microsoft.com/en-us/windows/console/setconsolemode for details. diff --git a/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/vendor/golang.org/x/sys/windows/zsyscall_windows.go index 4c2e1bdc01e..01c0716c2c4 100644 --- a/vendor/golang.org/x/sys/windows/zsyscall_windows.go +++ b/vendor/golang.org/x/sys/windows/zsyscall_windows.go @@ -181,10 +181,15 @@ var ( procDnsRecordListFree = moddnsapi.NewProc("DnsRecordListFree") procDwmGetWindowAttribute = moddwmapi.NewProc("DwmGetWindowAttribute") procDwmSetWindowAttribute = moddwmapi.NewProc("DwmSetWindowAttribute") + procCancelMibChangeNotify2 = modiphlpapi.NewProc("CancelMibChangeNotify2") procGetAdaptersAddresses = modiphlpapi.NewProc("GetAdaptersAddresses") procGetAdaptersInfo = modiphlpapi.NewProc("GetAdaptersInfo") procGetBestInterfaceEx = modiphlpapi.NewProc("GetBestInterfaceEx") procGetIfEntry = modiphlpapi.NewProc("GetIfEntry") + procGetIfEntry2Ex = modiphlpapi.NewProc("GetIfEntry2Ex") + procGetUnicastIpAddressEntry = modiphlpapi.NewProc("GetUnicastIpAddressEntry") + procNotifyIpInterfaceChange = modiphlpapi.NewProc("NotifyIpInterfaceChange") + procNotifyUnicastIpAddressChange = modiphlpapi.NewProc("NotifyUnicastIpAddressChange") procAddDllDirectory = modkernel32.NewProc("AddDllDirectory") procAssignProcessToJobObject = modkernel32.NewProc("AssignProcessToJobObject") procCancelIo = modkernel32.NewProc("CancelIo") @@ -275,8 +280,10 @@ var ( procGetMaximumProcessorCount = modkernel32.NewProc("GetMaximumProcessorCount") procGetModuleFileNameW = modkernel32.NewProc("GetModuleFileNameW") procGetModuleHandleExW = modkernel32.NewProc("GetModuleHandleExW") + procGetNamedPipeClientProcessId = modkernel32.NewProc("GetNamedPipeClientProcessId") procGetNamedPipeHandleStateW = modkernel32.NewProc("GetNamedPipeHandleStateW") procGetNamedPipeInfo = modkernel32.NewProc("GetNamedPipeInfo") + procGetNamedPipeServerProcessId = modkernel32.NewProc("GetNamedPipeServerProcessId") procGetOverlappedResult = modkernel32.NewProc("GetOverlappedResult") procGetPriorityClass = modkernel32.NewProc("GetPriorityClass") procGetProcAddress = modkernel32.NewProc("GetProcAddress") @@ -1606,6 +1613,14 @@ func DwmSetWindowAttribute(hwnd HWND, attribute uint32, value unsafe.Pointer, si return } +func CancelMibChangeNotify2(notificationHandle Handle) (errcode error) { + r0, _, _ := syscall.Syscall(procCancelMibChangeNotify2.Addr(), 1, uintptr(notificationHandle), 0, 0) + if r0 != 0 { + errcode = syscall.Errno(r0) + } + return +} + func GetAdaptersAddresses(family uint32, flags uint32, reserved uintptr, adapterAddresses *IpAdapterAddresses, sizePointer *uint32) (errcode error) { r0, _, _ := syscall.Syscall6(procGetAdaptersAddresses.Addr(), 5, uintptr(family), uintptr(flags), uintptr(reserved), uintptr(unsafe.Pointer(adapterAddresses)), uintptr(unsafe.Pointer(sizePointer)), 0) if r0 != 0 { @@ -1638,6 +1653,46 @@ func GetIfEntry(pIfRow *MibIfRow) (errcode error) { return } +func GetIfEntry2Ex(level uint32, row *MibIfRow2) (errcode error) { + r0, _, _ := syscall.Syscall(procGetIfEntry2Ex.Addr(), 2, uintptr(level), uintptr(unsafe.Pointer(row)), 0) + if r0 != 0 { + errcode = syscall.Errno(r0) + } + return +} + +func GetUnicastIpAddressEntry(row *MibUnicastIpAddressRow) (errcode error) { + r0, _, _ := syscall.Syscall(procGetUnicastIpAddressEntry.Addr(), 1, uintptr(unsafe.Pointer(row)), 0, 0) + if r0 != 0 { + errcode = syscall.Errno(r0) + } + return +} + +func NotifyIpInterfaceChange(family uint16, callback uintptr, callerContext unsafe.Pointer, initialNotification bool, notificationHandle *Handle) (errcode error) { + var _p0 uint32 + if initialNotification { + _p0 = 1 + } + r0, _, _ := syscall.Syscall6(procNotifyIpInterfaceChange.Addr(), 5, uintptr(family), uintptr(callback), uintptr(callerContext), uintptr(_p0), uintptr(unsafe.Pointer(notificationHandle)), 0) + if r0 != 0 { + errcode = syscall.Errno(r0) + } + return +} + +func NotifyUnicastIpAddressChange(family uint16, callback uintptr, callerContext unsafe.Pointer, initialNotification bool, notificationHandle *Handle) (errcode error) { + var _p0 uint32 + if initialNotification { + _p0 = 1 + } + r0, _, _ := syscall.Syscall6(procNotifyUnicastIpAddressChange.Addr(), 5, uintptr(family), uintptr(callback), uintptr(callerContext), uintptr(_p0), uintptr(unsafe.Pointer(notificationHandle)), 0) + if r0 != 0 { + errcode = syscall.Errno(r0) + } + return +} + func AddDllDirectory(path *uint16) (cookie uintptr, err error) { r0, _, e1 := syscall.Syscall(procAddDllDirectory.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0) cookie = uintptr(r0) @@ -2393,6 +2448,14 @@ func GetModuleHandleEx(flags uint32, moduleName *uint16, module *Handle) (err er return } +func GetNamedPipeClientProcessId(pipe Handle, clientProcessID *uint32) (err error) { + r1, _, e1 := syscall.Syscall(procGetNamedPipeClientProcessId.Addr(), 2, uintptr(pipe), uintptr(unsafe.Pointer(clientProcessID)), 0) + if r1 == 0 { + err = errnoErr(e1) + } + return +} + func GetNamedPipeHandleState(pipe Handle, state *uint32, curInstances *uint32, maxCollectionCount *uint32, collectDataTimeout *uint32, userName *uint16, maxUserNameSize uint32) (err error) { r1, _, e1 := syscall.Syscall9(procGetNamedPipeHandleStateW.Addr(), 7, uintptr(pipe), uintptr(unsafe.Pointer(state)), uintptr(unsafe.Pointer(curInstances)), uintptr(unsafe.Pointer(maxCollectionCount)), uintptr(unsafe.Pointer(collectDataTimeout)), uintptr(unsafe.Pointer(userName)), uintptr(maxUserNameSize), 0, 0) if r1 == 0 { @@ -2409,6 +2472,14 @@ func GetNamedPipeInfo(pipe Handle, flags *uint32, outSize *uint32, inSize *uint3 return } +func GetNamedPipeServerProcessId(pipe Handle, serverProcessID *uint32) (err error) { + r1, _, e1 := syscall.Syscall(procGetNamedPipeServerProcessId.Addr(), 2, uintptr(pipe), uintptr(unsafe.Pointer(serverProcessID)), 0) + if r1 == 0 { + err = errnoErr(e1) + } + return +} + func GetOverlappedResult(handle Handle, overlapped *Overlapped, done *uint32, wait bool) (err error) { var _p0 uint32 if wait { diff --git a/vendor/modules.txt b/vendor/modules.txt index 1104952b8cb..2aed14612b7 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1328,7 +1328,7 @@ go.uber.org/zap/internal/color go.uber.org/zap/internal/exit go.uber.org/zap/zapcore go.uber.org/zap/zapgrpc -# golang.org/x/crypto v0.27.0 +# golang.org/x/crypto v0.31.0 ## explicit; go 1.20 golang.org/x/crypto/argon2 golang.org/x/crypto/bcrypt @@ -1383,18 +1383,18 @@ golang.org/x/oauth2/google/internal/stsexchange golang.org/x/oauth2/internal golang.org/x/oauth2/jws golang.org/x/oauth2/jwt -# golang.org/x/sync v0.8.0 +# golang.org/x/sync v0.10.0 ## explicit; go 1.18 golang.org/x/sync/errgroup golang.org/x/sync/semaphore golang.org/x/sync/singleflight -# golang.org/x/sys v0.25.0 +# golang.org/x/sys v0.28.0 ## explicit; go 1.18 golang.org/x/sys/cpu golang.org/x/sys/unix golang.org/x/sys/windows golang.org/x/sys/windows/registry -# golang.org/x/text v0.18.0 +# golang.org/x/text v0.21.0 ## explicit; go 1.18 golang.org/x/text/cases golang.org/x/text/internal From 877d973c12752267537a9bc43b47644a965f83ba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 15:17:29 +0100 Subject: [PATCH 6/7] fix(deps): update module golang.org/x/net to v0.33.0 [security] (#10298) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 +- .../x/net/http2/client_conn_pool.go | 8 +- vendor/golang.org/x/net/http2/config.go | 122 +++++ vendor/golang.org/x/net/http2/config_go124.go | 61 +++ .../x/net/http2/config_pre_go124.go | 16 + vendor/golang.org/x/net/http2/frame.go | 4 +- vendor/golang.org/x/net/http2/http2.go | 95 +++- vendor/golang.org/x/net/http2/server.go | 244 ++++++--- vendor/golang.org/x/net/http2/transport.go | 516 ++++++++++++------ vendor/golang.org/x/net/http2/unencrypted.go | 32 ++ vendor/golang.org/x/net/http2/write.go | 10 + .../net/internal/socket/zsys_openbsd_ppc64.go | 28 +- .../internal/socket/zsys_openbsd_riscv64.go | 28 +- .../golang.org/x/net/websocket/websocket.go | 2 +- vendor/modules.txt | 2 +- 16 files changed, 869 insertions(+), 305 deletions(-) create mode 100644 vendor/golang.org/x/net/http2/config.go create mode 100644 vendor/golang.org/x/net/http2/config_go124.go create mode 100644 vendor/golang.org/x/net/http2/config_pre_go124.go create mode 100644 vendor/golang.org/x/net/http2/unencrypted.go diff --git a/go.mod b/go.mod index 6f6260d9ead..b77ad7f98a4 100644 --- a/go.mod +++ b/go.mod @@ -46,7 +46,7 @@ require ( go.uber.org/atomic v1.11.0 go.uber.org/goleak v1.3.0 golang.org/x/crypto v0.31.0 - golang.org/x/net v0.29.0 + golang.org/x/net v0.33.0 golang.org/x/sync v0.10.0 golang.org/x/time v0.6.0 google.golang.org/grpc v1.66.0 diff --git a/go.sum b/go.sum index 6dbf8c15fbe..4d09684b3e4 100644 --- a/go.sum +++ b/go.sum @@ -1937,8 +1937,8 @@ golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= -golang.org/x/net v0.29.0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo= -golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0= +golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= +golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= diff --git a/vendor/golang.org/x/net/http2/client_conn_pool.go b/vendor/golang.org/x/net/http2/client_conn_pool.go index 780968d6c19..e81b73e6a7a 100644 --- a/vendor/golang.org/x/net/http2/client_conn_pool.go +++ b/vendor/golang.org/x/net/http2/client_conn_pool.go @@ -8,8 +8,8 @@ package http2 import ( "context" - "crypto/tls" "errors" + "net" "net/http" "sync" ) @@ -158,7 +158,7 @@ func (c *dialCall) dial(ctx context.Context, addr string) { // This code decides which ones live or die. // The return value used is whether c was used. // c is never closed. -func (p *clientConnPool) addConnIfNeeded(key string, t *Transport, c *tls.Conn) (used bool, err error) { +func (p *clientConnPool) addConnIfNeeded(key string, t *Transport, c net.Conn) (used bool, err error) { p.mu.Lock() for _, cc := range p.conns[key] { if cc.CanTakeNewRequest() { @@ -194,8 +194,8 @@ type addConnCall struct { err error } -func (c *addConnCall) run(t *Transport, key string, tc *tls.Conn) { - cc, err := t.NewClientConn(tc) +func (c *addConnCall) run(t *Transport, key string, nc net.Conn) { + cc, err := t.NewClientConn(nc) p := c.p p.mu.Lock() diff --git a/vendor/golang.org/x/net/http2/config.go b/vendor/golang.org/x/net/http2/config.go new file mode 100644 index 00000000000..de58dfb8dc4 --- /dev/null +++ b/vendor/golang.org/x/net/http2/config.go @@ -0,0 +1,122 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package http2 + +import ( + "math" + "net/http" + "time" +) + +// http2Config is a package-internal version of net/http.HTTP2Config. +// +// http.HTTP2Config was added in Go 1.24. +// When running with a version of net/http that includes HTTP2Config, +// we merge the configuration with the fields in Transport or Server +// to produce an http2Config. +// +// Zero valued fields in http2Config are interpreted as in the +// net/http.HTTPConfig documentation. +// +// Precedence order for reconciling configurations is: +// +// - Use the net/http.{Server,Transport}.HTTP2Config value, when non-zero. +// - Otherwise use the http2.{Server.Transport} value. +// - If the resulting value is zero or out of range, use a default. +type http2Config struct { + MaxConcurrentStreams uint32 + MaxDecoderHeaderTableSize uint32 + MaxEncoderHeaderTableSize uint32 + MaxReadFrameSize uint32 + MaxUploadBufferPerConnection int32 + MaxUploadBufferPerStream int32 + SendPingTimeout time.Duration + PingTimeout time.Duration + WriteByteTimeout time.Duration + PermitProhibitedCipherSuites bool + CountError func(errType string) +} + +// configFromServer merges configuration settings from +// net/http.Server.HTTP2Config and http2.Server. +func configFromServer(h1 *http.Server, h2 *Server) http2Config { + conf := http2Config{ + MaxConcurrentStreams: h2.MaxConcurrentStreams, + MaxEncoderHeaderTableSize: h2.MaxEncoderHeaderTableSize, + MaxDecoderHeaderTableSize: h2.MaxDecoderHeaderTableSize, + MaxReadFrameSize: h2.MaxReadFrameSize, + MaxUploadBufferPerConnection: h2.MaxUploadBufferPerConnection, + MaxUploadBufferPerStream: h2.MaxUploadBufferPerStream, + SendPingTimeout: h2.ReadIdleTimeout, + PingTimeout: h2.PingTimeout, + WriteByteTimeout: h2.WriteByteTimeout, + PermitProhibitedCipherSuites: h2.PermitProhibitedCipherSuites, + CountError: h2.CountError, + } + fillNetHTTPServerConfig(&conf, h1) + setConfigDefaults(&conf, true) + return conf +} + +// configFromServer merges configuration settings from h2 and h2.t1.HTTP2 +// (the net/http Transport). +func configFromTransport(h2 *Transport) http2Config { + conf := http2Config{ + MaxEncoderHeaderTableSize: h2.MaxEncoderHeaderTableSize, + MaxDecoderHeaderTableSize: h2.MaxDecoderHeaderTableSize, + MaxReadFrameSize: h2.MaxReadFrameSize, + SendPingTimeout: h2.ReadIdleTimeout, + PingTimeout: h2.PingTimeout, + WriteByteTimeout: h2.WriteByteTimeout, + } + + // Unlike most config fields, where out-of-range values revert to the default, + // Transport.MaxReadFrameSize clips. + if conf.MaxReadFrameSize < minMaxFrameSize { + conf.MaxReadFrameSize = minMaxFrameSize + } else if conf.MaxReadFrameSize > maxFrameSize { + conf.MaxReadFrameSize = maxFrameSize + } + + if h2.t1 != nil { + fillNetHTTPTransportConfig(&conf, h2.t1) + } + setConfigDefaults(&conf, false) + return conf +} + +func setDefault[T ~int | ~int32 | ~uint32 | ~int64](v *T, minval, maxval, defval T) { + if *v < minval || *v > maxval { + *v = defval + } +} + +func setConfigDefaults(conf *http2Config, server bool) { + setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, defaultMaxStreams) + setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize) + setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize) + if server { + setDefault(&conf.MaxUploadBufferPerConnection, initialWindowSize, math.MaxInt32, 1<<20) + } else { + setDefault(&conf.MaxUploadBufferPerConnection, initialWindowSize, math.MaxInt32, transportDefaultConnFlow) + } + if server { + setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, 1<<20) + } else { + setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, transportDefaultStreamFlow) + } + setDefault(&conf.MaxReadFrameSize, minMaxFrameSize, maxFrameSize, defaultMaxReadFrameSize) + setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second) +} + +// adjustHTTP1MaxHeaderSize converts a limit in bytes on the size of an HTTP/1 header +// to an HTTP/2 MAX_HEADER_LIST_SIZE value. +func adjustHTTP1MaxHeaderSize(n int64) int64 { + // http2's count is in a slightly different unit and includes 32 bytes per pair. + // So, take the net/http.Server value and pad it up a bit, assuming 10 headers. + const perFieldOverhead = 32 // per http2 spec + const typicalHeaders = 10 // conservative + return n + typicalHeaders*perFieldOverhead +} diff --git a/vendor/golang.org/x/net/http2/config_go124.go b/vendor/golang.org/x/net/http2/config_go124.go new file mode 100644 index 00000000000..e3784123c81 --- /dev/null +++ b/vendor/golang.org/x/net/http2/config_go124.go @@ -0,0 +1,61 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build go1.24 + +package http2 + +import "net/http" + +// fillNetHTTPServerConfig sets fields in conf from srv.HTTP2. +func fillNetHTTPServerConfig(conf *http2Config, srv *http.Server) { + fillNetHTTPConfig(conf, srv.HTTP2) +} + +// fillNetHTTPServerConfig sets fields in conf from tr.HTTP2. +func fillNetHTTPTransportConfig(conf *http2Config, tr *http.Transport) { + fillNetHTTPConfig(conf, tr.HTTP2) +} + +func fillNetHTTPConfig(conf *http2Config, h2 *http.HTTP2Config) { + if h2 == nil { + return + } + if h2.MaxConcurrentStreams != 0 { + conf.MaxConcurrentStreams = uint32(h2.MaxConcurrentStreams) + } + if h2.MaxEncoderHeaderTableSize != 0 { + conf.MaxEncoderHeaderTableSize = uint32(h2.MaxEncoderHeaderTableSize) + } + if h2.MaxDecoderHeaderTableSize != 0 { + conf.MaxDecoderHeaderTableSize = uint32(h2.MaxDecoderHeaderTableSize) + } + if h2.MaxConcurrentStreams != 0 { + conf.MaxConcurrentStreams = uint32(h2.MaxConcurrentStreams) + } + if h2.MaxReadFrameSize != 0 { + conf.MaxReadFrameSize = uint32(h2.MaxReadFrameSize) + } + if h2.MaxReceiveBufferPerConnection != 0 { + conf.MaxUploadBufferPerConnection = int32(h2.MaxReceiveBufferPerConnection) + } + if h2.MaxReceiveBufferPerStream != 0 { + conf.MaxUploadBufferPerStream = int32(h2.MaxReceiveBufferPerStream) + } + if h2.SendPingTimeout != 0 { + conf.SendPingTimeout = h2.SendPingTimeout + } + if h2.PingTimeout != 0 { + conf.PingTimeout = h2.PingTimeout + } + if h2.WriteByteTimeout != 0 { + conf.WriteByteTimeout = h2.WriteByteTimeout + } + if h2.PermitProhibitedCipherSuites { + conf.PermitProhibitedCipherSuites = true + } + if h2.CountError != nil { + conf.CountError = h2.CountError + } +} diff --git a/vendor/golang.org/x/net/http2/config_pre_go124.go b/vendor/golang.org/x/net/http2/config_pre_go124.go new file mode 100644 index 00000000000..060fd6c64c6 --- /dev/null +++ b/vendor/golang.org/x/net/http2/config_pre_go124.go @@ -0,0 +1,16 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build !go1.24 + +package http2 + +import "net/http" + +// Pre-Go 1.24 fallback. +// The Server.HTTP2 and Transport.HTTP2 config fields were added in Go 1.24. + +func fillNetHTTPServerConfig(conf *http2Config, srv *http.Server) {} + +func fillNetHTTPTransportConfig(conf *http2Config, tr *http.Transport) {} diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go index 105c3b279c0..81faec7e75d 100644 --- a/vendor/golang.org/x/net/http2/frame.go +++ b/vendor/golang.org/x/net/http2/frame.go @@ -1490,7 +1490,7 @@ func (mh *MetaHeadersFrame) checkPseudos() error { pf := mh.PseudoFields() for i, hf := range pf { switch hf.Name { - case ":method", ":path", ":scheme", ":authority": + case ":method", ":path", ":scheme", ":authority", ":protocol": isRequest = true case ":status": isResponse = true @@ -1498,7 +1498,7 @@ func (mh *MetaHeadersFrame) checkPseudos() error { return pseudoHeaderError(hf.Name) } // Check for duplicates. - // This would be a bad algorithm, but N is 4. + // This would be a bad algorithm, but N is 5. // And this doesn't allocate. for _, hf2 := range pf[:i] { if hf.Name == hf2.Name { diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go index 003e649f30c..c7601c909ff 100644 --- a/vendor/golang.org/x/net/http2/http2.go +++ b/vendor/golang.org/x/net/http2/http2.go @@ -19,8 +19,9 @@ import ( "bufio" "context" "crypto/tls" + "errors" "fmt" - "io" + "net" "net/http" "os" "sort" @@ -33,10 +34,11 @@ import ( ) var ( - VerboseLogs bool - logFrameWrites bool - logFrameReads bool - inTests bool + VerboseLogs bool + logFrameWrites bool + logFrameReads bool + inTests bool + disableExtendedConnectProtocol bool ) func init() { @@ -49,6 +51,9 @@ func init() { logFrameWrites = true logFrameReads = true } + if strings.Contains(e, "http2xconnect=0") { + disableExtendedConnectProtocol = true + } } const ( @@ -140,6 +145,10 @@ func (s Setting) Valid() error { if s.Val < 16384 || s.Val > 1<<24-1 { return ConnectionError(ErrCodeProtocol) } + case SettingEnableConnectProtocol: + if s.Val != 1 && s.Val != 0 { + return ConnectionError(ErrCodeProtocol) + } } return nil } @@ -149,21 +158,23 @@ func (s Setting) Valid() error { type SettingID uint16 const ( - SettingHeaderTableSize SettingID = 0x1 - SettingEnablePush SettingID = 0x2 - SettingMaxConcurrentStreams SettingID = 0x3 - SettingInitialWindowSize SettingID = 0x4 - SettingMaxFrameSize SettingID = 0x5 - SettingMaxHeaderListSize SettingID = 0x6 + SettingHeaderTableSize SettingID = 0x1 + SettingEnablePush SettingID = 0x2 + SettingMaxConcurrentStreams SettingID = 0x3 + SettingInitialWindowSize SettingID = 0x4 + SettingMaxFrameSize SettingID = 0x5 + SettingMaxHeaderListSize SettingID = 0x6 + SettingEnableConnectProtocol SettingID = 0x8 ) var settingName = map[SettingID]string{ - SettingHeaderTableSize: "HEADER_TABLE_SIZE", - SettingEnablePush: "ENABLE_PUSH", - SettingMaxConcurrentStreams: "MAX_CONCURRENT_STREAMS", - SettingInitialWindowSize: "INITIAL_WINDOW_SIZE", - SettingMaxFrameSize: "MAX_FRAME_SIZE", - SettingMaxHeaderListSize: "MAX_HEADER_LIST_SIZE", + SettingHeaderTableSize: "HEADER_TABLE_SIZE", + SettingEnablePush: "ENABLE_PUSH", + SettingMaxConcurrentStreams: "MAX_CONCURRENT_STREAMS", + SettingInitialWindowSize: "INITIAL_WINDOW_SIZE", + SettingMaxFrameSize: "MAX_FRAME_SIZE", + SettingMaxHeaderListSize: "MAX_HEADER_LIST_SIZE", + SettingEnableConnectProtocol: "ENABLE_CONNECT_PROTOCOL", } func (s SettingID) String() string { @@ -237,13 +248,19 @@ func (cw closeWaiter) Wait() { // Its buffered writer is lazily allocated as needed, to minimize // idle memory usage with many connections. type bufferedWriter struct { - _ incomparable - w io.Writer // immutable - bw *bufio.Writer // non-nil when data is buffered + _ incomparable + group synctestGroupInterface // immutable + conn net.Conn // immutable + bw *bufio.Writer // non-nil when data is buffered + byteTimeout time.Duration // immutable, WriteByteTimeout } -func newBufferedWriter(w io.Writer) *bufferedWriter { - return &bufferedWriter{w: w} +func newBufferedWriter(group synctestGroupInterface, conn net.Conn, timeout time.Duration) *bufferedWriter { + return &bufferedWriter{ + group: group, + conn: conn, + byteTimeout: timeout, + } } // bufWriterPoolBufferSize is the size of bufio.Writer's @@ -270,7 +287,7 @@ func (w *bufferedWriter) Available() int { func (w *bufferedWriter) Write(p []byte) (n int, err error) { if w.bw == nil { bw := bufWriterPool.Get().(*bufio.Writer) - bw.Reset(w.w) + bw.Reset((*bufferedWriterTimeoutWriter)(w)) w.bw = bw } return w.bw.Write(p) @@ -288,6 +305,38 @@ func (w *bufferedWriter) Flush() error { return err } +type bufferedWriterTimeoutWriter bufferedWriter + +func (w *bufferedWriterTimeoutWriter) Write(p []byte) (n int, err error) { + return writeWithByteTimeout(w.group, w.conn, w.byteTimeout, p) +} + +// writeWithByteTimeout writes to conn. +// If more than timeout passes without any bytes being written to the connection, +// the write fails. +func writeWithByteTimeout(group synctestGroupInterface, conn net.Conn, timeout time.Duration, p []byte) (n int, err error) { + if timeout <= 0 { + return conn.Write(p) + } + for { + var now time.Time + if group == nil { + now = time.Now() + } else { + now = group.Now() + } + conn.SetWriteDeadline(now.Add(timeout)) + nn, err := conn.Write(p[n:]) + n += nn + if n == len(p) || nn == 0 || !errors.Is(err, os.ErrDeadlineExceeded) { + // Either we finished the write, made no progress, or hit the deadline. + // Whichever it is, we're done now. + conn.SetWriteDeadline(time.Time{}) + return n, err + } + } +} + func mustUint31(v int32) uint32 { if v < 0 || v > 2147483647 { panic("out of range") diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go index 6c349f3ec64..b55547aec64 100644 --- a/vendor/golang.org/x/net/http2/server.go +++ b/vendor/golang.org/x/net/http2/server.go @@ -29,6 +29,7 @@ import ( "bufio" "bytes" "context" + "crypto/rand" "crypto/tls" "errors" "fmt" @@ -52,10 +53,14 @@ import ( ) const ( - prefaceTimeout = 10 * time.Second - firstSettingsTimeout = 2 * time.Second // should be in-flight with preface anyway - handlerChunkWriteSize = 4 << 10 - defaultMaxStreams = 250 // TODO: make this 100 as the GFE seems to? + prefaceTimeout = 10 * time.Second + firstSettingsTimeout = 2 * time.Second // should be in-flight with preface anyway + handlerChunkWriteSize = 4 << 10 + defaultMaxStreams = 250 // TODO: make this 100 as the GFE seems to? + + // maxQueuedControlFrames is the maximum number of control frames like + // SETTINGS, PING and RST_STREAM that will be queued for writing before + // the connection is closed to prevent memory exhaustion attacks. maxQueuedControlFrames = 10000 ) @@ -127,6 +132,22 @@ type Server struct { // If zero or negative, there is no timeout. IdleTimeout time.Duration + // ReadIdleTimeout is the timeout after which a health check using a ping + // frame will be carried out if no frame is received on the connection. + // If zero, no health check is performed. + ReadIdleTimeout time.Duration + + // PingTimeout is the timeout after which the connection will be closed + // if a response to a ping is not received. + // If zero, a default of 15 seconds is used. + PingTimeout time.Duration + + // WriteByteTimeout is the timeout after which a connection will be + // closed if no data can be written to it. The timeout begins when data is + // available to write, and is extended whenever any bytes are written. + // If zero or negative, there is no timeout. + WriteByteTimeout time.Duration + // MaxUploadBufferPerConnection is the size of the initial flow // control window for each connections. The HTTP/2 spec does not // allow this to be smaller than 65535 or larger than 2^32-1. @@ -189,57 +210,6 @@ func (s *Server) afterFunc(d time.Duration, f func()) timer { return timeTimer{time.AfterFunc(d, f)} } -func (s *Server) initialConnRecvWindowSize() int32 { - if s.MaxUploadBufferPerConnection >= initialWindowSize { - return s.MaxUploadBufferPerConnection - } - return 1 << 20 -} - -func (s *Server) initialStreamRecvWindowSize() int32 { - if s.MaxUploadBufferPerStream > 0 { - return s.MaxUploadBufferPerStream - } - return 1 << 20 -} - -func (s *Server) maxReadFrameSize() uint32 { - if v := s.MaxReadFrameSize; v >= minMaxFrameSize && v <= maxFrameSize { - return v - } - return defaultMaxReadFrameSize -} - -func (s *Server) maxConcurrentStreams() uint32 { - if v := s.MaxConcurrentStreams; v > 0 { - return v - } - return defaultMaxStreams -} - -func (s *Server) maxDecoderHeaderTableSize() uint32 { - if v := s.MaxDecoderHeaderTableSize; v > 0 { - return v - } - return initialHeaderTableSize -} - -func (s *Server) maxEncoderHeaderTableSize() uint32 { - if v := s.MaxEncoderHeaderTableSize; v > 0 { - return v - } - return initialHeaderTableSize -} - -// maxQueuedControlFrames is the maximum number of control frames like -// SETTINGS, PING and RST_STREAM that will be queued for writing before -// the connection is closed to prevent memory exhaustion attacks. -func (s *Server) maxQueuedControlFrames() int { - // TODO: if anybody asks, add a Server field, and remember to define the - // behavior of negative values. - return maxQueuedControlFrames -} - type serverInternalState struct { mu sync.Mutex activeConns map[*serverConn]struct{} @@ -336,7 +306,7 @@ func ConfigureServer(s *http.Server, conf *Server) error { if s.TLSNextProto == nil { s.TLSNextProto = map[string]func(*http.Server, *tls.Conn, http.Handler){} } - protoHandler := func(hs *http.Server, c *tls.Conn, h http.Handler) { + protoHandler := func(hs *http.Server, c net.Conn, h http.Handler, sawClientPreface bool) { if testHookOnConn != nil { testHookOnConn() } @@ -353,12 +323,31 @@ func ConfigureServer(s *http.Server, conf *Server) error { ctx = bc.BaseContext() } conf.ServeConn(c, &ServeConnOpts{ - Context: ctx, - Handler: h, - BaseConfig: hs, + Context: ctx, + Handler: h, + BaseConfig: hs, + SawClientPreface: sawClientPreface, }) } - s.TLSNextProto[NextProtoTLS] = protoHandler + s.TLSNextProto[NextProtoTLS] = func(hs *http.Server, c *tls.Conn, h http.Handler) { + protoHandler(hs, c, h, false) + } + // The "unencrypted_http2" TLSNextProto key is used to pass off non-TLS HTTP/2 conns. + // + // A connection passed in this method has already had the HTTP/2 preface read from it. + s.TLSNextProto[nextProtoUnencryptedHTTP2] = func(hs *http.Server, c *tls.Conn, h http.Handler) { + nc, err := unencryptedNetConnFromTLSConn(c) + if err != nil { + if lg := hs.ErrorLog; lg != nil { + lg.Print(err) + } else { + log.Print(err) + } + go c.Close() + return + } + protoHandler(hs, nc, h, true) + } return nil } @@ -440,13 +429,15 @@ func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverCon baseCtx, cancel := serverConnBaseContext(c, opts) defer cancel() + http1srv := opts.baseConfig() + conf := configFromServer(http1srv, s) sc := &serverConn{ srv: s, - hs: opts.baseConfig(), + hs: http1srv, conn: c, baseCtx: baseCtx, remoteAddrStr: c.RemoteAddr().String(), - bw: newBufferedWriter(c), + bw: newBufferedWriter(s.group, c, conf.WriteByteTimeout), handler: opts.handler(), streams: make(map[uint32]*stream), readFrameCh: make(chan readFrameResult), @@ -456,9 +447,12 @@ func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverCon bodyReadCh: make(chan bodyReadMsg), // buffering doesn't matter either way doneServing: make(chan struct{}), clientMaxStreams: math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value" - advMaxStreams: s.maxConcurrentStreams(), + advMaxStreams: conf.MaxConcurrentStreams, initialStreamSendWindowSize: initialWindowSize, + initialStreamRecvWindowSize: conf.MaxUploadBufferPerStream, maxFrameSize: initialMaxFrameSize, + pingTimeout: conf.PingTimeout, + countErrorFunc: conf.CountError, serveG: newGoroutineLock(), pushEnabled: true, sawClientPreface: opts.SawClientPreface, @@ -491,15 +485,15 @@ func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverCon sc.flow.add(initialWindowSize) sc.inflow.init(initialWindowSize) sc.hpackEncoder = hpack.NewEncoder(&sc.headerWriteBuf) - sc.hpackEncoder.SetMaxDynamicTableSizeLimit(s.maxEncoderHeaderTableSize()) + sc.hpackEncoder.SetMaxDynamicTableSizeLimit(conf.MaxEncoderHeaderTableSize) fr := NewFramer(sc.bw, c) - if s.CountError != nil { - fr.countError = s.CountError + if conf.CountError != nil { + fr.countError = conf.CountError } - fr.ReadMetaHeaders = hpack.NewDecoder(s.maxDecoderHeaderTableSize(), nil) + fr.ReadMetaHeaders = hpack.NewDecoder(conf.MaxDecoderHeaderTableSize, nil) fr.MaxHeaderListSize = sc.maxHeaderListSize() - fr.SetMaxReadFrameSize(s.maxReadFrameSize()) + fr.SetMaxReadFrameSize(conf.MaxReadFrameSize) sc.framer = fr if tc, ok := c.(connectionStater); ok { @@ -532,7 +526,7 @@ func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverCon // So for now, do nothing here again. } - if !s.PermitProhibitedCipherSuites && isBadCipher(sc.tlsState.CipherSuite) { + if !conf.PermitProhibitedCipherSuites && isBadCipher(sc.tlsState.CipherSuite) { // "Endpoints MAY choose to generate a connection error // (Section 5.4.1) of type INADEQUATE_SECURITY if one of // the prohibited cipher suites are negotiated." @@ -569,7 +563,7 @@ func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverCon opts.UpgradeRequest = nil } - sc.serve() + sc.serve(conf) } func serverConnBaseContext(c net.Conn, opts *ServeConnOpts) (ctx context.Context, cancel func()) { @@ -609,6 +603,7 @@ type serverConn struct { tlsState *tls.ConnectionState // shared by all handlers, like net/http remoteAddrStr string writeSched WriteScheduler + countErrorFunc func(errType string) // Everything following is owned by the serve loop; use serveG.check(): serveG goroutineLock // used to verify funcs are on serve() @@ -628,6 +623,7 @@ type serverConn struct { streams map[uint32]*stream unstartedHandlers []unstartedHandler initialStreamSendWindowSize int32 + initialStreamRecvWindowSize int32 maxFrameSize int32 peerMaxHeaderListSize uint32 // zero means unknown (default) canonHeader map[string]string // http2-lower-case -> Go-Canonical-Case @@ -638,9 +634,14 @@ type serverConn struct { inGoAway bool // we've started to or sent GOAWAY inFrameScheduleLoop bool // whether we're in the scheduleFrameWrite loop needToSendGoAway bool // we need to schedule a GOAWAY frame write + pingSent bool + sentPingData [8]byte goAwayCode ErrCode shutdownTimer timer // nil until used idleTimer timer // nil if unused + readIdleTimeout time.Duration + pingTimeout time.Duration + readIdleTimer timer // nil if unused // Owned by the writeFrameAsync goroutine: headerWriteBuf bytes.Buffer @@ -655,11 +656,7 @@ func (sc *serverConn) maxHeaderListSize() uint32 { if n <= 0 { n = http.DefaultMaxHeaderBytes } - // http2's count is in a slightly different unit and includes 32 bytes per pair. - // So, take the net/http.Server value and pad it up a bit, assuming 10 headers. - const perFieldOverhead = 32 // per http2 spec - const typicalHeaders = 10 // conservative - return uint32(n + typicalHeaders*perFieldOverhead) + return uint32(adjustHTTP1MaxHeaderSize(int64(n))) } func (sc *serverConn) curOpenStreams() uint32 { @@ -923,7 +920,7 @@ func (sc *serverConn) notePanic() { } } -func (sc *serverConn) serve() { +func (sc *serverConn) serve(conf http2Config) { sc.serveG.check() defer sc.notePanic() defer sc.conn.Close() @@ -935,20 +932,24 @@ func (sc *serverConn) serve() { sc.vlogf("http2: server connection from %v on %p", sc.conn.RemoteAddr(), sc.hs) } + settings := writeSettings{ + {SettingMaxFrameSize, conf.MaxReadFrameSize}, + {SettingMaxConcurrentStreams, sc.advMaxStreams}, + {SettingMaxHeaderListSize, sc.maxHeaderListSize()}, + {SettingHeaderTableSize, conf.MaxDecoderHeaderTableSize}, + {SettingInitialWindowSize, uint32(sc.initialStreamRecvWindowSize)}, + } + if !disableExtendedConnectProtocol { + settings = append(settings, Setting{SettingEnableConnectProtocol, 1}) + } sc.writeFrame(FrameWriteRequest{ - write: writeSettings{ - {SettingMaxFrameSize, sc.srv.maxReadFrameSize()}, - {SettingMaxConcurrentStreams, sc.advMaxStreams}, - {SettingMaxHeaderListSize, sc.maxHeaderListSize()}, - {SettingHeaderTableSize, sc.srv.maxDecoderHeaderTableSize()}, - {SettingInitialWindowSize, uint32(sc.srv.initialStreamRecvWindowSize())}, - }, + write: settings, }) sc.unackedSettings++ // Each connection starts with initialWindowSize inflow tokens. // If a higher value is configured, we add more tokens. - if diff := sc.srv.initialConnRecvWindowSize() - initialWindowSize; diff > 0 { + if diff := conf.MaxUploadBufferPerConnection - initialWindowSize; diff > 0 { sc.sendWindowUpdate(nil, int(diff)) } @@ -968,11 +969,18 @@ func (sc *serverConn) serve() { defer sc.idleTimer.Stop() } + if conf.SendPingTimeout > 0 { + sc.readIdleTimeout = conf.SendPingTimeout + sc.readIdleTimer = sc.srv.afterFunc(conf.SendPingTimeout, sc.onReadIdleTimer) + defer sc.readIdleTimer.Stop() + } + go sc.readFrames() // closed by defer sc.conn.Close above settingsTimer := sc.srv.afterFunc(firstSettingsTimeout, sc.onSettingsTimer) defer settingsTimer.Stop() + lastFrameTime := sc.srv.now() loopNum := 0 for { loopNum++ @@ -986,6 +994,7 @@ func (sc *serverConn) serve() { case res := <-sc.wroteFrameCh: sc.wroteFrame(res) case res := <-sc.readFrameCh: + lastFrameTime = sc.srv.now() // Process any written frames before reading new frames from the client since a // written frame could have triggered a new stream to be started. if sc.writingFrameAsync { @@ -1017,6 +1026,8 @@ func (sc *serverConn) serve() { case idleTimerMsg: sc.vlogf("connection is idle") sc.goAway(ErrCodeNo) + case readIdleTimerMsg: + sc.handlePingTimer(lastFrameTime) case shutdownTimerMsg: sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr()) return @@ -1039,7 +1050,7 @@ func (sc *serverConn) serve() { // If the peer is causing us to generate a lot of control frames, // but not reading them from us, assume they are trying to make us // run out of memory. - if sc.queuedControlFrames > sc.srv.maxQueuedControlFrames() { + if sc.queuedControlFrames > maxQueuedControlFrames { sc.vlogf("http2: too many control frames in send queue, closing connection") return } @@ -1055,12 +1066,39 @@ func (sc *serverConn) serve() { } } +func (sc *serverConn) handlePingTimer(lastFrameReadTime time.Time) { + if sc.pingSent { + sc.vlogf("timeout waiting for PING response") + sc.conn.Close() + return + } + + pingAt := lastFrameReadTime.Add(sc.readIdleTimeout) + now := sc.srv.now() + if pingAt.After(now) { + // We received frames since arming the ping timer. + // Reset it for the next possible timeout. + sc.readIdleTimer.Reset(pingAt.Sub(now)) + return + } + + sc.pingSent = true + // Ignore crypto/rand.Read errors: It generally can't fail, and worse case if it does + // is we send a PING frame containing 0s. + _, _ = rand.Read(sc.sentPingData[:]) + sc.writeFrame(FrameWriteRequest{ + write: &writePing{data: sc.sentPingData}, + }) + sc.readIdleTimer.Reset(sc.pingTimeout) +} + type serverMessage int // Message values sent to serveMsgCh. var ( settingsTimerMsg = new(serverMessage) idleTimerMsg = new(serverMessage) + readIdleTimerMsg = new(serverMessage) shutdownTimerMsg = new(serverMessage) gracefulShutdownMsg = new(serverMessage) handlerDoneMsg = new(serverMessage) @@ -1068,6 +1106,7 @@ var ( func (sc *serverConn) onSettingsTimer() { sc.sendServeMsg(settingsTimerMsg) } func (sc *serverConn) onIdleTimer() { sc.sendServeMsg(idleTimerMsg) } +func (sc *serverConn) onReadIdleTimer() { sc.sendServeMsg(readIdleTimerMsg) } func (sc *serverConn) onShutdownTimer() { sc.sendServeMsg(shutdownTimerMsg) } func (sc *serverConn) sendServeMsg(msg interface{}) { @@ -1320,6 +1359,10 @@ func (sc *serverConn) wroteFrame(res frameWriteResult) { sc.writingFrame = false sc.writingFrameAsync = false + if res.err != nil { + sc.conn.Close() + } + wr := res.wr if writeEndsStream(wr.write) { @@ -1594,6 +1637,11 @@ func (sc *serverConn) processFrame(f Frame) error { func (sc *serverConn) processPing(f *PingFrame) error { sc.serveG.check() if f.IsAck() { + if sc.pingSent && sc.sentPingData == f.Data { + // This is a response to a PING we sent. + sc.pingSent = false + sc.readIdleTimer.Reset(sc.readIdleTimeout) + } // 6.7 PING: " An endpoint MUST NOT respond to PING frames // containing this flag." return nil @@ -1757,6 +1805,9 @@ func (sc *serverConn) processSetting(s Setting) error { sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31 case SettingMaxHeaderListSize: sc.peerMaxHeaderListSize = s.Val + case SettingEnableConnectProtocol: + // Receipt of this parameter by a server does not + // have any impact default: // Unknown setting: "An endpoint that receives a SETTINGS // frame with any unknown or unsupported identifier MUST @@ -2160,7 +2211,7 @@ func (sc *serverConn) newStream(id, pusherID uint32, state streamState) *stream st.cw.Init() st.flow.conn = &sc.flow // link to conn-level counter st.flow.add(sc.initialStreamSendWindowSize) - st.inflow.init(sc.srv.initialStreamRecvWindowSize()) + st.inflow.init(sc.initialStreamRecvWindowSize) if sc.hs.WriteTimeout > 0 { st.writeDeadline = sc.srv.afterFunc(sc.hs.WriteTimeout, st.onWriteTimeout) } @@ -2187,11 +2238,17 @@ func (sc *serverConn) newWriterAndRequest(st *stream, f *MetaHeadersFrame) (*res scheme: f.PseudoValue("scheme"), authority: f.PseudoValue("authority"), path: f.PseudoValue("path"), + protocol: f.PseudoValue("protocol"), + } + + // extended connect is disabled, so we should not see :protocol + if disableExtendedConnectProtocol && rp.protocol != "" { + return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol)) } isConnect := rp.method == "CONNECT" if isConnect { - if rp.path != "" || rp.scheme != "" || rp.authority == "" { + if rp.protocol == "" && (rp.path != "" || rp.scheme != "" || rp.authority == "") { return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol)) } } else if rp.method == "" || rp.path == "" || (rp.scheme != "https" && rp.scheme != "http") { @@ -2215,6 +2272,9 @@ func (sc *serverConn) newWriterAndRequest(st *stream, f *MetaHeadersFrame) (*res if rp.authority == "" { rp.authority = rp.header.Get("Host") } + if rp.protocol != "" { + rp.header.Set(":protocol", rp.protocol) + } rw, req, err := sc.newWriterAndRequestNoBody(st, rp) if err != nil { @@ -2241,6 +2301,7 @@ func (sc *serverConn) newWriterAndRequest(st *stream, f *MetaHeadersFrame) (*res type requestParam struct { method string scheme, authority, path string + protocol string header http.Header } @@ -2282,7 +2343,7 @@ func (sc *serverConn) newWriterAndRequestNoBody(st *stream, rp requestParam) (*r var url_ *url.URL var requestURI string - if rp.method == "CONNECT" { + if rp.method == "CONNECT" && rp.protocol == "" { url_ = &url.URL{Host: rp.authority} requestURI = rp.authority // mimic HTTP/1 server behavior } else { @@ -2855,6 +2916,11 @@ func (w *responseWriter) SetWriteDeadline(deadline time.Time) error { return nil } +func (w *responseWriter) EnableFullDuplex() error { + // We always support full duplex responses, so this is a no-op. + return nil +} + func (w *responseWriter) Flush() { w.FlushError() } @@ -3301,7 +3367,7 @@ func (sc *serverConn) countError(name string, err error) error { if sc == nil || sc.srv == nil { return err } - f := sc.srv.CountError + f := sc.countErrorFunc if f == nil { return err } diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go index 61f511f97aa..090d0e1bdb5 100644 --- a/vendor/golang.org/x/net/http2/transport.go +++ b/vendor/golang.org/x/net/http2/transport.go @@ -25,7 +25,6 @@ import ( "net/http" "net/http/httptrace" "net/textproto" - "os" "sort" "strconv" "strings" @@ -203,6 +202,20 @@ func (t *Transport) markNewGoroutine() { } } +func (t *Transport) now() time.Time { + if t != nil && t.transportTestHooks != nil { + return t.transportTestHooks.group.Now() + } + return time.Now() +} + +func (t *Transport) timeSince(when time.Time) time.Duration { + if t != nil && t.transportTestHooks != nil { + return t.now().Sub(when) + } + return time.Since(when) +} + // newTimer creates a new time.Timer, or a synthetic timer in tests. func (t *Transport) newTimer(d time.Duration) timer { if t.transportTestHooks != nil { @@ -227,40 +240,26 @@ func (t *Transport) contextWithTimeout(ctx context.Context, d time.Duration) (co } func (t *Transport) maxHeaderListSize() uint32 { - if t.MaxHeaderListSize == 0 { + n := int64(t.MaxHeaderListSize) + if t.t1 != nil && t.t1.MaxResponseHeaderBytes != 0 { + n = t.t1.MaxResponseHeaderBytes + if n > 0 { + n = adjustHTTP1MaxHeaderSize(n) + } + } + if n <= 0 { return 10 << 20 } - if t.MaxHeaderListSize == 0xffffffff { + if n >= 0xffffffff { return 0 } - return t.MaxHeaderListSize -} - -func (t *Transport) maxFrameReadSize() uint32 { - if t.MaxReadFrameSize == 0 { - return 0 // use the default provided by the peer - } - if t.MaxReadFrameSize < minMaxFrameSize { - return minMaxFrameSize - } - if t.MaxReadFrameSize > maxFrameSize { - return maxFrameSize - } - return t.MaxReadFrameSize + return uint32(n) } func (t *Transport) disableCompression() bool { return t.DisableCompression || (t.t1 != nil && t.t1.DisableCompression) } -func (t *Transport) pingTimeout() time.Duration { - if t.PingTimeout == 0 { - return 15 * time.Second - } - return t.PingTimeout - -} - // ConfigureTransport configures a net/http HTTP/1 Transport to use HTTP/2. // It returns an error if t1 has already been HTTP/2-enabled. // @@ -296,8 +295,8 @@ func configureTransports(t1 *http.Transport) (*Transport, error) { if !strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") { t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1") } - upgradeFn := func(authority string, c *tls.Conn) http.RoundTripper { - addr := authorityAddr("https", authority) + upgradeFn := func(scheme, authority string, c net.Conn) http.RoundTripper { + addr := authorityAddr(scheme, authority) if used, err := connPool.addConnIfNeeded(addr, t2, c); err != nil { go c.Close() return erringRoundTripper{err} @@ -308,18 +307,37 @@ func configureTransports(t1 *http.Transport) (*Transport, error) { // was unknown) go c.Close() } + if scheme == "http" { + return (*unencryptedTransport)(t2) + } return t2 } - if m := t1.TLSNextProto; len(m) == 0 { - t1.TLSNextProto = map[string]func(string, *tls.Conn) http.RoundTripper{ - "h2": upgradeFn, + if t1.TLSNextProto == nil { + t1.TLSNextProto = make(map[string]func(string, *tls.Conn) http.RoundTripper) + } + t1.TLSNextProto[NextProtoTLS] = func(authority string, c *tls.Conn) http.RoundTripper { + return upgradeFn("https", authority, c) + } + // The "unencrypted_http2" TLSNextProto key is used to pass off non-TLS HTTP/2 conns. + t1.TLSNextProto[nextProtoUnencryptedHTTP2] = func(authority string, c *tls.Conn) http.RoundTripper { + nc, err := unencryptedNetConnFromTLSConn(c) + if err != nil { + go c.Close() + return erringRoundTripper{err} } - } else { - m["h2"] = upgradeFn + return upgradeFn("http", authority, nc) } return t2, nil } +// unencryptedTransport is a Transport with a RoundTrip method that +// always permits http:// URLs. +type unencryptedTransport Transport + +func (t *unencryptedTransport) RoundTrip(req *http.Request) (*http.Response, error) { + return (*Transport)(t).RoundTripOpt(req, RoundTripOpt{allowHTTP: true}) +} + func (t *Transport) connPool() ClientConnPool { t.connPoolOnce.Do(t.initConnPool) return t.connPoolOrDef @@ -339,7 +357,7 @@ type ClientConn struct { t *Transport tconn net.Conn // usually *tls.Conn, except specialized impls tlsState *tls.ConnectionState // nil only for specialized impls - reused uint32 // whether conn is being reused; atomic + atomicReused uint32 // whether conn is being reused; atomic singleUse bool // whether being used for a single http.Request getConnCalled bool // used by clientConnPool @@ -350,31 +368,54 @@ type ClientConn struct { idleTimeout time.Duration // or 0 for never idleTimer timer - mu sync.Mutex // guards following - cond *sync.Cond // hold mu; broadcast on flow/closed changes - flow outflow // our conn-level flow control quota (cs.outflow is per stream) - inflow inflow // peer's conn-level flow control - doNotReuse bool // whether conn is marked to not be reused for any future requests - closing bool - closed bool - seenSettings bool // true if we've seen a settings frame, false otherwise - wantSettingsAck bool // we sent a SETTINGS frame and haven't heard back - goAway *GoAwayFrame // if non-nil, the GoAwayFrame we received - goAwayDebug string // goAway frame's debug data, retained as a string - streams map[uint32]*clientStream // client-initiated - streamsReserved int // incr by ReserveNewRequest; decr on RoundTrip - nextStreamID uint32 - pendingRequests int // requests blocked and waiting to be sent because len(streams) == maxConcurrentStreams - pings map[[8]byte]chan struct{} // in flight ping data to notification channel - br *bufio.Reader - lastActive time.Time - lastIdle time.Time // time last idle + mu sync.Mutex // guards following + cond *sync.Cond // hold mu; broadcast on flow/closed changes + flow outflow // our conn-level flow control quota (cs.outflow is per stream) + inflow inflow // peer's conn-level flow control + doNotReuse bool // whether conn is marked to not be reused for any future requests + closing bool + closed bool + seenSettings bool // true if we've seen a settings frame, false otherwise + seenSettingsChan chan struct{} // closed when seenSettings is true or frame reading fails + wantSettingsAck bool // we sent a SETTINGS frame and haven't heard back + goAway *GoAwayFrame // if non-nil, the GoAwayFrame we received + goAwayDebug string // goAway frame's debug data, retained as a string + streams map[uint32]*clientStream // client-initiated + streamsReserved int // incr by ReserveNewRequest; decr on RoundTrip + nextStreamID uint32 + pendingRequests int // requests blocked and waiting to be sent because len(streams) == maxConcurrentStreams + pings map[[8]byte]chan struct{} // in flight ping data to notification channel + br *bufio.Reader + lastActive time.Time + lastIdle time.Time // time last idle // Settings from peer: (also guarded by wmu) - maxFrameSize uint32 - maxConcurrentStreams uint32 - peerMaxHeaderListSize uint64 - peerMaxHeaderTableSize uint32 - initialWindowSize uint32 + maxFrameSize uint32 + maxConcurrentStreams uint32 + peerMaxHeaderListSize uint64 + peerMaxHeaderTableSize uint32 + initialWindowSize uint32 + initialStreamRecvWindowSize int32 + readIdleTimeout time.Duration + pingTimeout time.Duration + extendedConnectAllowed bool + + // rstStreamPingsBlocked works around an unfortunate gRPC behavior. + // gRPC strictly limits the number of PING frames that it will receive. + // The default is two pings per two hours, but the limit resets every time + // the gRPC endpoint sends a HEADERS or DATA frame. See golang/go#70575. + // + // rstStreamPingsBlocked is set after receiving a response to a PING frame + // bundled with an RST_STREAM (see pendingResets below), and cleared after + // receiving a HEADERS or DATA frame. + rstStreamPingsBlocked bool + + // pendingResets is the number of RST_STREAM frames we have sent to the peer, + // without confirming that the peer has received them. When we send a RST_STREAM, + // we bundle it with a PING frame, unless a PING is already in flight. We count + // the reset stream against the connection's concurrency limit until we get + // a PING response. This limits the number of requests we'll try to send to a + // completely unresponsive connection. + pendingResets int // reqHeaderMu is a 1-element semaphore channel controlling access to sending new requests. // Write to reqHeaderMu to lock it, read from it to unlock. @@ -432,12 +473,12 @@ type clientStream struct { sentHeaders bool // owned by clientConnReadLoop: - firstByte bool // got the first response byte - pastHeaders bool // got first MetaHeadersFrame (actual headers) - pastTrailers bool // got optional second MetaHeadersFrame (trailers) - num1xx uint8 // number of 1xx responses seen - readClosed bool // peer sent an END_STREAM flag - readAborted bool // read loop reset the stream + firstByte bool // got the first response byte + pastHeaders bool // got first MetaHeadersFrame (actual headers) + pastTrailers bool // got optional second MetaHeadersFrame (trailers) + readClosed bool // peer sent an END_STREAM flag + readAborted bool // read loop reset the stream + totalHeaderSize int64 // total size of 1xx headers seen trailer http.Header // accumulated trailers resTrailer *http.Header // client's Response.Trailer @@ -499,6 +540,7 @@ func (cs *clientStream) closeReqBodyLocked() { } type stickyErrWriter struct { + group synctestGroupInterface conn net.Conn timeout time.Duration err *error @@ -508,22 +550,9 @@ func (sew stickyErrWriter) Write(p []byte) (n int, err error) { if *sew.err != nil { return 0, *sew.err } - for { - if sew.timeout != 0 { - sew.conn.SetWriteDeadline(time.Now().Add(sew.timeout)) - } - nn, err := sew.conn.Write(p[n:]) - n += nn - if n < len(p) && nn > 0 && errors.Is(err, os.ErrDeadlineExceeded) { - // Keep extending the deadline so long as we're making progress. - continue - } - if sew.timeout != 0 { - sew.conn.SetWriteDeadline(time.Time{}) - } - *sew.err = err - return n, err - } + n, err = writeWithByteTimeout(sew.group, sew.conn, sew.timeout, p) + *sew.err = err + return n, err } // noCachedConnError is the concrete type of ErrNoCachedConn, which @@ -554,6 +583,8 @@ type RoundTripOpt struct { // no cached connection is available, RoundTripOpt // will return ErrNoCachedConn. OnlyCachedConn bool + + allowHTTP bool // allow http:// URLs } func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) { @@ -586,7 +617,14 @@ func authorityAddr(scheme string, authority string) (addr string) { // RoundTripOpt is like RoundTrip, but takes options. func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Response, error) { - if !(req.URL.Scheme == "https" || (req.URL.Scheme == "http" && t.AllowHTTP)) { + switch req.URL.Scheme { + case "https": + // Always okay. + case "http": + if !t.AllowHTTP && !opt.allowHTTP { + return nil, errors.New("http2: unencrypted HTTP/2 not enabled") + } + default: return nil, errors.New("http2: unsupported scheme") } @@ -597,7 +635,7 @@ func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Res t.vlogf("http2: Transport failed to get client conn for %s: %v", addr, err) return nil, err } - reused := !atomic.CompareAndSwapUint32(&cc.reused, 0, 1) + reused := !atomic.CompareAndSwapUint32(&cc.atomicReused, 0, 1) traceGotConn(req, cc, reused) res, err := cc.RoundTrip(req) if err != nil && retry <= 6 { @@ -622,6 +660,22 @@ func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Res } } } + if err == errClientConnNotEstablished { + // This ClientConn was created recently, + // this is the first request to use it, + // and the connection is closed and not usable. + // + // In this state, cc.idleTimer will remove the conn from the pool + // when it fires. Stop the timer and remove it here so future requests + // won't try to use this connection. + // + // If the timer has already fired and we're racing it, the redundant + // call to MarkDead is harmless. + if cc.idleTimer != nil { + cc.idleTimer.Stop() + } + t.connPool().MarkDead(cc) + } if err != nil { t.vlogf("RoundTrip failure: %v", err) return nil, err @@ -640,9 +694,10 @@ func (t *Transport) CloseIdleConnections() { } var ( - errClientConnClosed = errors.New("http2: client conn is closed") - errClientConnUnusable = errors.New("http2: client conn not usable") - errClientConnGotGoAway = errors.New("http2: Transport received Server's graceful shutdown GOAWAY") + errClientConnClosed = errors.New("http2: client conn is closed") + errClientConnUnusable = errors.New("http2: client conn not usable") + errClientConnNotEstablished = errors.New("http2: client conn could not be established") + errClientConnGotGoAway = errors.New("http2: Transport received Server's graceful shutdown GOAWAY") ) // shouldRetryRequest is called by RoundTrip when a request fails to get @@ -758,44 +813,38 @@ func (t *Transport) expectContinueTimeout() time.Duration { return t.t1.ExpectContinueTimeout } -func (t *Transport) maxDecoderHeaderTableSize() uint32 { - if v := t.MaxDecoderHeaderTableSize; v > 0 { - return v - } - return initialHeaderTableSize -} - -func (t *Transport) maxEncoderHeaderTableSize() uint32 { - if v := t.MaxEncoderHeaderTableSize; v > 0 { - return v - } - return initialHeaderTableSize -} - func (t *Transport) NewClientConn(c net.Conn) (*ClientConn, error) { return t.newClientConn(c, t.disableKeepAlives()) } func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, error) { + conf := configFromTransport(t) cc := &ClientConn{ - t: t, - tconn: c, - readerDone: make(chan struct{}), - nextStreamID: 1, - maxFrameSize: 16 << 10, // spec default - initialWindowSize: 65535, // spec default - maxConcurrentStreams: initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings. - peerMaxHeaderListSize: 0xffffffffffffffff, // "infinite", per spec. Use 2^64-1 instead. - streams: make(map[uint32]*clientStream), - singleUse: singleUse, - wantSettingsAck: true, - pings: make(map[[8]byte]chan struct{}), - reqHeaderMu: make(chan struct{}, 1), - } + t: t, + tconn: c, + readerDone: make(chan struct{}), + nextStreamID: 1, + maxFrameSize: 16 << 10, // spec default + initialWindowSize: 65535, // spec default + initialStreamRecvWindowSize: conf.MaxUploadBufferPerStream, + maxConcurrentStreams: initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings. + peerMaxHeaderListSize: 0xffffffffffffffff, // "infinite", per spec. Use 2^64-1 instead. + streams: make(map[uint32]*clientStream), + singleUse: singleUse, + seenSettingsChan: make(chan struct{}), + wantSettingsAck: true, + readIdleTimeout: conf.SendPingTimeout, + pingTimeout: conf.PingTimeout, + pings: make(map[[8]byte]chan struct{}), + reqHeaderMu: make(chan struct{}, 1), + lastActive: t.now(), + } + var group synctestGroupInterface if t.transportTestHooks != nil { t.markNewGoroutine() t.transportTestHooks.newclientconn(cc) c = cc.tconn + group = t.group } if VerboseLogs { t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr()) @@ -807,24 +856,23 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro // TODO: adjust this writer size to account for frame size + // MTU + crypto/tls record padding. cc.bw = bufio.NewWriter(stickyErrWriter{ + group: group, conn: c, - timeout: t.WriteByteTimeout, + timeout: conf.WriteByteTimeout, err: &cc.werr, }) cc.br = bufio.NewReader(c) cc.fr = NewFramer(cc.bw, cc.br) - if t.maxFrameReadSize() != 0 { - cc.fr.SetMaxReadFrameSize(t.maxFrameReadSize()) - } + cc.fr.SetMaxReadFrameSize(conf.MaxReadFrameSize) if t.CountError != nil { cc.fr.countError = t.CountError } - maxHeaderTableSize := t.maxDecoderHeaderTableSize() + maxHeaderTableSize := conf.MaxDecoderHeaderTableSize cc.fr.ReadMetaHeaders = hpack.NewDecoder(maxHeaderTableSize, nil) cc.fr.MaxHeaderListSize = t.maxHeaderListSize() cc.henc = hpack.NewEncoder(&cc.hbuf) - cc.henc.SetMaxDynamicTableSizeLimit(t.maxEncoderHeaderTableSize()) + cc.henc.SetMaxDynamicTableSizeLimit(conf.MaxEncoderHeaderTableSize) cc.peerMaxHeaderTableSize = initialHeaderTableSize if cs, ok := c.(connectionStater); ok { @@ -834,11 +882,9 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro initialSettings := []Setting{ {ID: SettingEnablePush, Val: 0}, - {ID: SettingInitialWindowSize, Val: transportDefaultStreamFlow}, - } - if max := t.maxFrameReadSize(); max != 0 { - initialSettings = append(initialSettings, Setting{ID: SettingMaxFrameSize, Val: max}) + {ID: SettingInitialWindowSize, Val: uint32(cc.initialStreamRecvWindowSize)}, } + initialSettings = append(initialSettings, Setting{ID: SettingMaxFrameSize, Val: conf.MaxReadFrameSize}) if max := t.maxHeaderListSize(); max != 0 { initialSettings = append(initialSettings, Setting{ID: SettingMaxHeaderListSize, Val: max}) } @@ -848,8 +894,8 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro cc.bw.Write(clientPreface) cc.fr.WriteSettings(initialSettings...) - cc.fr.WriteWindowUpdate(0, transportDefaultConnFlow) - cc.inflow.init(transportDefaultConnFlow + initialWindowSize) + cc.fr.WriteWindowUpdate(0, uint32(conf.MaxUploadBufferPerConnection)) + cc.inflow.init(conf.MaxUploadBufferPerConnection + initialWindowSize) cc.bw.Flush() if cc.werr != nil { cc.Close() @@ -867,7 +913,7 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro } func (cc *ClientConn) healthCheck() { - pingTimeout := cc.t.pingTimeout() + pingTimeout := cc.pingTimeout // We don't need to periodically ping in the health check, because the readLoop of ClientConn will // trigger the healthCheck again if there is no frame received. ctx, cancel := cc.t.contextWithTimeout(context.Background(), pingTimeout) @@ -995,7 +1041,7 @@ func (cc *ClientConn) State() ClientConnState { return ClientConnState{ Closed: cc.closed, Closing: cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil, - StreamsActive: len(cc.streams), + StreamsActive: len(cc.streams) + cc.pendingResets, StreamsReserved: cc.streamsReserved, StreamsPending: cc.pendingRequests, LastIdle: cc.lastIdle, @@ -1027,16 +1073,38 @@ func (cc *ClientConn) idleStateLocked() (st clientConnIdleState) { // writing it. maxConcurrentOkay = true } else { - maxConcurrentOkay = int64(len(cc.streams)+cc.streamsReserved+1) <= int64(cc.maxConcurrentStreams) + // We can take a new request if the total of + // - active streams; + // - reservation slots for new streams; and + // - streams for which we have sent a RST_STREAM and a PING, + // but received no subsequent frame + // is less than the concurrency limit. + maxConcurrentOkay = cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) } st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay && !cc.doNotReuse && int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 && !cc.tooIdleLocked() + + // If this connection has never been used for a request and is closed, + // then let it take a request (which will fail). + // + // This avoids a situation where an error early in a connection's lifetime + // goes unreported. + if cc.nextStreamID == 1 && cc.streamsReserved == 0 && cc.closed { + st.canTakeNewRequest = true + } + return } +// currentRequestCountLocked reports the number of concurrency slots currently in use, +// including active streams, reserved slots, and reset streams waiting for acknowledgement. +func (cc *ClientConn) currentRequestCountLocked() int { + return len(cc.streams) + cc.streamsReserved + cc.pendingResets +} + func (cc *ClientConn) canTakeNewRequestLocked() bool { st := cc.idleStateLocked() return st.canTakeNewRequest @@ -1049,7 +1117,7 @@ func (cc *ClientConn) tooIdleLocked() bool { // times are compared based on their wall time. We don't want // to reuse a connection that's been sitting idle during // VM/laptop suspend if monotonic time was also frozen. - return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && time.Since(cc.lastIdle.Round(0)) > cc.idleTimeout + return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && cc.t.timeSince(cc.lastIdle.Round(0)) > cc.idleTimeout } // onIdleTimeout is called from a time.AfterFunc goroutine. It will @@ -1411,6 +1479,8 @@ func (cs *clientStream) doRequest(req *http.Request, streamf func(*clientStream) cs.cleanupWriteRequest(err) } +var errExtendedConnectNotSupported = errors.New("net/http: extended connect not supported by peer") + // writeRequest sends a request. // // It returns nil after the request is written, the response read, @@ -1426,12 +1496,31 @@ func (cs *clientStream) writeRequest(req *http.Request, streamf func(*clientStre return err } + // wait for setting frames to be received, a server can change this value later, + // but we just wait for the first settings frame + var isExtendedConnect bool + if req.Method == "CONNECT" && req.Header.Get(":protocol") != "" { + isExtendedConnect = true + } + // Acquire the new-request lock by writing to reqHeaderMu. // This lock guards the critical section covering allocating a new stream ID // (requires mu) and creating the stream (requires wmu). if cc.reqHeaderMu == nil { panic("RoundTrip on uninitialized ClientConn") // for tests } + if isExtendedConnect { + select { + case <-cs.reqCancel: + return errRequestCanceled + case <-ctx.Done(): + return ctx.Err() + case <-cc.seenSettingsChan: + if !cc.extendedConnectAllowed { + return errExtendedConnectNotSupported + } + } + } select { case cc.reqHeaderMu <- struct{}{}: case <-cs.reqCancel: @@ -1613,6 +1702,7 @@ func (cs *clientStream) cleanupWriteRequest(err error) { cs.reqBodyClosed = make(chan struct{}) } bodyClosed := cs.reqBodyClosed + closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil cc.mu.Unlock() if mustCloseBody { cs.reqBody.Close() @@ -1637,16 +1727,44 @@ func (cs *clientStream) cleanupWriteRequest(err error) { if cs.sentHeaders { if se, ok := err.(StreamError); ok { if se.Cause != errFromPeer { - cc.writeStreamReset(cs.ID, se.Code, err) + cc.writeStreamReset(cs.ID, se.Code, false, err) } } else { - cc.writeStreamReset(cs.ID, ErrCodeCancel, err) + // We're cancelling an in-flight request. + // + // This could be due to the server becoming unresponsive. + // To avoid sending too many requests on a dead connection, + // we let the request continue to consume a concurrency slot + // until we can confirm the server is still responding. + // We do this by sending a PING frame along with the RST_STREAM + // (unless a ping is already in flight). + // + // For simplicity, we don't bother tracking the PING payload: + // We reset cc.pendingResets any time we receive a PING ACK. + // + // We skip this if the conn is going to be closed on idle, + // because it's short lived and will probably be closed before + // we get the ping response. + ping := false + if !closeOnIdle { + cc.mu.Lock() + // rstStreamPingsBlocked works around a gRPC behavior: + // see comment on the field for details. + if !cc.rstStreamPingsBlocked { + if cc.pendingResets == 0 { + ping = true + } + cc.pendingResets++ + } + cc.mu.Unlock() + } + cc.writeStreamReset(cs.ID, ErrCodeCancel, ping, err) } } cs.bufPipe.CloseWithError(err) // no-op if already closed } else { if cs.sentHeaders && !cs.sentEndStream { - cc.writeStreamReset(cs.ID, ErrCodeNo, nil) + cc.writeStreamReset(cs.ID, ErrCodeNo, false, nil) } cs.bufPipe.CloseWithError(errRequestCanceled) } @@ -1668,12 +1786,17 @@ func (cs *clientStream) cleanupWriteRequest(err error) { // Must hold cc.mu. func (cc *ClientConn) awaitOpenSlotForStreamLocked(cs *clientStream) error { for { - cc.lastActive = time.Now() + if cc.closed && cc.nextStreamID == 1 && cc.streamsReserved == 0 { + // This is the very first request sent to this connection. + // Return a fatal error which aborts the retry loop. + return errClientConnNotEstablished + } + cc.lastActive = cc.t.now() if cc.closed || !cc.canTakeNewRequestLocked() { return errClientConnUnusable } cc.lastIdle = time.Time{} - if int64(len(cc.streams)) < int64(cc.maxConcurrentStreams) { + if cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) { return nil } cc.pendingRequests++ @@ -1945,7 +2068,7 @@ func (cs *clientStream) awaitFlowControl(maxBytes int) (taken int32, err error) func validateHeaders(hdrs http.Header) string { for k, vv := range hdrs { - if !httpguts.ValidHeaderFieldName(k) { + if !httpguts.ValidHeaderFieldName(k) && k != ":protocol" { return fmt.Sprintf("name %q", k) } for _, v := range vv { @@ -1961,6 +2084,10 @@ func validateHeaders(hdrs http.Header) string { var errNilRequestURL = errors.New("http2: Request.URI is nil") +func isNormalConnect(req *http.Request) bool { + return req.Method == "CONNECT" && req.Header.Get(":protocol") == "" +} + // requires cc.wmu be held. func (cc *ClientConn) encodeHeaders(req *http.Request, addGzipHeader bool, trailers string, contentLength int64) ([]byte, error) { cc.hbuf.Reset() @@ -1981,7 +2108,7 @@ func (cc *ClientConn) encodeHeaders(req *http.Request, addGzipHeader bool, trail } var path string - if req.Method != "CONNECT" { + if !isNormalConnect(req) { path = req.URL.RequestURI() if !validPseudoPath(path) { orig := path @@ -2018,7 +2145,7 @@ func (cc *ClientConn) encodeHeaders(req *http.Request, addGzipHeader bool, trail m = http.MethodGet } f(":method", m) - if req.Method != "CONNECT" { + if !isNormalConnect(req) { f(":path", path) f(":scheme", req.URL.Scheme) } @@ -2199,7 +2326,7 @@ type resAndError struct { func (cc *ClientConn) addStreamLocked(cs *clientStream) { cs.flow.add(int32(cc.initialWindowSize)) cs.flow.setConnFlow(&cc.flow) - cs.inflow.init(transportDefaultStreamFlow) + cs.inflow.init(cc.initialStreamRecvWindowSize) cs.ID = cc.nextStreamID cc.nextStreamID += 2 cc.streams[cs.ID] = cs @@ -2215,10 +2342,10 @@ func (cc *ClientConn) forgetStreamID(id uint32) { if len(cc.streams) != slen-1 { panic("forgetting unknown stream id") } - cc.lastActive = time.Now() + cc.lastActive = cc.t.now() if len(cc.streams) == 0 && cc.idleTimer != nil { cc.idleTimer.Reset(cc.idleTimeout) - cc.lastIdle = time.Now() + cc.lastIdle = cc.t.now() } // Wake up writeRequestBody via clientStream.awaitFlowControl and // wake up RoundTrip if there is a pending request. @@ -2278,7 +2405,6 @@ func isEOFOrNetReadError(err error) bool { func (rl *clientConnReadLoop) cleanup() { cc := rl.cc - cc.t.connPool().MarkDead(cc) defer cc.closeConn() defer close(cc.readerDone) @@ -2302,6 +2428,24 @@ func (rl *clientConnReadLoop) cleanup() { } cc.closed = true + // If the connection has never been used, and has been open for only a short time, + // leave it in the connection pool for a little while. + // + // This avoids a situation where new connections are constantly created, + // added to the pool, fail, and are removed from the pool, without any error + // being surfaced to the user. + const unusedWaitTime = 5 * time.Second + idleTime := cc.t.now().Sub(cc.lastActive) + if atomic.LoadUint32(&cc.atomicReused) == 0 && idleTime < unusedWaitTime { + cc.idleTimer = cc.t.afterFunc(unusedWaitTime-idleTime, func() { + cc.t.connPool().MarkDead(cc) + }) + } else { + cc.mu.Unlock() // avoid any deadlocks in MarkDead + cc.t.connPool().MarkDead(cc) + cc.mu.Lock() + } + for _, cs := range cc.streams { select { case <-cs.peerClosed: @@ -2345,7 +2489,7 @@ func (cc *ClientConn) countReadFrameError(err error) { func (rl *clientConnReadLoop) run() error { cc := rl.cc gotSettings := false - readIdleTimeout := cc.t.ReadIdleTimeout + readIdleTimeout := cc.readIdleTimeout var t timer if readIdleTimeout != 0 { t = cc.t.afterFunc(readIdleTimeout, cc.healthCheck) @@ -2359,7 +2503,7 @@ func (rl *clientConnReadLoop) run() error { cc.vlogf("http2: Transport readFrame error on conn %p: (%T) %v", cc, err, err) } if se, ok := err.(StreamError); ok { - if cs := rl.streamByID(se.StreamID); cs != nil { + if cs := rl.streamByID(se.StreamID, notHeaderOrDataFrame); cs != nil { if se.Cause == nil { se.Cause = cc.fr.errDetail } @@ -2405,13 +2549,16 @@ func (rl *clientConnReadLoop) run() error { if VerboseLogs { cc.vlogf("http2: Transport conn %p received error from processing frame %v: %v", cc, summarizeFrame(f), err) } + if !cc.seenSettings { + close(cc.seenSettingsChan) + } return err } } } func (rl *clientConnReadLoop) processHeaders(f *MetaHeadersFrame) error { - cs := rl.streamByID(f.StreamID) + cs := rl.streamByID(f.StreamID, headerOrDataFrame) if cs == nil { // We'd get here if we canceled a request while the // server had its response still in flight. So if this @@ -2529,15 +2676,34 @@ func (rl *clientConnReadLoop) handleResponse(cs *clientStream, f *MetaHeadersFra if f.StreamEnded() { return nil, errors.New("1xx informational response with END_STREAM flag") } - cs.num1xx++ - const max1xxResponses = 5 // arbitrary bound on number of informational responses, same as net/http - if cs.num1xx > max1xxResponses { - return nil, errors.New("http2: too many 1xx informational responses") - } if fn := cs.get1xxTraceFunc(); fn != nil { + // If the 1xx response is being delivered to the user, + // then they're responsible for limiting the number + // of responses. if err := fn(statusCode, textproto.MIMEHeader(header)); err != nil { return nil, err } + } else { + // If the user didn't examine the 1xx response, then we + // limit the size of all 1xx headers. + // + // This differs a bit from the HTTP/1 implementation, which + // limits the size of all 1xx headers plus the final response. + // Use the larger limit of MaxHeaderListSize and + // net/http.Transport.MaxResponseHeaderBytes. + limit := int64(cs.cc.t.maxHeaderListSize()) + if t1 := cs.cc.t.t1; t1 != nil && t1.MaxResponseHeaderBytes > limit { + limit = t1.MaxResponseHeaderBytes + } + for _, h := range f.Fields { + cs.totalHeaderSize += int64(h.Size()) + } + if cs.totalHeaderSize > limit { + if VerboseLogs { + log.Printf("http2: 1xx informational responses too large") + } + return nil, errors.New("header list too large") + } } if statusCode == 100 { traceGot100Continue(cs.trace) @@ -2721,7 +2887,7 @@ func (b transportResponseBody) Close() error { func (rl *clientConnReadLoop) processData(f *DataFrame) error { cc := rl.cc - cs := rl.streamByID(f.StreamID) + cs := rl.streamByID(f.StreamID, headerOrDataFrame) data := f.Data() if cs == nil { cc.mu.Lock() @@ -2856,9 +3022,22 @@ func (rl *clientConnReadLoop) endStreamError(cs *clientStream, err error) { cs.abortStream(err) } -func (rl *clientConnReadLoop) streamByID(id uint32) *clientStream { +// Constants passed to streamByID for documentation purposes. +const ( + headerOrDataFrame = true + notHeaderOrDataFrame = false +) + +// streamByID returns the stream with the given id, or nil if no stream has that id. +// If headerOrData is true, it clears rst.StreamPingsBlocked. +func (rl *clientConnReadLoop) streamByID(id uint32, headerOrData bool) *clientStream { rl.cc.mu.Lock() defer rl.cc.mu.Unlock() + if headerOrData { + // Work around an unfortunate gRPC behavior. + // See comment on ClientConn.rstStreamPingsBlocked for details. + rl.cc.rstStreamPingsBlocked = false + } cs := rl.cc.streams[id] if cs != nil && !cs.readAborted { return cs @@ -2952,6 +3131,21 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error { case SettingHeaderTableSize: cc.henc.SetMaxDynamicTableSize(s.Val) cc.peerMaxHeaderTableSize = s.Val + case SettingEnableConnectProtocol: + if err := s.Valid(); err != nil { + return err + } + // If the peer wants to send us SETTINGS_ENABLE_CONNECT_PROTOCOL, + // we require that it do so in the first SETTINGS frame. + // + // When we attempt to use extended CONNECT, we wait for the first + // SETTINGS frame to see if the server supports it. If we let the + // server enable the feature with a later SETTINGS frame, then + // users will see inconsistent results depending on whether we've + // seen that frame or not. + if !cc.seenSettings { + cc.extendedConnectAllowed = s.Val == 1 + } default: cc.vlogf("Unhandled Setting: %v", s) } @@ -2969,6 +3163,7 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error { // connection can establish to our default. cc.maxConcurrentStreams = defaultMaxConcurrentStreams } + close(cc.seenSettingsChan) cc.seenSettings = true } @@ -2977,7 +3172,7 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error { func (rl *clientConnReadLoop) processWindowUpdate(f *WindowUpdateFrame) error { cc := rl.cc - cs := rl.streamByID(f.StreamID) + cs := rl.streamByID(f.StreamID, notHeaderOrDataFrame) if f.StreamID != 0 && cs == nil { return nil } @@ -3006,7 +3201,7 @@ func (rl *clientConnReadLoop) processWindowUpdate(f *WindowUpdateFrame) error { } func (rl *clientConnReadLoop) processResetStream(f *RSTStreamFrame) error { - cs := rl.streamByID(f.StreamID) + cs := rl.streamByID(f.StreamID, notHeaderOrDataFrame) if cs == nil { // TODO: return error if server tries to RST_STREAM an idle stream return nil @@ -3081,6 +3276,12 @@ func (rl *clientConnReadLoop) processPing(f *PingFrame) error { close(c) delete(cc.pings, f.Data) } + if cc.pendingResets > 0 { + // See clientStream.cleanupWriteRequest. + cc.pendingResets = 0 + cc.rstStreamPingsBlocked = true + cc.cond.Broadcast() + } return nil } cc := rl.cc @@ -3103,13 +3304,20 @@ func (rl *clientConnReadLoop) processPushPromise(f *PushPromiseFrame) error { return ConnectionError(ErrCodeProtocol) } -func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, err error) { +// writeStreamReset sends a RST_STREAM frame. +// When ping is true, it also sends a PING frame with a random payload. +func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, ping bool, err error) { // TODO: map err to more interesting error codes, once the // HTTP community comes up with some. But currently for // RST_STREAM there's no equivalent to GOAWAY frame's debug // data, and the error codes are all pretty vague ("cancel"). cc.wmu.Lock() cc.fr.WriteRSTStream(streamID, code) + if ping { + var payload [8]byte + rand.Read(payload[:]) + cc.fr.WritePing(false, payload) + } cc.bw.Flush() cc.wmu.Unlock() } @@ -3263,7 +3471,7 @@ func traceGotConn(req *http.Request, cc *ClientConn, reused bool) { cc.mu.Lock() ci.WasIdle = len(cc.streams) == 0 && reused if ci.WasIdle && !cc.lastActive.IsZero() { - ci.IdleTime = time.Since(cc.lastActive) + ci.IdleTime = cc.t.timeSince(cc.lastActive) } cc.mu.Unlock() diff --git a/vendor/golang.org/x/net/http2/unencrypted.go b/vendor/golang.org/x/net/http2/unencrypted.go new file mode 100644 index 00000000000..b2de2116135 --- /dev/null +++ b/vendor/golang.org/x/net/http2/unencrypted.go @@ -0,0 +1,32 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package http2 + +import ( + "crypto/tls" + "errors" + "net" +) + +const nextProtoUnencryptedHTTP2 = "unencrypted_http2" + +// unencryptedNetConnFromTLSConn retrieves a net.Conn wrapped in a *tls.Conn. +// +// TLSNextProto functions accept a *tls.Conn. +// +// When passing an unencrypted HTTP/2 connection to a TLSNextProto function, +// we pass a *tls.Conn with an underlying net.Conn containing the unencrypted connection. +// To be extra careful about mistakes (accidentally dropping TLS encryption in a place +// where we want it), the tls.Conn contains a net.Conn with an UnencryptedNetConn method +// that returns the actual connection we want to use. +func unencryptedNetConnFromTLSConn(tc *tls.Conn) (net.Conn, error) { + conner, ok := tc.NetConn().(interface { + UnencryptedNetConn() net.Conn + }) + if !ok { + return nil, errors.New("http2: TLS conn unexpectedly found in unencrypted handoff") + } + return conner.UnencryptedNetConn(), nil +} diff --git a/vendor/golang.org/x/net/http2/write.go b/vendor/golang.org/x/net/http2/write.go index 33f61398a12..6ff6bee7e95 100644 --- a/vendor/golang.org/x/net/http2/write.go +++ b/vendor/golang.org/x/net/http2/write.go @@ -131,6 +131,16 @@ func (se StreamError) writeFrame(ctx writeContext) error { func (se StreamError) staysWithinBuffer(max int) bool { return frameHeaderLen+4 <= max } +type writePing struct { + data [8]byte +} + +func (w writePing) writeFrame(ctx writeContext) error { + return ctx.Framer().WritePing(false, w.data) +} + +func (w writePing) staysWithinBuffer(max int) bool { return frameHeaderLen+len(w.data) <= max } + type writePingAck struct{ pf *PingFrame } func (w writePingAck) writeFrame(ctx writeContext) error { diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go index cebde7634f3..3c9576e2d83 100644 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go +++ b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go @@ -4,27 +4,27 @@ package socket type iovec struct { - Base *byte - Len uint64 + Base *byte + Len uint64 } type msghdr struct { - Name *byte - Namelen uint32 - Iov *iovec - Iovlen uint32 - Control *byte - Controllen uint32 - Flags int32 + Name *byte + Namelen uint32 + Iov *iovec + Iovlen uint32 + Control *byte + Controllen uint32 + Flags int32 } type cmsghdr struct { - Len uint32 - Level int32 - Type int32 + Len uint32 + Level int32 + Type int32 } const ( - sizeofIovec = 0x10 - sizeofMsghdr = 0x30 + sizeofIovec = 0x10 + sizeofMsghdr = 0x30 ) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go index cebde7634f3..3c9576e2d83 100644 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go +++ b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go @@ -4,27 +4,27 @@ package socket type iovec struct { - Base *byte - Len uint64 + Base *byte + Len uint64 } type msghdr struct { - Name *byte - Namelen uint32 - Iov *iovec - Iovlen uint32 - Control *byte - Controllen uint32 - Flags int32 + Name *byte + Namelen uint32 + Iov *iovec + Iovlen uint32 + Control *byte + Controllen uint32 + Flags int32 } type cmsghdr struct { - Len uint32 - Level int32 - Type int32 + Len uint32 + Level int32 + Type int32 } const ( - sizeofIovec = 0x10 - sizeofMsghdr = 0x30 + sizeofIovec = 0x10 + sizeofMsghdr = 0x30 ) diff --git a/vendor/golang.org/x/net/websocket/websocket.go b/vendor/golang.org/x/net/websocket/websocket.go index 923a5780ec5..ac76165cebb 100644 --- a/vendor/golang.org/x/net/websocket/websocket.go +++ b/vendor/golang.org/x/net/websocket/websocket.go @@ -8,7 +8,7 @@ // This package currently lacks some features found in an alternative // and more actively maintained WebSocket package: // -// https://pkg.go.dev/nhooyr.io/websocket +// https://pkg.go.dev/github.com/coder/websocket package websocket // import "golang.org/x/net/websocket" import ( diff --git a/vendor/modules.txt b/vendor/modules.txt index 2aed14612b7..674f96e6623 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1352,7 +1352,7 @@ golang.org/x/exp/slices # golang.org/x/mod v0.21.0 ## explicit; go 1.22.0 golang.org/x/mod/semver -# golang.org/x/net v0.29.0 +# golang.org/x/net v0.33.0 ## explicit; go 1.18 golang.org/x/net/bpf golang.org/x/net/context/ctxhttp From b7d9445b8230f76e11dc1da8e1d1a0292fe9912e Mon Sep 17 00:00:00 2001 From: Vladimir Varankin Date: Mon, 6 Jan 2025 13:03:47 +0100 Subject: [PATCH 7/7] [release-2.14] Prepare 2.14.3 patch release (#10352) * update changelog Signed-off-by: Vladimir Varankin * prepare patch release Signed-off-by: Vladimir Varankin * rebuild assets Signed-off-by: Vladimir Varankin --------- Signed-off-by: Vladimir Varankin --- CHANGELOG.md | 7 ++++ VERSION | 2 +- operations/mimir-rules-action/Dockerfile | 2 +- .../test-all-components-generated.yaml | 18 ++++----- ...onents-with-custom-max-skew-generated.yaml | 18 ++++----- ...-with-custom-runtime-config-generated.yaml | 18 ++++----- ...-tsdb-head-early-compaction-generated.yaml | 18 ++++----- ...nts-without-chunk-streaming-generated.yaml | 18 ++++----- .../test-automated-downscale-generated.yaml | 26 ++++++------ ...test-automated-downscale-v2-generated.yaml | 26 ++++++------ ...g-custom-target-utilization-generated.yaml | 24 +++++------ .../test-autoscaling-generated.yaml | 24 +++++------ ...ompactor-concurrent-rollout-generated.yaml | 14 +++---- ...out-max-unavailable-percent-generated.yaml | 14 +++---- .../mimir-tests/test-consul-generated.yaml | 18 ++++----- .../test-consul-multi-zone-generated.yaml | 26 ++++++------ .../test-consul-ruler-disabled-generated.yaml | 16 ++++---- .../test-continuous-test-generated.yaml | 16 ++++---- .../mimir-tests/test-defaults-generated.yaml | 14 +++---- ...t-deployment-mode-migration-generated.yaml | 40 +++++++++---------- .../mimir-tests/test-env-vars-generated.yaml | 18 ++++----- .../test-etcd-replicas-generated.yaml | 14 +++---- .../test-extra-runtime-config-generated.yaml | 18 ++++----- .../test-helm-parity-generated.yaml | 20 +++++----- ...st-storage-migration-step-0-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-1-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-10-generated.yaml | 30 +++++++------- ...t-storage-migration-step-11-generated.yaml | 30 +++++++------- ...st-storage-migration-step-2-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-3-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-4-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-5a-generated.yaml | 38 +++++++++--------- ...t-storage-migration-step-5b-generated.yaml | 38 +++++++++--------- ...st-storage-migration-step-6-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-7-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-8-generated.yaml | 32 +++++++-------- ...st-storage-migration-step-9-generated.yaml | 30 +++++++------- ...torage-migration-step-final-generated.yaml | 32 +++++++-------- ...bel-migration-step-0-before-generated.yaml | 18 ++++----- ...ster-label-migration-step-1-generated.yaml | 18 ++++----- ...ster-label-migration-step-2-generated.yaml | 18 ++++----- ...ster-label-migration-step-3-generated.yaml | 18 ++++----- ...ist-migration-step-0-before-generated.yaml | 18 ++++----- ...memberlist-migration-step-1-generated.yaml | 18 ++++----- ...memberlist-migration-step-2-generated.yaml | 18 ++++----- ...memberlist-migration-step-3-generated.yaml | 18 ++++----- ...memberlist-migration-step-4-generated.yaml | 18 ++++----- ...memberlist-migration-step-5-generated.yaml | 18 ++++----- ...list-migration-step-6-final-generated.yaml | 18 ++++----- .../test-memcached-mtls-generated.yaml | 18 ++++----- .../test-multi-zone-generated.yaml | 26 ++++++------ ...zone-with-ongoing-migration-generated.yaml | 30 +++++++------- ...teway-automated-downscaling-generated.yaml | 26 ++++++------ ...-new-resource-scaled-object-generated.yaml | 14 +++---- ...-node-selector-and-affinity-generated.yaml | 14 +++---- .../test-pvc-auto-deletion-generated.yaml | 22 +++++----- ...query-scheduler-consul-ring-generated.yaml | 18 ++++----- ...and-ruler-remote-evaluation-generated.yaml | 24 +++++------ ...y-scheduler-memberlist-ring-generated.yaml | 18 ++++----- ...ist-ring-read-path-disabled-generated.yaml | 18 ++++----- .../test-query-sharding-generated.yaml | 18 ++++----- ...ployment-mode-s3-autoscaled-generated.yaml | 14 +++---- ...ent-mode-s3-caches-disabled-generated.yaml | 14 +++---- ...ad-write-deployment-mode-s3-generated.yaml | 14 +++---- ...est-ruler-remote-evaluation-generated.yaml | 24 +++++------ ...remote-evaluation-migration-generated.yaml | 24 +++++------ .../test-shuffle-sharding-generated.yaml | 18 ++++----- ...sharding-partitions-enabled-generated.yaml | 18 ++++----- ...sharding-read-path-disabled-generated.yaml | 18 ++++----- .../test-storage-azure-generated.yaml | 18 ++++----- .../test-storage-gcs-generated.yaml | 18 ++++----- .../test-storage-gcs-redis-generated.yaml | 18 ++++----- .../test-storage-s3-generated.yaml | 18 ++++----- ...est-without-query-scheduler-generated.yaml | 12 +++--- operations/mimir/images.libsonnet | 6 +-- 75 files changed, 796 insertions(+), 789 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 196b6c4652c..2050c71dad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 2.14.3 + +### Grafana Mimir + +* [BUGFIX] Update `golang.org/x/crypto` to address [CVE-2024-45337](https://github.com/advisories/GHSA-v778-237x-gjrc). #10251 +* [BUGFIX] Update `golang.org/x/net` to address [CVE-2024-45338](https://github.com/advisories/GHSA-w32m-9786-jp63). #10298 + ## 2.14.2 ### Grafana Mimir diff --git a/VERSION b/VERSION index 7243b12cf41..cf28a128f4a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.14.2 +2.14.3 diff --git a/operations/mimir-rules-action/Dockerfile b/operations/mimir-rules-action/Dockerfile index b568e866cd3..81152858e52 100644 --- a/operations/mimir-rules-action/Dockerfile +++ b/operations/mimir-rules-action/Dockerfile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: AGPL-3.0-only -FROM grafana/mimirtool:2.14.2 +FROM grafana/mimirtool:2.14.3 COPY entrypoint.sh /entrypoint.sh diff --git a/operations/mimir-tests/test-all-components-generated.yaml b/operations/mimir-tests/test-all-components-generated.yaml index 565141363b1..c12e6feb734 100644 --- a/operations/mimir-tests/test-all-components-generated.yaml +++ b/operations/mimir-tests/test-all-components-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml b/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml index 06ab00638be..5df5c1bf81c 100644 --- a/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-custom-max-skew-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml b/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml index ae74132841e..bd0b8f3f9e4 100644 --- a/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-custom-runtime-config-generated.yaml @@ -543,7 +543,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -640,7 +640,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -721,7 +721,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -793,7 +793,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -886,7 +886,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -964,7 +964,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1063,7 +1063,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1174,7 +1174,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1515,7 +1515,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml b/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml index 97121b166e8..45032d1145a 100644 --- a/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml +++ b/operations/mimir-tests/test-all-components-with-tsdb-head-early-compaction-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1167,7 +1167,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1508,7 +1508,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml b/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml index bdffc8c127b..41876d9e0b0 100644 --- a/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml +++ b/operations/mimir-tests/test-all-components-without-chunk-streaming-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -632,7 +632,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -713,7 +713,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -785,7 +785,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -878,7 +878,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -956,7 +956,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1055,7 +1055,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1166,7 +1166,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1507,7 +1507,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-automated-downscale-generated.yaml b/operations/mimir-tests/test-automated-downscale-generated.yaml index 31fe4669b37..fd77d6f0cab 100644 --- a/operations/mimir-tests/test-automated-downscale-generated.yaml +++ b/operations/mimir-tests/test-automated-downscale-generated.yaml @@ -711,7 +711,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -810,7 +810,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -891,7 +891,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -963,7 +963,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1102,7 +1102,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1180,7 +1180,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1279,7 +1279,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1407,7 +1407,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1535,7 +1535,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1663,7 +1663,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2022,7 +2022,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2165,7 +2165,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2308,7 +2308,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-automated-downscale-v2-generated.yaml b/operations/mimir-tests/test-automated-downscale-v2-generated.yaml index 1986c1aa10e..50ac6320b65 100644 --- a/operations/mimir-tests/test-automated-downscale-v2-generated.yaml +++ b/operations/mimir-tests/test-automated-downscale-v2-generated.yaml @@ -770,7 +770,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -869,7 +869,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -950,7 +950,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1022,7 +1022,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1161,7 +1161,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1239,7 +1239,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1338,7 +1338,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1470,7 +1470,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1603,7 +1603,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1736,7 +1736,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2095,7 +2095,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2238,7 +2238,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2381,7 +2381,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml b/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml index 97ec0d7bf4a..a7b43156942 100644 --- a/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml +++ b/operations/mimir-tests/test-autoscaling-custom-target-utilization-generated.yaml @@ -650,7 +650,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -746,7 +746,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -826,7 +826,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -898,7 +898,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -992,7 +992,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1085,7 +1085,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1168,7 +1168,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1240,7 +1240,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1309,7 +1309,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1408,7 +1408,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1519,7 +1519,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1860,7 +1860,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-autoscaling-generated.yaml b/operations/mimir-tests/test-autoscaling-generated.yaml index bcc6a57db7f..8835afb631e 100644 --- a/operations/mimir-tests/test-autoscaling-generated.yaml +++ b/operations/mimir-tests/test-autoscaling-generated.yaml @@ -650,7 +650,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -746,7 +746,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -826,7 +826,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -898,7 +898,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -992,7 +992,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1085,7 +1085,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1168,7 +1168,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1240,7 +1240,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1309,7 +1309,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1408,7 +1408,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1519,7 +1519,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1860,7 +1860,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml b/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml index 9bde74b5f8e..c4b2166cc15 100644 --- a/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml +++ b/operations/mimir-tests/test-compactor-concurrent-rollout-generated.yaml @@ -533,7 +533,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -630,7 +630,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -711,7 +711,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -783,7 +783,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -912,7 +912,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1023,7 +1023,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1364,7 +1364,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml b/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml index f161f87200f..e7ab82126d1 100644 --- a/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml +++ b/operations/mimir-tests/test-compactor-concurrent-rollout-max-unavailable-percent-generated.yaml @@ -533,7 +533,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -630,7 +630,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -711,7 +711,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -783,7 +783,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -912,7 +912,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1023,7 +1023,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1364,7 +1364,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-generated.yaml b/operations/mimir-tests/test-consul-generated.yaml index 5fcd25d717d..a2e81603fa4 100644 --- a/operations/mimir-tests/test-consul-generated.yaml +++ b/operations/mimir-tests/test-consul-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1016,7 +1016,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1260,7 +1260,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1336,7 +1336,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1431,7 +1431,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1538,7 +1538,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1875,7 +1875,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-multi-zone-generated.yaml b/operations/mimir-tests/test-consul-multi-zone-generated.yaml index 755bd00e421..02a27288e2f 100644 --- a/operations/mimir-tests/test-consul-multi-zone-generated.yaml +++ b/operations/mimir-tests/test-consul-multi-zone-generated.yaml @@ -1087,7 +1087,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1183,7 +1183,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1262,7 +1262,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1334,7 +1334,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1473,7 +1473,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1549,7 +1549,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1644,7 +1644,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1764,7 +1764,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1884,7 +1884,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2004,7 +2004,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2354,7 +2354,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2488,7 +2488,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2622,7 +2622,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml b/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml index 5d339fa1bb0..ecc0255bd35 100644 --- a/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml +++ b/operations/mimir-tests/test-consul-ruler-disabled-generated.yaml @@ -891,7 +891,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -985,7 +985,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1064,7 +1064,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1136,7 +1136,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1204,7 +1204,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1299,7 +1299,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1406,7 +1406,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1743,7 +1743,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-continuous-test-generated.yaml b/operations/mimir-tests/test-continuous-test-generated.yaml index c23db912d70..808a486c57a 100644 --- a/operations/mimir-tests/test-continuous-test-generated.yaml +++ b/operations/mimir-tests/test-continuous-test-generated.yaml @@ -451,7 +451,7 @@ spec: - -tests.write-endpoint=http://distributor.default.svc.cluster.local - -tests.write-read-series-test.max-query-age=48h - -tests.write-read-series-test.num-series=1000 - image: grafana/mimir-continuous-test:2.14.2 + image: grafana/mimir-continuous-test:2.14.3 imagePullPolicy: IfNotPresent name: continuous-test ports: @@ -522,7 +522,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -619,7 +619,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -700,7 +700,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -772,7 +772,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -852,7 +852,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -963,7 +963,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1304,7 +1304,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-defaults-generated.yaml b/operations/mimir-tests/test-defaults-generated.yaml index 038a975ab80..657ee5ee950 100644 --- a/operations/mimir-tests/test-defaults-generated.yaml +++ b/operations/mimir-tests/test-defaults-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-deployment-mode-migration-generated.yaml b/operations/mimir-tests/test-deployment-mode-migration-generated.yaml index b4f1d3388b1..f8aa9580b82 100644 --- a/operations/mimir-tests/test-deployment-mode-migration-generated.yaml +++ b/operations/mimir-tests/test-deployment-mode-migration-generated.yaml @@ -983,7 +983,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -1196,7 +1196,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1282,7 +1282,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1362,7 +1362,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1503,7 +1503,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1581,7 +1581,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1680,7 +1680,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1804,7 +1804,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1928,7 +1928,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2052,7 +2052,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2460,7 +2460,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2652,7 +2652,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2844,7 +2844,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -2981,7 +2981,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3118,7 +3118,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3255,7 +3255,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -3393,7 +3393,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3531,7 +3531,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3669,7 +3669,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-env-vars-generated.yaml b/operations/mimir-tests/test-env-vars-generated.yaml index b9741483f87..acca9a076d1 100644 --- a/operations/mimir-tests/test-env-vars-generated.yaml +++ b/operations/mimir-tests/test-env-vars-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1169,7 +1169,7 @@ spec: value: 1Gi - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1512,7 +1512,7 @@ spec: value: 2Gi - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-etcd-replicas-generated.yaml b/operations/mimir-tests/test-etcd-replicas-generated.yaml index cfbf159ba93..c47cbf47247 100644 --- a/operations/mimir-tests/test-etcd-replicas-generated.yaml +++ b/operations/mimir-tests/test-etcd-replicas-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-extra-runtime-config-generated.yaml b/operations/mimir-tests/test-extra-runtime-config-generated.yaml index bf4b94a5784..234d46637b2 100644 --- a/operations/mimir-tests/test-extra-runtime-config-generated.yaml +++ b/operations/mimir-tests/test-extra-runtime-config-generated.yaml @@ -542,7 +542,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -644,7 +644,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -730,7 +730,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -807,7 +807,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -905,7 +905,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -988,7 +988,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1092,7 +1092,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1208,7 +1208,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1554,7 +1554,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-helm-parity-generated.yaml b/operations/mimir-tests/test-helm-parity-generated.yaml index 74d05143fc1..7f061bb20f3 100644 --- a/operations/mimir-tests/test-helm-parity-generated.yaml +++ b/operations/mimir-tests/test-helm-parity-generated.yaml @@ -574,7 +574,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -648,7 +648,7 @@ spec: - -runtime-config.file=/etc/mimir/overrides.yaml - -server.http-listen-port=8080 - -target=overrides-exporter - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: overrides-exporter ports: @@ -730,7 +730,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -814,7 +814,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -886,7 +886,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -978,7 +978,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1057,7 +1057,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1161,7 +1161,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1272,7 +1272,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1613,7 +1613,7 @@ spec: value: "536870912" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml index 417ecb7559d..68e75db0e32 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-0-generated.yaml @@ -829,7 +829,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -930,7 +930,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1012,7 +1012,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1085,7 +1085,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1229,7 +1229,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1327,7 +1327,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1412,7 +1412,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1485,7 +1485,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1555,7 +1555,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1654,7 +1654,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1791,7 +1791,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1922,7 +1922,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2053,7 +2053,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2410,7 +2410,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2553,7 +2553,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2694,7 +2694,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml index 4fba967e84e..d8015b087f6 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-1-generated.yaml @@ -899,7 +899,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1001,7 +1001,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1083,7 +1083,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1156,7 +1156,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1301,7 +1301,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1400,7 +1400,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1485,7 +1485,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1558,7 +1558,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1628,7 +1628,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1727,7 +1727,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1865,7 +1865,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2011,7 +2011,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2143,7 +2143,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2283,7 +2283,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2415,7 +2415,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2555,7 +2555,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2912,7 +2912,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3055,7 +3055,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3196,7 +3196,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml index 2f9443eee06..b189c76ce0d 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-10-generated.yaml @@ -872,7 +872,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -979,7 +979,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1067,7 +1067,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1144,7 +1144,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1294,7 +1294,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1398,7 +1398,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1489,7 +1489,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1566,7 +1566,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1640,7 +1640,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1743,7 +1743,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1889,7 +1889,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2029,7 +2029,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2390,7 +2390,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2537,7 +2537,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2682,7 +2682,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml index 4edf1a826f4..f98ef7ea7bf 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-11-generated.yaml @@ -872,7 +872,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -979,7 +979,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1067,7 +1067,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1144,7 +1144,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1294,7 +1294,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1398,7 +1398,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1489,7 +1489,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1566,7 +1566,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1640,7 +1640,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1743,7 +1743,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1893,7 +1893,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2033,7 +2033,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2394,7 +2394,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2541,7 +2541,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2686,7 +2686,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml index 7d1c3b14399..c32d6102f9b 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-2-generated.yaml @@ -906,7 +906,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1008,7 +1008,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1163,7 +1163,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1314,7 +1314,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1413,7 +1413,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1498,7 +1498,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1571,7 +1571,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1641,7 +1641,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1740,7 +1740,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1878,7 +1878,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2024,7 +2024,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2156,7 +2156,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2296,7 +2296,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2428,7 +2428,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2568,7 +2568,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2925,7 +2925,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3068,7 +3068,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3209,7 +3209,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml index f5f3a8331a9..646a47202ec 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-3-generated.yaml @@ -906,7 +906,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1013,7 +1013,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1101,7 +1101,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1174,7 +1174,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1325,7 +1325,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1429,7 +1429,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1520,7 +1520,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1593,7 +1593,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1663,7 +1663,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1762,7 +1762,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1900,7 +1900,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2046,7 +2046,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2178,7 +2178,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2318,7 +2318,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2450,7 +2450,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2590,7 +2590,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2947,7 +2947,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3090,7 +3090,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3231,7 +3231,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml index c6317013d8c..7127763211d 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-4-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml index f750c077e81..7450a7554bf 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-5a-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml index ded253cefad..2f3e20daf12 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-5b-generated.yaml @@ -905,7 +905,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1012,7 +1012,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1100,7 +1100,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1173,7 +1173,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1323,7 +1323,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1427,7 +1427,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1518,7 +1518,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1591,7 +1591,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1661,7 +1661,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1760,7 +1760,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1898,7 +1898,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2044,7 +2044,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2176,7 +2176,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2316,7 +2316,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2448,7 +2448,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2588,7 +2588,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2945,7 +2945,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3088,7 +3088,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -3229,7 +3229,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml index 89cc3c3b008..56b6e25b07d 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-6-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1104,7 +1104,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1254,7 +1254,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1358,7 +1358,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1449,7 +1449,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1522,7 +1522,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1592,7 +1592,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1691,7 +1691,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1837,7 +1837,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1977,7 +1977,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2117,7 +2117,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2474,7 +2474,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2617,7 +2617,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2758,7 +2758,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml index 3f2d0429de6..b81059e0a75 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-7-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1108,7 +1108,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1258,7 +1258,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1362,7 +1362,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1453,7 +1453,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1530,7 +1530,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1604,7 +1604,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1707,7 +1707,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1853,7 +1853,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1993,7 +1993,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2133,7 +2133,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2494,7 +2494,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2641,7 +2641,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2786,7 +2786,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml index 9956cff4bc8..8abe4111348 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-8-generated.yaml @@ -836,7 +836,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -943,7 +943,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1031,7 +1031,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1108,7 +1108,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1258,7 +1258,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1362,7 +1362,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1453,7 +1453,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1530,7 +1530,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1604,7 +1604,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1707,7 +1707,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1853,7 +1853,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1993,7 +1993,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2133,7 +2133,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2494,7 +2494,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2641,7 +2641,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2786,7 +2786,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml index 69d8dfbffd5..98e6051fb38 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-9-generated.yaml @@ -813,7 +813,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -920,7 +920,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1008,7 +1008,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1085,7 +1085,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1235,7 +1235,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1339,7 +1339,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1430,7 +1430,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1581,7 +1581,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1684,7 +1684,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1830,7 +1830,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1970,7 +1970,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2331,7 +2331,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2478,7 +2478,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2623,7 +2623,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml b/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml index 7d12a35967b..a22ad9d81c8 100644 --- a/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml +++ b/operations/mimir-tests/test-ingest-storage-migration-step-final-generated.yaml @@ -895,7 +895,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1002,7 +1002,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1317,7 +1317,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1421,7 +1421,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1512,7 +1512,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1589,7 +1589,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1663,7 +1663,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1766,7 +1766,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1916,7 +1916,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2056,7 +2056,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2196,7 +2196,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2557,7 +2557,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2704,7 +2704,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2849,7 +2849,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml index 565141363b1..c12e6feb734 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-0-before-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml index 66b763bb685..4a677de399b 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-1-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -959,7 +959,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1171,7 +1171,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1513,7 +1513,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml index a0ba60194c3..e4c1cca7ee8 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-2-generated.yaml @@ -536,7 +536,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -635,7 +635,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -788,7 +788,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -883,7 +883,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -963,7 +963,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1064,7 +1064,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1177,7 +1177,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1520,7 +1520,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml index 0a0c6fe7f7f..d3bfe9e8cca 100644 --- a/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-memberlist-cluster-label-migration-step-3-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -959,7 +959,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1171,7 +1171,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1513,7 +1513,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml index 5fcd25d717d..a2e81603fa4 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-0-before-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1016,7 +1016,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1095,7 +1095,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1167,7 +1167,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1260,7 +1260,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1336,7 +1336,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1431,7 +1431,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1538,7 +1538,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1875,7 +1875,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml index a322a286057..b293ccc84b3 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-1-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml index 57c2356d781..45225ff1b42 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-2-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml index a0b3406833b..aac6a15d5d1 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-3-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml index 77426075376..8ae6c6e9e36 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-4-generated.yaml @@ -966,7 +966,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1069,7 +1069,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1150,7 +1150,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1222,7 +1222,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1324,7 +1324,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1405,7 +1405,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1507,7 +1507,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1621,7 +1621,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1965,7 +1965,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml index d546734735f..88dfdd39d75 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-5-generated.yaml @@ -537,7 +537,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -715,7 +715,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -787,7 +787,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -880,7 +880,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -958,7 +958,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1057,7 +1057,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1168,7 +1168,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1509,7 +1509,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml b/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml index 565141363b1..c12e6feb734 100644 --- a/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml +++ b/operations/mimir-tests/test-memberlist-migration-step-6-final-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-memcached-mtls-generated.yaml b/operations/mimir-tests/test-memcached-mtls-generated.yaml index 1b3f223aca9..856ad482728 100644 --- a/operations/mimir-tests/test-memcached-mtls-generated.yaml +++ b/operations/mimir-tests/test-memcached-mtls-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -637,7 +637,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -742,7 +742,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -832,7 +832,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -937,7 +937,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1015,7 +1015,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1114,7 +1114,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1225,7 +1225,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1676,7 +1676,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-generated.yaml b/operations/mimir-tests/test-multi-zone-generated.yaml index a4879d73ebb..1eb6ec47f8e 100644 --- a/operations/mimir-tests/test-multi-zone-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-generated.yaml @@ -711,7 +711,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -810,7 +810,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -891,7 +891,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -963,7 +963,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1102,7 +1102,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1180,7 +1180,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1279,7 +1279,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1411,7 +1411,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1537,7 +1537,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1663,7 +1663,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2019,7 +2019,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2161,7 +2161,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2301,7 +2301,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml b/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml index 39923d5db3d..75e4349bfc4 100644 --- a/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-with-ongoing-migration-generated.yaml @@ -779,7 +779,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -878,7 +878,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -959,7 +959,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1031,7 +1031,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1170,7 +1170,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1248,7 +1248,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1347,7 +1347,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1458,7 +1458,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1582,7 +1582,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1706,7 +1706,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1830,7 +1830,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2171,7 +2171,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2309,7 +2309,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2447,7 +2447,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2585,7 +2585,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml b/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml index 5a5b1d15572..f8f7e932a7e 100644 --- a/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml +++ b/operations/mimir-tests/test-multi-zone-with-store-gateway-automated-downscaling-generated.yaml @@ -788,7 +788,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -887,7 +887,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -968,7 +968,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1040,7 +1040,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1180,7 +1180,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1258,7 +1258,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1357,7 +1357,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1489,7 +1489,7 @@ spec: value: "1000" - name: Z value: "123" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1615,7 +1615,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1741,7 +1741,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -2102,7 +2102,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2249,7 +2249,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2394,7 +2394,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml b/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml index bc69d2e2fc9..ad6af34984e 100644 --- a/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml +++ b/operations/mimir-tests/test-new-resource-scaled-object-generated.yaml @@ -468,7 +468,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -565,7 +565,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -646,7 +646,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -718,7 +718,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -798,7 +798,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -909,7 +909,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1250,7 +1250,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml b/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml index 3db8b2ff070..d679a2997b5 100644 --- a/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml +++ b/operations/mimir-tests/test-node-selector-and-affinity-generated.yaml @@ -482,7 +482,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -595,7 +595,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -692,7 +692,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -779,7 +779,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -875,7 +875,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1001,7 +1001,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1365,7 +1365,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml b/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml index 674e5aab594..e26eb93b81b 100644 --- a/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml +++ b/operations/mimir-tests/test-pvc-auto-deletion-generated.yaml @@ -645,7 +645,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -744,7 +744,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -825,7 +825,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -897,7 +897,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1023,7 +1023,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1149,7 +1149,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1275,7 +1275,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1401,7 +1401,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1757,7 +1757,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -1897,7 +1897,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: @@ -2037,7 +2037,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml b/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml index c7f418dc91e..7d5cfed217e 100644 --- a/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-consul-ring-generated.yaml @@ -922,7 +922,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -1019,7 +1019,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -1101,7 +1101,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -1177,7 +1177,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1270,7 +1270,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1346,7 +1346,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1441,7 +1441,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1548,7 +1548,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1885,7 +1885,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml index 96d1a6bcc79..a37642cc1d8 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-and-ruler-remote-evaluation-generated.yaml @@ -669,7 +669,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -769,7 +769,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -855,7 +855,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -935,7 +935,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -1033,7 +1033,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1130,7 +1130,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1219,7 +1219,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1299,7 +1299,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1372,7 +1372,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1472,7 +1472,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1584,7 +1584,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1926,7 +1926,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml index 5ebf5656f6a..ddfabdf9a3f 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-generated.yaml @@ -543,7 +543,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -643,7 +643,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -729,7 +729,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -809,7 +809,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -905,7 +905,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -984,7 +984,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1084,7 +1084,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1196,7 +1196,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1538,7 +1538,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml b/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml index 378c515e8e3..48b7680075a 100644 --- a/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml +++ b/operations/mimir-tests/test-query-scheduler-memberlist-ring-read-path-disabled-generated.yaml @@ -540,7 +540,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -638,7 +638,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -719,7 +719,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -797,7 +797,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -893,7 +893,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -972,7 +972,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1072,7 +1072,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1184,7 +1184,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1526,7 +1526,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-query-sharding-generated.yaml b/operations/mimir-tests/test-query-sharding-generated.yaml index 122b6027f54..9ce43f1698b 100644 --- a/operations/mimir-tests/test-query-sharding-generated.yaml +++ b/operations/mimir-tests/test-query-sharding-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -717,7 +717,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -882,7 +882,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -960,7 +960,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1059,7 +1059,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1170,7 +1170,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1511,7 +1511,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml index 13797aad5a2..b00ba0433b6 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-autoscaled-generated.yaml @@ -557,7 +557,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -999,7 +999,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1192,7 +1192,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1385,7 +1385,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1523,7 +1523,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1661,7 +1661,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1799,7 +1799,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml index 7470b23d5c6..490732778cd 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-caches-disabled-generated.yaml @@ -420,7 +420,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -622,7 +622,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -791,7 +791,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -960,7 +960,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1098,7 +1098,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1236,7 +1236,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1374,7 +1374,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml b/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml index e2a6ece4f1e..ee72d7a8811 100644 --- a/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml +++ b/operations/mimir-tests/test-read-write-deployment-mode-s3-generated.yaml @@ -558,7 +558,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-read ports: @@ -1000,7 +1000,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1193,7 +1193,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1386,7 +1386,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-backend ports: @@ -1524,7 +1524,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1662,7 +1662,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: @@ -1800,7 +1800,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: mimir-write ports: diff --git a/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml b/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml index 02be4dfa625..50fe38c1614 100644 --- a/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml +++ b/operations/mimir-tests/test-ruler-remote-evaluation-generated.yaml @@ -651,7 +651,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -748,7 +748,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -829,7 +829,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -901,7 +901,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -996,7 +996,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1090,7 +1090,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1174,7 +1174,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1246,7 +1246,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1316,7 +1316,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1415,7 +1415,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1526,7 +1526,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1867,7 +1867,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml b/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml index de48dbb8a1b..5763bae5f17 100644 --- a/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml +++ b/operations/mimir-tests/test-ruler-remote-evaluation-migration-generated.yaml @@ -651,7 +651,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -748,7 +748,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -829,7 +829,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -901,7 +901,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -994,7 +994,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -1088,7 +1088,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-querier ports: @@ -1172,7 +1172,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-frontend ports: @@ -1244,7 +1244,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler-query-scheduler ports: @@ -1314,7 +1314,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1413,7 +1413,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1524,7 +1524,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1865,7 +1865,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-generated.yaml index 6bcd4dfcb16..979ef9752af 100644 --- a/operations/mimir-tests/test-shuffle-sharding-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -885,7 +885,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -963,7 +963,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1062,7 +1062,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1174,7 +1174,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1516,7 +1516,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml index 6df3414a3e4..fc497e7af50 100644 --- a/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-partitions-enabled-generated.yaml @@ -536,7 +536,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -636,7 +636,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -718,7 +718,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -791,7 +791,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -888,7 +888,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -966,7 +966,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1065,7 +1065,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1178,7 +1178,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1520,7 +1520,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml b/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml index b06c42fd7e4..2f4bb5f1ec6 100644 --- a/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml +++ b/operations/mimir-tests/test-shuffle-sharding-read-path-disabled-generated.yaml @@ -535,7 +535,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -634,7 +634,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -716,7 +716,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -789,7 +789,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -886,7 +886,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -964,7 +964,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1063,7 +1063,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1175,7 +1175,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1517,7 +1517,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-azure-generated.yaml b/operations/mimir-tests/test-storage-azure-generated.yaml index 76ff4706171..ea7ade9f9a4 100644 --- a/operations/mimir-tests/test-storage-azure-generated.yaml +++ b/operations/mimir-tests/test-storage-azure-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -633,7 +633,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -714,7 +714,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -786,7 +786,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -881,7 +881,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -961,7 +961,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1062,7 +1062,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1175,7 +1175,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1518,7 +1518,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-gcs-generated.yaml b/operations/mimir-tests/test-storage-gcs-generated.yaml index 565141363b1..c12e6feb734 100644 --- a/operations/mimir-tests/test-storage-gcs-generated.yaml +++ b/operations/mimir-tests/test-storage-gcs-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -631,7 +631,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -712,7 +712,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -784,7 +784,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -877,7 +877,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -955,7 +955,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1054,7 +1054,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1165,7 +1165,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1506,7 +1506,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-gcs-redis-generated.yaml b/operations/mimir-tests/test-storage-gcs-redis-generated.yaml index 62ab47c4ef9..3f8ecb048d4 100644 --- a/operations/mimir-tests/test-storage-gcs-redis-generated.yaml +++ b/operations/mimir-tests/test-storage-gcs-redis-generated.yaml @@ -406,7 +406,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -503,7 +503,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -581,7 +581,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -653,7 +653,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -746,7 +746,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -824,7 +824,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -923,7 +923,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1034,7 +1034,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1157,7 +1157,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-storage-s3-generated.yaml b/operations/mimir-tests/test-storage-s3-generated.yaml index ef3e907a552..1e0080cb22f 100644 --- a/operations/mimir-tests/test-storage-s3-generated.yaml +++ b/operations/mimir-tests/test-storage-s3-generated.yaml @@ -534,7 +534,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -632,7 +632,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -713,7 +713,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -785,7 +785,7 @@ spec: - -server.http-listen-port=8080 - -target=query-scheduler - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-scheduler ports: @@ -879,7 +879,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ruler ports: @@ -958,7 +958,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: alertmanager ports: @@ -1058,7 +1058,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -1170,7 +1170,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1512,7 +1512,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir-tests/test-without-query-scheduler-generated.yaml b/operations/mimir-tests/test-without-query-scheduler-generated.yaml index 0d9b858c34f..093aa986052 100644 --- a/operations/mimir-tests/test-without-query-scheduler-generated.yaml +++ b/operations/mimir-tests/test-without-query-scheduler-generated.yaml @@ -437,7 +437,7 @@ spec: value: "8" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: distributor ports: @@ -534,7 +534,7 @@ spec: value: "5" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: querier ports: @@ -614,7 +614,7 @@ spec: env: - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "5000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: query-frontend ports: @@ -701,7 +701,7 @@ spec: - -server.http-listen-port=8080 - -target=compactor - -usage-stats.installation-mode=jsonnet - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: compactor ports: @@ -812,7 +812,7 @@ spec: value: "9" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: ingester ports: @@ -1153,7 +1153,7 @@ spec: value: "12884901888" - name: JAEGER_REPORTER_MAX_QUEUE_SIZE value: "1000" - image: grafana/mimir:2.14.2 + image: grafana/mimir:2.14.3 imagePullPolicy: IfNotPresent name: store-gateway ports: diff --git a/operations/mimir/images.libsonnet b/operations/mimir/images.libsonnet index 70f56290c02..d25e2fde765 100644 --- a/operations/mimir/images.libsonnet +++ b/operations/mimir/images.libsonnet @@ -5,7 +5,7 @@ memcachedExporter: 'prom/memcached-exporter:v0.14.4', // Our services. - mimir: 'grafana/mimir:2.14.2', + mimir: 'grafana/mimir:2.14.3', alertmanager: self.mimir, distributor: self.mimir, @@ -19,8 +19,8 @@ query_scheduler: self.mimir, overrides_exporter: self.mimir, - query_tee: 'grafana/query-tee:2.14.2', - continuous_test: 'grafana/mimir-continuous-test:2.14.2', + query_tee: 'grafana/query-tee:2.14.3', + continuous_test: 'grafana/mimir-continuous-test:2.14.3', // Read-write deployment mode. mimir_write: self.mimir,