https://github.com/conradwt/kubernetes-crash-course
https://github.com/conradwt/kubernetes-crash-course
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/conradwt/kubernetes-crash-course
- Owner: conradwt
- Created: 2024-06-02T04:36:45.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-02T04:55:55.000Z (about 2 years ago)
- Last Synced: 2024-06-02T05:38:37.548Z (about 2 years ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KodeKloud - Kubernetes Crash Course
## Labs - Deploying Voting App on Kubernetes
1. create resources
```zsh
kubectl create namespace vote
kubectl apply -f labs/deploying-voting-app-on-kubernetes -n vote
```
2. delete resources
```zsh
kubectl delete -f labs/deploying-voting-app-on-kubernetes -n vote
kubectl delete namespace vote
```