@@ -209,7 +209,11 @@ def check_installation(tool_info: ToolInfo) -> ToolStatus:
209
209
inquirer .List (
210
210
"platform" ,
211
211
message = click .style ("Which platform would you like to use?" , fg = "blue" , bold = True ),
212
- choices = ["Minikube" , "Docker Desktop" ],
212
+ choices = [
213
+ "Minikube" ,
214
+ "Docker Desktop" ,
215
+ "No Backend (Interacting with remote cluster, see `warnet auth --help`)" ,
216
+ ],
213
217
)
214
218
]
215
219
answers = inquirer .prompt (questions )
@@ -219,15 +223,13 @@ def check_installation(tool_info: ToolInfo) -> ToolStatus:
219
223
if answers ["platform" ] == "Docker Desktop" :
220
224
check_results .append (check_installation (docker_info ))
221
225
check_results .append (check_installation (docker_desktop_info ))
222
- check_results .append (check_installation (kubectl_info ))
223
- check_results .append (check_installation (helm_info ))
224
226
elif answers ["platform" ] == "Minikube" :
225
227
check_results .append (check_installation (docker_info ))
226
228
check_results .append (check_installation (minikube_info ))
227
229
if is_platform_darwin ():
228
230
check_results .append (check_installation (minikube_version_info ))
229
- check_results .append (check_installation (kubectl_info ))
230
- check_results .append (check_installation (helm_info ))
231
+ check_results .append (check_installation (kubectl_info ))
232
+ check_results .append (check_installation (helm_info ))
231
233
else :
232
234
click .secho ("Please re-run setup." , fg = "yellow" )
233
235
sys .exit (1 )
0 commit comments