Skip to content

Commit 3a42af2

Browse files
committed
Merge branch 'master' into merge-release-1.17.1-to-master
2 parents 62b2513 + cb4633e commit 3a42af2

File tree

663 files changed

+87794
-36382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

663 files changed

+87794
-36382
lines changed

.github/workflows/test-build-deploy.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-20.04
1313
container:
14-
image: quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16
14+
image: quay.io/cortexproject/build-image:node_version_upgrade-60582e680
1515
steps:
1616
- name: Checkout Repo
1717
uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
4040
test:
4141
runs-on: ubuntu-20.04
4242
container:
43-
image: quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16
43+
image: quay.io/cortexproject/build-image:node_version_upgrade-60582e680
4444
steps:
4545
- name: Checkout Repo
4646
uses: actions/checkout@v2
@@ -83,7 +83,7 @@ jobs:
8383
build:
8484
runs-on: ubuntu-20.04
8585
container:
86-
image: quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16
86+
image: quay.io/cortexproject/build-image:node_version_upgrade-60582e680
8787
steps:
8888
- name: Checkout Repo
8989
uses: actions/checkout@v2
@@ -180,6 +180,7 @@ jobs:
180180
docker pull quay.io/cortexproject/cortex:v1.15.3
181181
docker pull quay.io/cortexproject/cortex:v1.16.0
182182
docker pull quay.io/cortexproject/cortex:v1.16.1
183+
docker pull quay.io/cortexproject/cortex:v1.17.0
183184
fi
184185
docker pull memcached:1.6.1
185186
docker pull redis:7.0.4-alpine
@@ -215,14 +216,14 @@ jobs:
215216
run: |
216217
touch build-image/.uptodate
217218
MIGRATIONS_DIR=$(pwd)/cmd/cortex/migrations
218-
make BUILD_IMAGE=quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16 TTY='' configs-integration-test
219+
make BUILD_IMAGE=quay.io/cortexproject/build-image:node_version_upgrade-60582e680 TTY='' configs-integration-test
219220
220221
deploy_website:
221222
needs: [build, test]
222223
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
223224
runs-on: ubuntu-20.04
224225
container:
225-
image: quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16
226+
image: quay.io/cortexproject/build-image:node_version_upgrade-60582e680
226227
steps:
227228
- name: Checkout Repo
228229
uses: actions/checkout@v2
@@ -264,7 +265,7 @@ jobs:
264265
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && github.repository == 'cortexproject/cortex'
265266
runs-on: ubuntu-20.04
266267
container:
267-
image: quay.io/cortexproject/build-image:upgrade-go-to-1.21.9-b37062f16
268+
image: quay.io/cortexproject/build-image:node_version_upgrade-60582e680
268269
steps:
269270
- name: Checkout Repo
270271
uses: actions/checkout@v2

ADOPTERS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ This is the list of organisations that are using Cortex in **production environm
44

55
* [Adobe](https://www.adobe.com)
66
* [Amazon Web Services (AWS)](https://aws.amazon.com/prometheus)
7-
* [Apple](https://www.apple.com)
87
* [Aspen Mesh](https://aspenmesh.io/)
98
* [Buoyant](https://buoyant.io/)
109
* [DigitalOcean](https://www.digitalocean.com/)

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33
## master / unreleased
4+
* [ENHANCEMENT] Query Frontend/Querier: Added store gateway postings touched count and touched size in Querier stats and log in Query Frontend. #5892
5+
* [ENHANCEMENT] Query Frontend/Querier: Returns `warnings` on prometheus query responses. #5916
6+
* [ENHANCEMENT] Ingester: Allowing to configure `-blocks-storage.tsdb.head-compaction-interval` flag up to 30 min and add a jitter on the first head compaction. #5919 #5928
7+
* [ENHANCEMENT] Distributor: Added `max_inflight_push_requests` config to ingester client to protect distributor from OOMKilled. #5917
8+
* [ENHANCEMENT] Distributor/Querier: Clean stale per-ingester metrics after ingester restarts. #5930
9+
* [ENHANCEMENT] Distributor/Ring: Allow disabling detailed ring metrics by ring member. #5931
10+
* [ENHANCEMENT] KV: Etcd Added etcd.ping-without-stream-allowed parameter to disable/enable PermitWithoutStream #5933
11+
* [ENHANCEMENT] Ingester: Add a new `max_series_per_label_set` limit. This limit functions similarly to `max_series_per_metric`, but allowing users to define the maximum number of series per LabelSet. #5950
12+
* [ENHANCEMENT] Store Gateway: Log gRPC requests together with headers configured in `http_request_headers_to_log`. #5958
13+
* [ENHANCEMENT] Ingester: Added `upload_compacted_blocks_enabled` config to ingester to parameterize uploading compacted blocks.
14+
* [CHANGE] Upgrade Dockerfile Node version from 14x to 18x. #5906
15+
* [CHANGE] Query Frontend/Ruler: Omit empty data field in API response. #5953 #5954
16+
* [BUGFIX] Configsdb: Fix endline issue in db password. #5920
17+
* [BUGFIX] Ingester: Fix `user` and `type` labels for the `cortex_ingester_tsdb_head_samples_appended_total` TSDB metric. #5952
18+
419

520
## 1.17.1 2024-05-20
621

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ build-image/$(UPTODATE): build-image/*
122122
SUDO := $(shell docker info >/dev/null 2>&1 || echo "sudo -E")
123123
BUILD_IN_CONTAINER := true
124124
BUILD_IMAGE ?= $(IMAGE_PREFIX)build-image
125-
LATEST_BUILD_IMAGE_TAG ?= upgrade-go-to-1.21.9-b37062f16
125+
LATEST_BUILD_IMAGE_TAG ?= node_version_upgrade-60582e680
126126

127127
# TTY is parameterized to allow Google Cloud Builder to run builds,
128128
# as it currently disallows TTY devices. This value needs to be overridden

0 commit comments

Comments
 (0)