File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
deploy/platform/kubernetes Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ TAG ?= $(shell git rev-parse --short HEAD)
2828BANYANDB_IMAGE ?= ghcr.io/apache/skywalking-banyandb
2929BANYANDB_IMAGE_TAG ?= 38f19094145a30c6403fbc4390d0b0cf57494725
3030STORAGE_CLASS ?= ""
31+ BANYANDB_BACKUP_DEST ?= file:///tmp/backups/data
3132
3233ES_IMAGE ?= docker.elastic.co/elasticsearch/elasticsearch-oss
3334ES_IMAGE_TAG ?= 7.10.2
Original file line number Diff line number Diff line change @@ -153,6 +153,11 @@ feature-banyandb-monitor:
153153 $(eval HELM_OPTIONS := $(HELM_OPTIONS ) --set features.banyandbMonitor.enabled=true)
154154 $(eval HELM_OPTIONS := $(HELM_OPTIONS ) --set opentelemetry.enabled=true)
155155
156+ .PHONY : feature-banyandb-backup
157+ feature-banyandb-backup :
158+ $(eval HELM_OPTIONS := $(HELM_OPTIONS ) --set skywalking.banyandb.cluster.data.nodeTemplate.backupSidecar.enabled=true)
159+ $(eval HELM_OPTIONS := $(HELM_OPTIONS ) --set skywalking.banyandb.cluster.data.nodeTemplate.backupSidecar.dest=$(BANYANDB_BACKUP_DEST ) )
160+
156161.PHONY : feature-postgresql-monitor
157162feature-postgresql-monitor :
158163 $(eval HELM_OPTIONS := $(HELM_OPTIONS ) --set features.postgresqlMonitor.enabled=true)
You can’t perform that action at this time.
0 commit comments