Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[internal] Add backup control label #104

Merged
merged 4 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crds/blockdevices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
labels:
heritage: deckhouse
module: storage
backup.deckhouse.io/cluster-config: "true"
spec:
group: storage.deckhouse.io
scope: Cluster
Expand Down
1 change: 1 addition & 0 deletions crds/lvmlogicalvolume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
labels:
heritage: deckhouse
module: storage
backup.deckhouse.io/cluster-config: "true"
spec:
group: storage.deckhouse.io
scope: Cluster
Expand Down
1 change: 1 addition & 0 deletions crds/lvmvolumegroup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
labels:
heritage: deckhouse
module: storage
backup.deckhouse.io/cluster-config: "true"
spec:
group: storage.deckhouse.io
scope: Cluster
Expand Down
1 change: 1 addition & 0 deletions crds/lvmvolumegroupbackup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
labels:
heritage: deckhouse
module: storage
backup.deckhouse.io/cluster-config: "true"
spec:
group: storage.deckhouse.io
scope: Cluster
Expand Down
1 change: 1 addition & 0 deletions crds/lvmvolumegroupset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
labels:
heritage: deckhouse
module: storage
backup.deckhouse.io/cluster-config: "true"
spec:
group: storage.deckhouse.io
scope: Cluster
Expand Down
4 changes: 2 additions & 2 deletions images/agent/src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ module agent
go 1.22.2

require (
github.com/deckhouse/sds-node-configurator/api v0.0.0-20241103120640-3e41c48c48fa
github.com/deckhouse/sds-node-configurator/api v0.0.0-20241104200552-c02b44d9b6a0
github.com/go-logr/logr v1.4.2
github.com/google/go-cmp v0.6.0
github.com/gosimple/slug v1.14.0
github.com/onsi/ginkgo/v2 v2.19.0
github.com/onsi/gomega v1.33.1
github.com/pilebones/go-udev v0.9.0
Expand Down Expand Up @@ -42,7 +43,6 @@ require (
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/pprof v0.0.0-20240525223248-4bfdf5a9a2af // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gosimple/slug v1.14.0 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/josharian/intern v1.0.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion images/sds-health-watcher-controller/src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.22.3

require (
github.com/cloudflare/cfssl v1.5.0
github.com/deckhouse/sds-node-configurator/api v0.0.0-20241103120640-3e41c48c48fa
github.com/deckhouse/sds-node-configurator/api v0.0.0-20241104200552-c02b44d9b6a0
github.com/go-logr/logr v1.4.2
github.com/prometheus/client_golang v1.19.1
github.com/stretchr/testify v1.9.0
Expand Down
Loading