diff --git a/app/public/exam.html b/app/public/exam.html
index 3041bc0..4475449 100644
--- a/app/public/exam.html
+++ b/app/public/exam.html
@@ -110,7 +110,7 @@
diff --git a/docker-compose.yaml b/docker-compose.yaml
index a6b5458..f87bfcf 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -177,8 +177,6 @@ services:
command: ["redis-server", "--appendonly", "yes"]
expose:
- "6379"
- volumes:
- - redis-data:/data
restart: unless-stopped
networks:
- ckx-network
@@ -241,5 +239,4 @@ networks:
driver: bridge
volumes:
- kube-config: # Shared volume for Kubernetes configuration
- redis-data: # Persistent volume for Redis data
\ No newline at end of file
+ kube-config: # Shared volume for Kubernetes configuration
\ No newline at end of file
diff --git a/docs/webapp/index-functionality.md b/docs/webapp/index-functionality.md
index a138249..c7050cd 100644
--- a/docs/webapp/index-functionality.md
+++ b/docs/webapp/index-functionality.md
@@ -60,7 +60,7 @@ The `index.html` file serves as the main landing page for the CK-X Simulator. He
-
+
GitHub
diff --git a/kind-cluster/entrypoint.sh b/kind-cluster/entrypoint.sh
index 4aa4710..8bfa083 100644
--- a/kind-cluster/entrypoint.sh
+++ b/kind-cluster/entrypoint.sh
@@ -36,6 +36,7 @@ adduser -S -D -H -s /sbin/nologin -G sshd sshd
#start ssh service
/usr/sbin/sshd -D &
+sleep 10
touch /ready
# Keep container running
diff --git a/kind-cluster/scripts/env-setup b/kind-cluster/scripts/env-setup
index 9f1d9a6..38ea1a0 100755
--- a/kind-cluster/scripts/env-setup
+++ b/kind-cluster/scripts/env-setup
@@ -9,6 +9,11 @@ NUM_WORKERS=${1:-0} # Default to 1 worker if not provided
CLUSTER_NAME=${2:-cluster}
NODE_IMAGE=${3:-kindest/node:v1.32.3}
+#cleanup env
+echo "Cleaning up environment..."
+env-cleanup
+sleep 10
+
#delete kind-config.yaml if present
if [ -f "kind-config.yaml" ]; then
echo "kind-config.yaml already exists, deleting it"