Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ribbinpo/minikube-learning
for poc simple kubernetes
https://github.com/ribbinpo/minikube-learning
kubernetes minikube poc
Last synced: about 14 hours ago
JSON representation
for poc simple kubernetes
- Host: GitHub
- URL: https://github.com/ribbinpo/minikube-learning
- Owner: ribbinpo
- Created: 2024-08-22T10:34:01.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T10:35:20.000Z (3 months ago)
- Last Synced: 2024-08-22T13:06:20.144Z (3 months ago)
- Topics: kubernetes, minikube, poc
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minikube Learning
This is learn component of Kubernetes with Minikube.
In this learning is consist of 2 parts:
1. mongodb
2. webappMinikube Command
```bash
# check ip
minikube ip
```Kubectl Command
```bash
# check ip
kubectl get node -o wide# run kubernets components
kubectl apply -f mongo-config.yaml
kubectl apply -f mongo-secret.yaml
kubectl apply -f mongo.yaml
kubectl apply -f webapp.yaml# get all components in cluster
kubectl get all# configmap, secret, pod, svc
kubectl get configmap
kubectl get secret
kubectl get pod# describe format: kubectl describe [component] [name]
kubectl describe service webapp-service# view logs of containers
kubectl logs name... -f
```