File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33from invoke .collection import Collection
44
55from tasks .gcp .gke import create_gke , destroy_gke
6- from tasks .gcp .vm import create_vm , destroy_vm
76from tasks .gcp .openshift import create_openshift , destroy_openshift
7+ from tasks .gcp .vm import create_vm , destroy_vm
88
99collection = Collection ()
1010collection .add_task (destroy_vm )
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def create_openshift(
5353 "ddinfra:gcp/defaultInstanceType" : "n2-standard-8" ,
5454 }
5555
56- full_stack_name = deploy (
56+ deploy (
5757 ctx ,
5858 scenario_name ,
5959 config_path ,
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ def setup_gcp_config(config: Config):
334334 default_pull_secret_path = config .configParams .gcp .pullSecretPath
335335 while True :
336336 config .configParams .gcp .pullSecretPath = default_pull_secret_path
337- pull_secret_path = ask (f "🔑 Path to your OpenShift pull secret file (optional, can be set later): " )
337+ pull_secret_path = ask ("🔑 Path to your OpenShift pull secret file (optional, can be set later): " )
338338 if pull_secret_path :
339339 config .configParams .gcp .pullSecretPath = pull_secret_path
340340
You can’t perform that action at this time.
0 commit comments