https://github.com/softonic/skaffold-workshop
Local k8s environment
https://github.com/softonic/skaffold-workshop
Last synced: 4 months ago
JSON representation
Local k8s environment
- Host: GitHub
- URL: https://github.com/softonic/skaffold-workshop
- Owner: softonic
- Created: 2021-04-14T08:03:36.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T13:28:07.000Z (about 5 years ago)
- Last Synced: 2025-06-06T00:46:02.284Z (12 months ago)
- Language: Smarty
- Size: 23.4 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Local dev env with Skaffold and Kind
## Requirements
- [kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation)
Our local k8s cluster of choice
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
To interact with our local cluster
- [helm](https://helm.sh/docs/intro/install/)
To render our manifests templates
- [skaffold](https://skaffold.dev/docs/install/)
To manage our dev environment (talk to local cluster, render templates, sync files)
## Before start
- Create Kind cluster
kind create cluster --name skaffold-workshop --config kind.conf.yaml
## Examples
### Getting Started
Simple go application deployed using a k8s pod.
### Helm deployment
You can deploy multiple releases with skaffold, each will need a chartPath, a values file, and namespace.
Skaffold can inject intermediate build tags in the the values map in the skaffold.yaml.
### Typescript
Using express server with typescript
### Helm Workshop
Code used in previous helm workshop