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

Support VolumeGroupReplication with VR #605

Merged
merged 2 commits into from
Jul 10, 2024

Conversation

Madhu-1
Copy link
Member

@Madhu-1 Madhu-1 commented Jun 26, 2024

This PR adds the support for replicating the group with volumegrouplication

@Madhu-1 Madhu-1 changed the title Support VolueGroupReplication with VR Support VolumeGroupReplication with VR Jun 26, 2024
Copy link
Member

@iPraveenParihar iPraveenParihar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typos

Copy link
Collaborator

@nixpanic nixpanic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

few minor things, and a larger interface improvement request to simplify the code and make maintenance easier.

internal/sidecar/service/volumereplication.go Outdated Show resolved Hide resolved
internal/sidecar/service/volumereplication.go Outdated Show resolved Hide resolved
internal/client/replication-client.go Outdated Show resolved Hide resolved
internal/client/replication-client.go Outdated Show resolved Hide resolved
internal/client/replication-client_test.go Outdated Show resolved Hide resolved
@Madhu-1 Madhu-1 force-pushed the support-vgr-in-vr branch 4 times, most recently from fca0cff to 310786f Compare July 2, 2024 12:59
@Madhu-1 Madhu-1 requested a review from nixpanic July 2, 2024 13:11
@Madhu-1 Madhu-1 requested a review from Nikhil-Ladha July 4, 2024 11:06
Rakshith-R
Rakshith-R previously approved these changes Jul 4, 2024
Copy link
Member

@Rakshith-R Rakshith-R left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

@Madhu-1
Copy link
Member Author

Madhu-1 commented Jul 4, 2024

@iPraveenParihar You have requested changes on this one, can you please review it again.
@nixpanic can you please also review it again, made all the changes

Copy link
Contributor

@Nikhil-Ladha Nikhil-Ladha left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Copy link
Collaborator

@nixpanic nixpanic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

at least one comment needs careful checking, the others are mostly nits

