Skip to content

Commit 67f4077

Browse files
authored
[Feature] Add Metadata fields to the Scheduler Pod Spec (#1618)
1 parent e7fd072 commit 67f4077

20 files changed

+1319
-76
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
44
- (Feature) Add Core fields to the Scheduler Container Spec
5+
- (Feature) Add Metadata fields to the Scheduler Pod Spec
56

67
## [1.2.39](https://github.com/arangodb/kube-arangodb/tree/1.2.39) (2024-03-11)
78
- (Feature) Extract Scheduler API

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ license-range:
317317
fmt:
318318
@echo ">> Ensuring style of files"
319319
@$(GOPATH)/bin/goimports -w $(SOURCES)
320-
@$(GOPATH)/bin/gci write -s "standard" -s "default" -s "prefix(github.com/arangodb)" -s "prefix(github.com/arangodb/kube-arangodb)" $(SOURCES)
320+
@$(GOPATH)/bin/gci write -s "standard" -s "default" -s "prefix(github.com/arangodb)" -s "prefix(github.com/arangodb/kube-arangodb)" $(SOURCES)
321321

322322
.PHONY: yamlfmt
323323
yamlfmt:
@@ -337,7 +337,7 @@ license:
337337
.PHONY: fmt-verify
338338
fmt-verify: license-verify
339339
@echo ">> Verify files style"
340-
@if [ X"$$($(GOPATH)/bin/goimports -l $(SOURCES) | wc -l)" != X"0" ]; then echo ">> Style errors"; $(GOPATH)/bin/goimports -l $(SOURCES); exit 1; fi
340+
@if $(GOPATH)/bin/goimports -l $(SOURCES) | grep -v "^$$"; then echo ">> Style errors"; exit 1; fi
341341

342342
.PHONY: linter
343343
linter:
@@ -729,7 +729,7 @@ tools-min: update-vendor
729729
@echo ">> Fetching golangci-lint linter"
730730
@GOBIN=$(GOPATH)/bin go install github.com/golangci/golangci-lint/cmd/[email protected]
731731
@echo ">> Fetching goimports"
732-
@GOBIN=$(GOPATH)/bin go install golang.org/x/tools/cmd/goimports@0bb7e5c47b1a31f85d4f173edc878a8e049764a5
732+
@GOBIN=$(GOPATH)/bin go install golang.org/x/tools/cmd/goimports@v0.19.0
733733
@echo ">> Fetching license check"
734734
@GOBIN=$(GOPATH)/bin go install github.com/google/addlicense@6d92264d717064f28b32464f0f9693a5b4ef0239
735735
@echo ">> Fetching yamlfmt"

0 commit comments

Comments
 (0)