This setup based on:
Make sure to install minikube.
Start minikube:
minikube start
Run the dashboard:
minikube dashboard
Load Local Image into minikube
minikube image load getting-started:latest
minikube image load hello-world:php8.3
Then do add the deployment and service.
In order to access from your browser, you need to port forward the container port:
kubectl port-forward service/getting-started 3000:3000
kubectl port-forward service/hello-world 8083:80