Skip to content

Commit

Permalink
Add Arm64 on Darwin (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
samjewell committed Jun 18, 2021
1 parent b7df2d4 commit d7410e6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ builds:
- darwin
goarch:
- amd64
- arm64
- id: cortextool-linux
ldflags:
-s -w -X github.com/grafana/cortex-tools/pkg/version.Version={{.Version}}
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

Order should be `CHANGE`, `FEATURE`, `ENHANCEMENT`, and `BUGFIX`

## unreleased/master
## v0.10.2

* [FEATURE] Blockgen: adding a new tool to generate blocks of mock data.
* [BUGFIX] Benchtool: avoid duplicate DNS metrics registration when enabling both query and write benchmarking. #188
* [FEATURE] Support Arm64 on Darwin.
* [ENHANCEMENT] Added the ability to set an explicit user when Cortex is behind basic auth. #187
* [BUGFIX] Benchtool: avoid duplicate DNS metrics registration when enabling both query and write benchmarking. #188

## v0.10.1

Expand Down
23 changes: 23 additions & 0 deletions changelogs/v0.10.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# v0.10.2 Release

## Changes

* [FEATURE] Blockgen: adding a new tool to generate blocks of mock data.
* [FEATURE] Support Arm64 on Darwin.
* [ENHANCEMENT] Added the ability to set an explicit user when Cortex is behind basic auth. #187
* [BUGFIX] Benchtool: avoid duplicate DNS metrics registration when enabling both query and write benchmarking. #188

## Installation

## cortextool

```console
# download the binary (adapt os and arch as needed)
$ curl -fSL -o "/usr/local/bin/cortextool" "https://github.com/grafana/cortex-tools/releases/download/v0.10.1/cortextool_0.10.1_linux_x86_64"

# make it executable
$ chmod a+x "/usr/local/bin/cortextool"

# have fun :)
$ cortextool --help
```

0 comments on commit d7410e6

Please sign in to comment.