Skip to content
Merged
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 apps/src/modules/provider_replicated.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def api_call_create_cluster(cluster_name, spec, platform_version, logger):
platform_version version of the (K8s) platform
logger logger (String-consuming function)
"""
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"
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"
logger(f"System call: --> {command}")
exit_code, output = run_command(command, 'replicated cluster create')
if exit_code != 0:
Expand Down