#!/bin/bash # start minikube minikube start # apply all Kubernetes YAML files kubectl apply -f backend-deployment.yaml kubectl apply -f web-deployment.yaml kubectl apply -f statefulset.yaml kubectl apply -f backend-service.yaml kubectl apply -f web-service.yaml kubectl apply -f redis-service.yaml # Output web service URL minikube service web-service --url