Skip to content

Commit fcf4488

Browse files
committed
fix: Increase test-cluster TTL to 6h
1 parent dbaef33 commit fcf4488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/src/modules/provider_replicated.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def api_call_create_cluster(cluster_name, spec, platform_version, logger):
1414
platform_version version of the (K8s) platform
1515
logger logger (String-consuming function)
1616
"""
17-
command = f"replicated cluster create --name {cluster_name} --distribution {spec['distribution']} --instance-type {spec['instance-type']} --version {platform_version} --disk {spec['disk-size']} --nodes {spec['node-count']} --ttl 4h"
17+
command = f"replicated cluster create --name {cluster_name} --distribution {spec['distribution']} --instance-type {spec['instance-type']} --version {platform_version} --disk {spec['disk-size']} --nodes {spec['node-count']} --ttl 6h"
1818
logger(f"System call: --> {command}")
1919
exit_code, output = run_command(command, 'replicated cluster create')
2020
if exit_code != 0:

0 commit comments

Comments
 (0)