Skip to content

Commit 1affb87

Browse files
nirsShyamsundarR
authored andcommitted
Upgrade submariner to 0.16.3
Submariner renamed the `Synced` condition to `Ready`[1]. Good change but it broke our tests. [1] submariner-io/lighthouse#1211 Signed-off-by: Nir Soffer <[email protected]>
1 parent 6f43ea3 commit 1affb87

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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/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)