Skip to content

Commit 15521eb

Browse files
authored
Merge pull request #203 from red-hat-storage/sync_us--main
Syncing latest changes from upstream main for ramen
2 parents d8f9a96 + 1affb87 commit 15521eb

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/user-quick-start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ enough resources:
142142
1. Install `subctl` tool, See
143143
[Submariner subctl installation](https://submariner.io/operations/deployment/subctl/)
144144
for the details.
145-
Tested with version v0.16.0.
145+
Version v0.16.3 or later is required.
146146

147147
1. Install the `velero` tool. See
148148
[Velero Basic Install](https://velero.io/docs/v1.12/basic-install/)

test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ environment.
4242
1. Install `subctl` tool, See
4343
[Submariner subctl installation](https://submariner.io/operations/deployment/subctl/)
4444
for the details.
45-
Tested with version v0.15.2.
45+
Version v0.16.3 or later is required.
4646

4747
1. Install the `velero` tool. See
4848
[Velero Basic Install](https://velero.io/docs/v1.12/basic-install/)

test/addons/rook-cluster/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import drenv
1010
from drenv import kubectl
1111

1212
# Update this when upgrading rook.
13-
VERSION = "release-1.12"
13+
VERSION = "release-1.13"
1414
BASE_URL = f"https://raw.githubusercontent.com/rook/rook/{VERSION}/deploy/examples"
1515

1616

test/addons/rook-operator/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import drenv
1010
from drenv import kubectl
1111

1212
# Update this when upgrading rook.
13-
VERSION = "release-1.12"
13+
VERSION = "release-1.13"
1414
BASE_URL = f"https://raw.githubusercontent.com/rook/rook/{VERSION}/deploy/examples"
1515

1616

test/addons/rook-toolbox/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import sys
99
from drenv import kubectl
1010

1111
# Update this when upgrading rook.
12-
VERSION = "release-1.12"
12+
VERSION = "release-1.13"
1313
BASE_URL = f"https://raw.githubusercontent.com/rook/rook/{VERSION}/deploy/examples"
1414

1515

test/addons/submariner/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from drenv import cluster as drenv_cluster
1111
from drenv import kubectl
1212
from drenv import subctl
1313

14-
VERSION = "0.15.2"
14+
VERSION = "0.16.3"
1515

1616
NAMESPACE = "submariner-operator"
1717

test/addons/submariner/test

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def wait_for_service_export(cluster, namespace):
128128
print(f"Waiting for service in namespace '{namespace}' in cluster '{cluster}'")
129129
kubectl.wait(
130130
f"serviceexports/{SERVICE}",
131-
"--for=condition=Synced=True",
131+
"--for=condition=Ready",
132132
f"--namespace={namespace}",
133133
"--timeout=120s",
134134
context=cluster,

test/addons/volsync/test

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def setup_replication_service(cluster1, cluster2):
8282
print(f"Waiting until service export is synced in cluster '{cluster2}'")
8383
kubectl.wait(
8484
f"serviceexports/{VOLSYNC_SERVICE}",
85-
"--for=condition=Synced=True",
85+
"--for=condition=Ready",
8686
f"--namespace={NAMESPACE}",
8787
"--timeout=120s",
8888
context=cluster2,

0 commit comments

Comments
 (0)