Skip to content

Commit

Permalink
Make generate updates etcd backup/restore modules (#650)
Browse files Browse the repository at this point in the history
- Added dependabot job for etcd backup/restore

Signed-off-by: Danil-Grigorev <[email protected]>
  • Loading branch information
Danil-Grigorev authored Aug 8, 2024
1 parent d353b2b commit 78995d5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,28 @@ updates:
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
# ETCD backup/restore module
- package-ecosystem: "gomod"
directory: "exp/etcdrestore/"
schedule:
interval: "weekly"
labels:
- "kind/cleanup"
- "area/dependency"
groups:
test-dependencies:
patterns:
- "*"
ignore:
# Ignore Cluster-API as its upgraded manually.
- dependency-name: "sigs.k8s.io/cluster-api"
# Ignore controller-runtime as its upgraded manually.
- dependency-name: "sigs.k8s.io/controller-runtime"
# Ignore k8s and its transitives modules as they are upgraded manually
# together with controller-runtime.
- dependency-name: "k8s.io/*"
- dependency-name: "go.etcd.io/*"
- dependency-name: "google.golang.org/grpc"
- package-ecosystem: "docker"
directory: "/"
schedule:
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ generate-exp-etcdrestore-manifests-api: controller-gen ## Generate ClusterRole a
generate-modules: ## Run go mod tidy to ensure modules are up to date
go mod tidy
cd $(TEST_DIR); go mod tidy
cd $(EXP_ETCDRESTORE_DIR); go mod tidy

.PHONY: generate-go-deepcopy
generate-go-deepcopy: ## Run deepcopy generation
Expand Down

0 comments on commit 78995d5

Please sign in to comment.