Skip to content
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
2 changes: 1 addition & 1 deletion tests/e2e/heterogeneous_clusters_kind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run_heterogeneous_clusters(
local_queue=queue_name,
)
)
cluster.up()
cluster.apply()
sleep(5)
node_name = get_pod_node(self, self.namespace, cluster_name)
print(f"Cluster {cluster_name}-{flavor} is running on node: {node_name}")
Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/heterogeneous_clusters_oauth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def run_heterogeneous_clusters(
namespace=self.namespace,
name=cluster_name,
num_workers=1,
head_cpu_requests="500m",
head_cpu_limits="500m",
worker_cpu_requests="500m",
head_cpu_requests=1,
head_cpu_limits=1,
worker_cpu_requests=1,
worker_cpu_limits=1,
worker_memory_requests=1,
worker_memory_limits=4,
Expand All @@ -66,7 +66,7 @@ def run_heterogeneous_clusters(
local_queue=queue_name,
)
)
cluster.up()
cluster.apply()
sleep(5)
node_name = get_pod_node(self, self.namespace, cluster_name)
print(f"Cluster {cluster_name}-{flavor} is running on node: {node_name}")
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/local_interactive_sdk_kind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def run_local_interactives(
)
)

cluster.up()
cluster.apply()

cluster.wait_ready()
cluster.status()
Expand Down
6 changes: 5 additions & 1 deletion tests/e2e/local_interactive_sdk_oauth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ def run_local_interactives(self):
namespace=self.namespace,
name=cluster_name,
num_workers=1,
head_memory_requests=6,
head_memory_limits=8,
head_cpu_requests=1,
head_cpu_limits=1,
worker_cpu_requests=1,
worker_cpu_limits=1,
worker_memory_requests=1,
Expand All @@ -52,7 +56,7 @@ def run_local_interactives(self):
verify_tls=False,
)
)
cluster.up()
cluster.apply()
cluster.wait_ready()

generate_cert.generate_tls_cert(cluster_name, self.namespace)
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/mnist_raycluster_sdk_aw_kind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run_mnist_raycluster_sdk_kind(
)
)

cluster.up()
cluster.apply()

cluster.status()

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/mnist_raycluster_sdk_kind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_mnist_raycluster_sdk_kind(
)
)

cluster.up()
cluster.apply()

cluster.status()

Expand Down
10 changes: 5 additions & 5 deletions tests/e2e/mnist_raycluster_sdk_oauth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ def run_mnist_raycluster_sdk_oauth(self):
name="mnist",
namespace=self.namespace,
num_workers=1,
head_cpu_requests="500m",
head_cpu_limits="500m",
head_memory_requests=6,
head_memory_limits=8,
worker_cpu_requests=1,
worker_cpu_limits=1,
worker_memory_requests=1,
worker_memory_limits=4,
worker_memory_requests=6,
worker_memory_limits=8,
image=ray_image,
write_to_file=True,
verify_tls=False,
)
)

cluster.up()
cluster.apply()

cluster.status()

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/start_ray_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
)
)

cluster.up()
cluster.apply()

cluster.status()

Expand Down