Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 864 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 864 Bytes

Kubernetes Training

This setup based on:

Usage

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