mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
[Bugfix] Adjust ChangeLog and fix Makefile (#792)
This commit is contained in:
parent
d2c46eb8bc
commit
8a60d17677
2 changed files with 5 additions and 2 deletions
|
@ -6,7 +6,10 @@
|
|||
- Allow runtime update of Sidecar images
|
||||
- Allow Agent recreation with preserved IDs
|
||||
- The internal metrics exporter can not be disabled
|
||||
|
||||
- Changing the topics' log level without restarting the container.
|
||||
When the topic is removed from the argument list then it will not
|
||||
be turned off in the ArangoDB automatically.
|
||||
|
||||
## [1.2.2](https://github.com/arangodb/kube-arangodb/tree/1.2.2) (2021-09-09)
|
||||
- Update 'github.com/arangodb/arangosync-client' dependency to v0.7.0
|
||||
- Add HighPriorityPlan to ArangoDeployment Status
|
||||
|
|
2
Makefile
2
Makefile
|
@ -123,7 +123,7 @@ ifdef VERBOSE
|
|||
endif
|
||||
|
||||
EXCLUDE_DIRS := tests vendor .gobuild deps tools
|
||||
SOURCES_QUERY := find ./ -type f -name '*.go' $(foreach EXCLUDE_DIR,$(EXCLUDE_DIRS), -not -path "./$(EXCLUDE_DIR)/*")
|
||||
SOURCES_QUERY := find ./ -type f -name '*.go' $(foreach EXCLUDE_DIR,$(EXCLUDE_DIRS), ! -path "./$(EXCLUDE_DIR)/*")
|
||||
SOURCES := $(shell $(SOURCES_QUERY))
|
||||
DASHBOARDSOURCES := $(shell find $(DASHBOARDDIR)/src -name '*.js') $(DASHBOARDDIR)/package.json
|
||||
|
||||
|
|
Loading…
Reference in a new issue