Skip to content

Commit 6c98029

Browse files
authored
[Feature] Get agency dump and agency state (#803)
1 parent e91813e commit 6c98029

File tree

5 files changed

+404
-178
lines changed

5 files changed

+404
-178
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
44
- Split & Unify Lifecycle management functionality
55
- Drop support for ArangoDB <= 3.5 (versions already EOL)
6+
- Add new admin commands to fetch agency dump and agency state
67

78
## [1.2.4](https://github.com/arangodb/kube-arangodb/tree/1.2.4) (2021-10-22)
89
- Replace `beta.kubernetes.io/arch` Pod label with `kubernetes.io/arch` using Silent Rotation

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,13 +391,13 @@ init: tools update-generated $(BIN) vendor
391391
.PHONY: tools
392392
tools: update-vendor
393393
@echo ">> Fetching golangci-lint linter"
394-
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.40.0
394+
@GOBIN=$(GOPATH)/bin go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.40.0
395395
@echo ">> Fetching goimports"
396-
@go get golang.org/x/tools/cmd/goimports@0bb7e5c47b1a31f85d4f173edc878a8e049764a5
396+
@GOBIN=$(GOPATH)/bin go get golang.org/x/tools/cmd/goimports@0bb7e5c47b1a31f85d4f173edc878a8e049764a5
397397
@echo ">> Fetching license check"
398-
@go get github.com/google/addlicense@6d92264d717064f28b32464f0f9693a5b4ef0239
398+
@GOBIN=$(GOPATH)/bin go get github.com/google/addlicense@6d92264d717064f28b32464f0f9693a5b4ef0239
399399
@echo ">> Fetching GO Assets Builder"
400-
@go get github.com/jessevdk/go-assets-builder@b8483521738fd2198ecfc378067a4e8a6079f8e5
400+
@GOBIN=$(GOPATH)/bin go get github.com/jessevdk/go-assets-builder@b8483521738fd2198ecfc378067a4e8a6079f8e5
401401

402402
.PHONY: vendor
403403
vendor:

0 commit comments

Comments
 (0)