From 4048b51db06adcb5e93d3793942e14e003e903b6 Mon Sep 17 00:00:00 2001 From: Piotr Date: Wed, 29 May 2024 09:13:29 +0200 Subject: [PATCH] feat: adding 4gb backends Signed-off-by: Piotr --- killercoda_cli/scenario_init.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/killercoda_cli/scenario_init.py b/killercoda_cli/scenario_init.py index 1a6fab4..64bd9cf 100644 --- a/killercoda_cli/scenario_init.py +++ b/killercoda_cli/scenario_init.py @@ -2,18 +2,11 @@ import os import inquirer -# Define environment and backend options -environments = { - "ubuntu": "Ubuntu 20.04 with Docker and Podman", - "ubuntu-4GB": "Ubuntu 20.04 with Docker and Podman, 4GB environment", - "kubernetes-kubeadm-1node": "Kubeadm cluster with one control plane, taint removed, ready to schedule workload, 2GB environment", - "kubernetes-kubeadm-1node-4GB": "Kubeadm cluster with one control plane, taint removed, ready to schedule workload, 4GB environment", - "kubernetes-kubeadm-2nodes": "Kubeadm cluster with one control plane and one node, ready to schedule workload, 4GB environment" -} - backends = { "kubernetes-kubeadm-1node": "Kubernetes kubeadm 1 node", "kubernetes-kubeadm-2nodes": "Kubernetes kubeadm 2 nodes", + "kubernetes-kubeadm-1node-4GB": "Kubeadm cluster with one control plane, taint removed, ready to schedule workload, 4GB environment", + "ubuntu-4GB": "Ubuntu 20.04 with Docker and Podman, 4GB environment", "ubuntu": "Ubuntu 20.04" }