Skip to content

Commit

Permalink
Revert "Use Velero 1.9.4 (#197)"
Browse files Browse the repository at this point in the history
This reverts commit 22c61d9.
Should use velero 1.12.Z for plugin release 0.6

Signed-off-by: Shelly Kagan <[email protected]>
  • Loading branch information
ShellyKa13 committed Feb 5, 2024
1 parent 2810c27 commit d353844
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hack/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ DEPLOYMENT_TIMEOUT=600
USE_CSI=${USE_CSI:-1}
USE_RESTIC=${USE_RESTIC:-0}
CSI_PLUGIN=${CSI_PLUGIN:-velero/velero-plugin-for-csi:v0.5.1}
VELERO_VERSION=${VELERO_VERSION:-v1.9.4}
VELERO_VERSION=${VELERO_VERSION:-v1.12.0}
VELERO_DIR=_output/velero/bin

source cluster-up/hack/config.sh
Expand Down
15 changes: 10 additions & 5 deletions tests/resource_filtering_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,8 @@ var _ = Describe("Resource includes", func() {
// - VolumeSnapshot
// - VolumeSnapshotContent
// - VolumeSpapshotClass
expectedItems := 7
// - Namespace
expectedItems := 8
if framework.IsDataVolumeGC(f.KvClient) {
expectedItems -= 1
}
Expand Down Expand Up @@ -1380,7 +1381,8 @@ var _ = Describe("Resource includes", func() {
// - 2 VolumeSnapshotContent
// - VolumeSpapshotClass
// - DataVolume CRD
expectedItems := 13
// - Namespace
expectedItems := 14
if framework.IsDataVolumeGC(f.KvClient) {
expectedItems -= 2
}
Expand Down Expand Up @@ -1424,7 +1426,8 @@ var _ = Describe("Resource includes", func() {
// - VolumeSnapshotContent
// - VolumeSpapshotClass
// - DataVolume CRD
expectedItems := 8
// - Namespace
expectedItems := 9
if framework.IsDataVolumeGC(f.KvClient) {
expectedItems -= 1
}
Expand Down Expand Up @@ -1473,7 +1476,8 @@ var _ = Describe("Resource includes", func() {
// - VolumeSnapshotContent
// - VolumeSpapshotClass
// - DataVolume CRD
expectedItems := 10
// - Namespace
expectedItems := 11
if framework.IsDataVolumeGC(f.KvClient) {
expectedItems -= 1
}
Expand Down Expand Up @@ -1541,7 +1545,8 @@ var _ = Describe("Resource includes", func() {
// - VolumeSnapshotContent (PVC)
// - VolumeSpapshotClass
// - DataVolume CRD
expectedItems := 13
// - Namespace
expectedItems := 14
if framework.IsDataVolumeGC(f.KvClient) {
expectedItems -= 1
}
Expand Down

0 comments on commit d353844

Please sign in to comment.