https://github.com/roger-king/playing-with-skaffold
Local development of applications within your a local k8s cluster
https://github.com/roger-king/playing-with-skaffold
Last synced: 2 months ago
JSON representation
Local development of applications within your a local k8s cluster
- Host: GitHub
- URL: https://github.com/roger-king/playing-with-skaffold
- Owner: roger-king
- Created: 2019-03-02T13:29:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T14:23:41.000Z (over 2 years ago)
- Last Synced: 2025-02-01T02:25:14.665Z (4 months ago)
- Language: JavaScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playing with Skaffold
Local development has really changed through out the last few years. With the evolution of docker and kubernetes. I have always been a firm believer of running your application in an environment as close to production.
# Enter Skaffold
Google created skaffold. Skaffold is a tool to help you develop your application within your docker container and run in a kubernetes cluster!
[TUTORIAL](https://nemethgergely.com/using-kubernetes-for-local-development/index.html)
# Installation of dependencies
- [MiniKube](https://github.com/kubernetes/minikube/releases)
- [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
- [Docker](https://www.docker.com/products/docker-desktop)
- [Installing Skaffold](https://skaffold.dev/docs/getting-started/#installing-skaffold)# Running:
```bash
skaffold dev
```It's that simple. I encourage you to pull this repo down and test it out!