# minikube-apps **Repository Path**: hipopulus/minikube-apps ## Basic Information - **Project Name**: minikube-apps - **Description**: No description available - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-29 - **Last Updated**: 2021-09-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Install `kubectl` >https://kubernetes.io/releases/download/ # Install `minikube` >https://minikube.sigs.k8s.io/docs/start/ # Start minikube cluster ``` minikube start --container-runtime=containerd ``` # Launch the dashboard ``` minikube dashboard ``` # Deploy apps (i.e. mysql) ``` kubectl apply -f ./yamls/mysql/pv.yaml kubectl apply -f ./yamls/mysql/deployment.yaml kubectl apply -f ./yamls/mysql/service.yaml ``` # Forward one or more local ports to a pod ``` kubectl port-forward --address localhost,192.168.62.242 deployment/mysql 13306:3306 ```