@@ -58,6 +59,7 @@ func init() {
flag.StringVar(&cmd.stagingPath, "stagingpath", stagingPath, "staging path")
flag.StringVar(&cmd.operation, "operation", "", "csi-addons operation")
flag.StringVar(&cmd.persistentVolume, "persistentvolume", "", "name of the PersistentVolume")
flag.StringVar(&cmd.volumeGroupReplicationContent, "volumegroupreplicaitoncontent", "", "name of the VolumeGroupReplicationContent")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo: volumegroupreplicaitoncontent

}
return nil
case v.groupID != "":
req = &proto.ReplicationSource{
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this does not look correct, you don't modify the passed req here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nixpanic This is the replication Spec which need to be set nothing else is modified here.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But is it intended to overwrite the req variable this way? The new req is not returned, so the caller of the function will never see it. I expect a warning from golangci about this too.

The original (req.Type) is not updated as is done on line 105.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, its an overlook from my side, you are correct we should not overwrite the req rather set the .Type as its done in other place.

@@ -0,0 +1,181 @@
/*
Copyright 2024 The Kubernetes-CSI-Addons Authors.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the filename is a little weird, it is in the client package, and also ends in -client.go.

@@ -0,0 +1,181 @@
/*
Copyright 2022 The Kubernetes-CSI-Addons Authors.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct the year?
Also has the unneeded -client in the filename.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed -client from the filename, this is just a rename of file, left the year to 2022 as it was before, Do we need to change that as well?

internal/sidecar/service/volumereplication.go Outdated Show resolved Hide resolved
@mergify mergify bot dismissed Rakshith-R’s stale review July 4, 2024 12:47

Pull request has been modified.

@Madhu-1 Madhu-1 requested a review from nixpanic July 4, 2024 12:47
Copy link
Collaborator

@nixpanic nixpanic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

had a quick look, seems reasonable to me. No objections, but I haven't checked the reconciling code in detail

internal/client/group-replication.go Show resolved Hide resolved

if pv.Spec.CSI.VolumeHandle == "" {
return errors.New("volume ID is not set")
if c.persistentVolume != "" {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In case where both PV and VGRC are provided, PV will be considered.
error out before this if both are provided.

Copy link
Member

@Rakshith-R Rakshith-R left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Member

@iPraveenParihar iPraveenParihar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, will leave it to @nixpanic for final review and approval.
Thanks!

@Madhu-1
Copy link
Member Author

Madhu-1 commented Jul 10, 2024

@nixpanic can you please review it again?

update the proto to support the replicaiton of
volumegroup.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
update the RPC calls to set the
replication source for group replication
and add support for volumegroup replication

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
@mergify mergify bot merged commit 0f8a18e into csi-addons:main Jul 10, 2024
15 checks passed
lumiere-bot bot added a commit to coolguy1771/home-ops that referenced this pull request Aug 17, 2024
#5239)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kubernetes-csi-addons](https://github.com/csi-addons/kubernetes-csi-addons)
| minor | `v0.8.0` -> `v0.9.0` |

---

### Release Notes

<details>
<summary>csi-addons/kubernetes-csi-addons
(kubernetes-csi-addons)</summary>

###
[`v0.9.0`](https://github.com/csi-addons/kubernetes-csi-addons/releases/tag/v0.9.0)

[Compare
Source](https://github.com/csi-addons/kubernetes-csi-addons/compare/v0.8.0...v0.9.0)

#### What's Changed

- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#497
- vendor: bump the k8s-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#498
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#500
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#501
- Update tools and dependencies by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#401
- manager: make leader election timeouts configurable by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#505
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#507
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#508
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#509
- vendor: bump the k8s-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#506
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#511
- ci: bump helm/kind-action from 1.8.0 to 1.9.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#513
- ci: bump golangci/golangci-lint-action from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#514
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#515
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#520
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#521
- ci: bump super-linter/super-linter from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#519
- test: unit test for getNextSchedule by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#518
- vendor: bump go.uber.org/zap from 1.26.0 to 1.27.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#526
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#525
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#528
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#527
- ci: fix TestGetNextSchedule failure by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#530
- deploy: run all containers with read-only filesystem by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#529
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#533
- vendor: bump the golang-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#532
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#534
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#538
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#537
- replace custom ContainsInSlice() with standard slices.Contains() by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#540
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.3.0 to 5.4.1 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#542
- vendor: bump google.golang.org/grpc from 1.62.1 to 1.63.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#541
- vendor: bump sigs.k8s.io/controller-runtime from 0.17.2 to 0.17.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#545
- vendor: bump google.golang.org/grpc from 1.63.0 to 1.63.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#544
- vendor: bump github.com/onsi/gomega from 1.32.0 to 1.33.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#549
- vendor: bump sigs.k8s.io/controller-tools from 0.14.0 to 0.15.0 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#550
- vendor: bump the k8s-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#552
- ci: bump golangci/golangci-lint-action from 4 to 5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#553
- ci: bump helm/kind-action from 1.9.0 to 1.10.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#554
- vendor: bump github.com/onsi/gomega from 1.33.0 to 1.33.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#560
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.0 to 0.18.1 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#559
- vendor: bump google.golang.org/protobuf from 1.33.0 to 1.34.1 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#558
- ci: bump golangci/golangci-lint-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#564
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.1 to 0.18.2 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#565
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.17.0 to
0.18.0 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#566
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.1 to
1.34.2 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#571
- vendor: bump google.golang.org/grpc from 1.63.2 to 1.64.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#569
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#570
- ci: use golang 1.22.0 for main build by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#575
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#576
- vendor: bump github.com/go-logr/logr from 1.4.1 to 1.4.2 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#577
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.1 to 5.4.2 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#578
- Manually pin otel-grpc to v0.46.0 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#581
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.18.0 to
0.18.1 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#583
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.3.0
to 1.4.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#582
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.3 to 0.18.4 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#586
- ci: bump docker/build-push-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#592
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#590
- Add scaffoling for
volumegroupreplication/replicationclass/replicationcontent by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#588
- fix: fix typos related to group replication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#594
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#589
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in
/tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#591
- reclaimspace: support for storageclass annotation by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#585
- Replication: set volumeID in ReplicationSource for the
volumeReplication by [@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#596
- replication: add missing VRC name for VGR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#597
- ci: add DNM label rules for mergify by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#599
- replication: add pvcRef to volumegroupreplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#598
- vendor: bump k8s.io/klog/v2 from 2.130.0 to 2.130.1 in the
k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#602
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.2 to
1.35.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#601
- reclaimspace: fix schedule handling by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#604
- doc: correct case of YAML from yaml by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#611
- vendor: bump google.golang.org/grpc from 1.64.0 to 1.65.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#612
- vendor: bump github.com/container-storage-interface/spec from 1.9.0 to
1.10.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#613
- Support VolumeGroupReplication with VR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#605
- Migrate project from go v3 layout to v4 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#606
- vendor: bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.19.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#617
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.2 to 5.4.3 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#620
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#621
- replication: fix problem with setReplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#619
- docs: add documentation for EncryptionKeyRotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#624
- Implement EncryptionKeyRotation controllers by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#608
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#627
- Modify pvc controller to reconcile encryptionkeyrotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#616
- reclaimspace: enhancement to consider existing PVCs for StorageClass
Annotations by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#614
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.4.0
to 1.5.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#628
- Remove special handling of targetpath for deprecated Kubernetes 1.24
by [@&#8203;psy-q](https://github.com/psy-q) in
[csi-addons/kubernetes-csi-addons#625
- vendor: bump github.com/operator-framework/operator-sdk from 1.35.0 to
1.36.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#631
- vendor: bump github.com/onsi/gomega from 1.34.0 to 1.34.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#632
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.5.0
to 1.5.1 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#630
- vendor: bump github.com/operator-framework/operator-sdk from 1.36.0 to
1.36.1 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#638
- vendor: bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#639
- fix pvc reclaimspace & keyrotation annotation filter by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#641
- doc: update installation document by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#642
- Include capabilities in CSIAddonsNode status by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#635

#### New Contributors

- [@&#8203;black-dragon74](https://github.com/black-dragon74) made
their first contribution in
[csi-addons/kubernetes-csi-addons#581
- [@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) made
their first contribution in
[csi-addons/kubernetes-csi-addons#585
- [@&#8203;psy-q](https://github.com/psy-q) made their first
contribution in
[csi-addons/kubernetes-csi-addons#625

**Full Changelog**:
csi-addons/kubernetes-csi-addons@v0.8.0...v0.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4zNS4wIiwidXBkYXRlZEluVmVyIjoiMzguMzUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL21pbm9yIl19-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
spiceratops added a commit to spiceratops/k8s-gitops that referenced this pull request Aug 20, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kubernetes-csi-addons](https://github.com/csi-addons/kubernetes-csi-addons)
| minor | `v0.8.0` -> `v0.9.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>csi-addons/kubernetes-csi-addons
(kubernetes-csi-addons)</summary>

###
[`v0.9.0`](https://github.com/csi-addons/kubernetes-csi-addons/releases/tag/v0.9.0)

[Compare
Source](https://github.com/csi-addons/kubernetes-csi-addons/compare/v0.8.0...v0.9.0)

#### What's Changed

- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#497
- vendor: bump the k8s-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#498
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#500
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#501
- Update tools and dependencies by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#401
- manager: make leader election timeouts configurable by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#505
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#507
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#508
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#509
- vendor: bump the k8s-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#506
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#511
- ci: bump helm/kind-action from 1.8.0 to 1.9.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#513
- ci: bump golangci/golangci-lint-action from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#514
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#515
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#520
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#521
- ci: bump super-linter/super-linter from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#519
- test: unit test for getNextSchedule by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#518
- vendor: bump go.uber.org/zap from 1.26.0 to 1.27.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#526
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#525
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#528
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#527
- ci: fix TestGetNextSchedule failure by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#530
- deploy: run all containers with read-only filesystem by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#529
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#533
- vendor: bump the golang-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#532
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#534
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#538
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#537
- replace custom ContainsInSlice() with standard slices.Contains() by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#540
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.3.0 to 5.4.1 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#542
- vendor: bump google.golang.org/grpc from 1.62.1 to 1.63.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#541
- vendor: bump sigs.k8s.io/controller-runtime from 0.17.2 to 0.17.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#545
- vendor: bump google.golang.org/grpc from 1.63.0 to 1.63.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#544
- vendor: bump github.com/onsi/gomega from 1.32.0 to 1.33.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#549
- vendor: bump sigs.k8s.io/controller-tools from 0.14.0 to 0.15.0 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#550
- vendor: bump the k8s-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#552
- ci: bump golangci/golangci-lint-action from 4 to 5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#553
- ci: bump helm/kind-action from 1.9.0 to 1.10.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#554
- vendor: bump github.com/onsi/gomega from 1.33.0 to 1.33.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#560
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.0 to 0.18.1 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#559
- vendor: bump google.golang.org/protobuf from 1.33.0 to 1.34.1 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#558
- ci: bump golangci/golangci-lint-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#564
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.1 to 0.18.2 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#565
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.17.0 to
0.18.0 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#566
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.1 to
1.34.2 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#571
- vendor: bump google.golang.org/grpc from 1.63.2 to 1.64.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#569
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#570
- ci: use golang 1.22.0 for main build by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#575
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#576
- vendor: bump github.com/go-logr/logr from 1.4.1 to 1.4.2 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#577
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.1 to 5.4.2 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#578
- Manually pin otel-grpc to v0.46.0 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#581
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.18.0 to
0.18.1 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#583
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.3.0
to 1.4.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#582
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.3 to 0.18.4 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#586
- ci: bump docker/build-push-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#592
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#590
- Add scaffoling for
volumegroupreplication/replicationclass/replicationcontent by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#588
- fix: fix typos related to group replication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#594
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#589
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in
/tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#591
- reclaimspace: support for storageclass annotation by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#585
- Replication: set volumeID in ReplicationSource for the
volumeReplication by [@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#596
- replication: add missing VRC name for VGR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#597
- ci: add DNM label rules for mergify by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#599
- replication: add pvcRef to volumegroupreplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#598
- vendor: bump k8s.io/klog/v2 from 2.130.0 to 2.130.1 in the
k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#602
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.2 to
1.35.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#601
- reclaimspace: fix schedule handling by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#604
- doc: correct case of YAML from yaml by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#611
- vendor: bump google.golang.org/grpc from 1.64.0 to 1.65.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#612
- vendor: bump github.com/container-storage-interface/spec from 1.9.0 to
1.10.0 by [@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#613
- Support VolumeGroupReplication with VR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#605
- Migrate project from go v3 layout to v4 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#606
- vendor: bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.19.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#617
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.2 to 5.4.3 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#620
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#621
- replication: fix problem with setReplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#619
- docs: add documentation for EncryptionKeyRotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#624
- Implement EncryptionKeyRotation controllers by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#608
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#627
- Modify pvc controller to reconcile encryptionkeyrotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#616
- reclaimspace: enhancement to consider existing PVCs for StorageClass
Annotations by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#614
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.4.0
to 1.5.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#628
- Remove special handling of targetpath for deprecated Kubernetes 1.24
by [@&#8203;psy-q](https://github.com/psy-q) in
[csi-addons/kubernetes-csi-addons#625
- vendor: bump github.com/operator-framework/operator-sdk from 1.35.0 to
1.36.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#631
- vendor: bump github.com/onsi/gomega from 1.34.0 to 1.34.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#632
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.5.0
to 1.5.1 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#630
- vendor: bump github.com/operator-framework/operator-sdk from 1.36.0 to
1.36.1 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#638
- vendor: bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#639
- fix pvc reclaimspace & keyrotation annotation filter by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#641
- doc: update installation document by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) in
[csi-addons/kubernetes-csi-addons#642
- Include capabilities in CSIAddonsNode status by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#635

#### New Contributors

- [@&#8203;black-dragon74](https://github.com/black-dragon74) made
their first contribution in
[csi-addons/kubernetes-csi-addons#581
- [@&#8203;iPraveenParihar](https://github.com/iPraveenParihar) made
their first contribution in
[csi-addons/kubernetes-csi-addons#585
- [@&#8203;psy-q](https://github.com/psy-q) made their first
contribution in
[csi-addons/kubernetes-csi-addons#625

**Full Changelog**:
csi-addons/kubernetes-csi-addons@v0.8.0...v0.9.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4zNS4wIiwidXBkYXRlZEluVmVyIjoiMzguMzUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL21pbm9yIl19-->
lumiere-bot bot added a commit to coolguy1771/home-ops that referenced this pull request Sep 1, 2024
…#5323)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kubernetes-csi-addons](https://github.com/csi-addons/kubernetes-csi-addons)
| patch | `v0.9.0` -> `v0.9.1` |

---

### Release Notes

<details>
<summary>csi-addons/kubernetes-csi-addons
(kubernetes-csi-addons)</summary>

###
[`v0.9.1`](https://github.com/csi-addons/kubernetes-csi-addons/releases/tag/v0.9.1)

[Compare
Source](https://github.com/csi-addons/kubernetes-csi-addons/compare/v0.9.0...v0.9.1)

#### What's Changed

- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#497
- vendor: bump the k8s-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#498
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#500
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#501
- Update tools and dependencies by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#401
- manager: make leader election timeouts configurable by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#505
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#507
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#508
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#509
- vendor: bump the k8s-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#506
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#511
- ci: bump helm/kind-action from 1.8.0 to 1.9.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#513
- ci: bump golangci/golangci-lint-action from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#514
- vendor: bump the k8s-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#515
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#520
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#521
- ci: bump super-linter/super-linter from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#519
- test: unit test for getNextSchedule by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#518
- vendor: bump go.uber.org/zap from 1.26.0 to 1.27.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#526
- vendor: bump the golang-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#525
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#528
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#527
- ci: fix TestGetNextSchedule failure by
[@&#8203;karthik-us](https://github.com/karthik-us) in
[csi-addons/kubernetes-csi-addons#530
- deploy: run all containers with read-only filesystem by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#529
- vendor: bump the github-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#533
- vendor: bump the golang-dependencies group in /tools with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#532
- vendor: bump the golang-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#534
- vendor: bump the github-dependencies group with 1 update by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#538
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#537
- replace custom ContainsInSlice() with standard slices.Contains() by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#540
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.3.0 to 5.4.1 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#542
- vendor: bump google.golang.org/grpc from 1.62.1 to 1.63.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#541
- vendor: bump sigs.k8s.io/controller-runtime from 0.17.2 to 0.17.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#545
- vendor: bump google.golang.org/grpc from 1.63.0 to 1.63.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#544
- vendor: bump github.com/onsi/gomega from 1.32.0 to 1.33.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#549
- vendor: bump sigs.k8s.io/controller-tools from 0.14.0 to 0.15.0 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#550
- vendor: bump the k8s-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://github.com/dependabot)
in
[csi-addons/kubernetes-csi-addons#552
- ci: bump golangci/golangci-lint-action from 4 to 5 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#553
- ci: bump helm/kind-action from 1.9.0 to 1.10.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#554
- vendor: bump github.com/onsi/gomega from 1.33.0 to 1.33.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#560
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.0 to 0.18.1 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#559
- vendor: bump google.golang.org/protobuf from 1.33.0 to 1.34.1 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#558
- ci: bump golangci/golangci-lint-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#564
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.1 to 0.18.2 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#565
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.17.0 to
0.18.0 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#566
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.1 to
1.34.2 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#571
- vendor: bump google.golang.org/grpc from 1.63.2 to 1.64.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#569
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#570
- ci: use golang 1.22.0 for main build by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#575
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.2 to 0.18.3 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#576
- vendor: bump github.com/go-logr/logr from 1.4.1 to 1.4.2 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#577
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.1 to 5.4.2 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#578
- Manually pin otel-grpc to v0.46.0 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#581
- vendor: bump github.com/kubernetes-csi/csi-lib-utils from 0.18.0 to
0.18.1 in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#583
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.3.0
to 1.4.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#582
- vendor: bump sigs.k8s.io/controller-runtime from 0.18.3 to 0.18.4 in
the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#586
- ci: bump docker/build-push-action from 5 to 6 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#592
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#590
- Add scaffoling for
volumegroupreplication/replicationclass/replicationcontent by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#588
- fix: fix typos related to group replication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#594
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#589
- vendor: bump google.golang.org/protobuf from 1.34.1 to 1.34.2 in
/tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#591
- reclaimspace: support for storageclass annotation by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#585
- Replication: set volumeID in ReplicationSource for the
volumeReplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#596
- replication: add missing VRC name for VGR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#597
- ci: add DNM label rules for mergify by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#599
- replication: add pvcRef to volumegroupreplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#598
- vendor: bump k8s.io/klog/v2 from 2.130.0 to 2.130.1 in the
k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#602
- vendor: bump github.com/operator-framework/operator-sdk from 1.34.2 to
1.35.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#601
- reclaimspace: fix schedule handling by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#604
- doc: correct case of YAML from yaml by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#611
- vendor: bump google.golang.org/grpc from 1.64.0 to 1.65.0 in the
golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#612
- vendor: bump github.com/container-storage-interface/spec from 1.9.0 to
1.10.0 by [@&#8203;dependabot](https://github.com/dependabot)
in
[csi-addons/kubernetes-csi-addons#613
- Support VolumeGroupReplication with VR by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#605
- Migrate project from go v3 layout to v4 by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#606
- vendor: bump github.com/onsi/ginkgo/v2 from 2.17.2 to 2.19.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#617
- vendor: bump sigs.k8s.io/kustomize/kustomize/v5 from 5.4.2 to 5.4.3 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#620
- vendor: bump the k8s-dependencies group with 3 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#621
- replication: fix problem with setReplication by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#619
- docs: add documentation for EncryptionKeyRotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#624
- Implement EncryptionKeyRotation controllers by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#608
- vendor: bump the github-dependencies group with 2 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#627
- Modify pvc controller to reconcile encryptionkeyrotation by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#616
- reclaimspace: enhancement to consider existing PVCs for StorageClass
Annotations by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#614
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.4.0
to 1.5.0 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#628
- Remove special handling of targetpath for deprecated Kubernetes 1.24
by [@&#8203;psy-q](https://github.com/psy-q) in
[csi-addons/kubernetes-csi-addons#625
- vendor: bump github.com/operator-framework/operator-sdk from 1.35.0 to
1.36.0 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#631
- vendor: bump github.com/onsi/gomega from 1.34.0 to 1.34.1 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#632
- vendor: bump google.golang.org/grpc/cmd/protoc-gen-go-grpc from 1.5.0
to 1.5.1 in /tools in the golang-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#630
- vendor: bump github.com/operator-framework/operator-sdk from 1.36.0 to
1.36.1 in /tools in the github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#638
- vendor: bump github.com/onsi/ginkgo/v2 from 2.19.1 to 2.20.0 in the
github-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#639
- fix pvc reclaimspace & keyrotation annotation filter by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#641
- doc: update installation document by
[@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
in
[csi-addons/kubernetes-csi-addons#642
- Include capabilities in CSIAddonsNode status by
[@&#8203;black-dragon74](https://github.com/black-dragon74) in
[csi-addons/kubernetes-csi-addons#635
- build: update kube-rbac-proxy to v0.18.0 by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#644
- vendor: bump sigs.k8s.io/controller-tools from 0.15.0 to 0.16.1 in
/tools in the k8s-dependencies group by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#645
- ci: bump super-linter/super-linter from 6 to 7 by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#646
- replication: move conditions to api by
[@&#8203;Madhu-1](https://github.com/Madhu-1) in
[csi-addons/kubernetes-csi-addons#650
- vendor: bump the k8s-dependencies group with 4 updates by
[@&#8203;dependabot](https://github.com/dependabot) in
[csi-addons/kubernetes-csi-addons#647
- build: address FROM/as casing warning by
[@&#8203;nixpanic](https://github.com/nixpanic) in
[csi-addons/kubernetes-csi-addons#654
- deploy: remove extra prefix: csi-addons- by
[@&#8203;Rakshith-R](https://github.com/Rakshith-R) in
[csi-addons/kubernetes-csi-addons#655

#### New Contributors

- [@&#8203;black-dragon74](https://github.com/black-dragon74)
made their first contribution in
[csi-addons/kubernetes-csi-addons#581
- [@&#8203;iPraveenParihar](https://github.com/iPraveenParihar)
made their first contribution in
[csi-addons/kubernetes-csi-addons#585
- [@&#8203;psy-q](https://github.com/psy-q) made their first
contribution in
[csi-addons/kubernetes-csi-addons#625

**Full Changelog**:
csi-addons/kubernetes-csi-addons@v0.8.0...v0.9.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OC4wIiwidXBkYXRlZEluVmVyIjoiMzguNTguMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvZ2l0aHViLXJlbGVhc2UiLCJ0eXBlL3BhdGNoIl19-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants