https://github.com/blndev/kubernetes-playground
https://github.com/blndev/kubernetes-playground
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blndev/kubernetes-playground
- Owner: blndev
- Created: 2020-02-02T20:52:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-11T14:35:12.000Z (about 5 years ago)
- Last Synced: 2025-07-19T04:56:37.710Z (11 months ago)
- Language: HCL
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kubernetes-Playground
This Repository is used to play around with different ways of Kubernetes deployments
Therefore we have a few folders which describing the technology and sub folders with the demo deployments.
## DevTest Environment
I use Minikube for testing in general.
https://minikube.sigs.k8s.io/docs/start/
## Deployments
### Terraform
Kubernetes deployments based on terraform scripts
just go the the Project folder and execute:
```bash
terraform init
terraform apply --auto-approve
```
That will create all requested Resources in the configured Kubernetes Cluster.
Currently in the default context.
All resources can be removed with
```bash
terraform destroy
```