Example repo shows how to use tools from carvel dev: ytt, kbld, kapp and kwt to work with a simple Go app on Kubernetes.
Associated blog post: Deploying Kubernetes Applications with ytt, kbld, and kapp.
Head over to carvel.dev for installation instructions.
Each top level step has an associated config-step-*
directory. Refer to Directory Layout for details about files.
Introduces kapp for deploying k8s resources.
kapp deploy -a simple-app -f config-step-1-minimal/
kapp inspect -a simple-app --tree
kapp logs -f -a simple-app
Once deployed successfully, you can access frontend service at 127.0.0.1:8080
in your browser via kubectl port-forward
command:
kubectl port-forward svc/simple-app 8080:80
You will have to restart port forward command after making any changes as pods are recreated. Alternatively consider using kwt which exposes cluser IP subnets and cluster DNS to your machine and does not require any restarts:
sudo -E kwt net start
and open http://simple-app.default.svc.cluster.local/
.
Modify HELLO_MSG
environment value from stranger
to something else in config-step-1-minimal/config.yml
, and run:
kapp deploy -a simple-app -f config-step-1-minimal/ --diff-changes
In following steps we'll use -c
shorthand for --diff-changes
.
Introduces ytt templating for more flexible configuration.
kapp deploy -a simple-app -c -f <(ytt -f config-step-2-template/)
ytt provides a way to configure data values from command line as well:
kapp deploy -a simple-app -c -f <(ytt -f config-step-2-template/ -v hello_msg=another-stranger)
New message should be returned from the app in the browser.
Introduces ytt overlays to patch configuration without modifying original config.yml
.
kapp deploy -a simple-app -c -f <(ytt -f config-step-2-template/ -f config-step-2a-overlays/custom-scale.yml)
Requires ytt v0.13.0+.
Introduces use of multiple data values to show layering of configuration for different environment without modifying default values.yml
.
kapp deploy -a simple-app -c -f <(ytt -f config-step-2-template/ -f config-step-2b-multiple-data-values/)
Introduces kbld functionality for building images from source code. This step requires Minikube. If Minikube is not available, skip to the next step.
eval $(minikube docker-env)
kapp deploy -a simple-app -c -f <(ytt -f config-step-3-build-local/ | kbld -f-)
Note that rerunning above command again should be a noop, given that nothing has changed.
Uncomment fmt.Fprintf(w, "<p>local change</p>")
line in app.go
, and re-run above command:
kapp deploy -a simple-app -c -f <(ytt -f config-step-3-build-local/ | kbld -f-)
Observe that new container was built, and deployed. This change should be returned from the app in the browser.
Introduces kbld functionality to push to remote registries. This step can work with Minikube or any remote cluster.
docker login -u dkalinin -p ...
kapp deploy -a simple-app -c -f <(ytt -f config-step-4-build-and-push/ -v push_images_repo=gcr.io/projectX/k8s-simple-app | kbld -f-)
kapp delete -a simple-app
There is currently no functionality in kbld to remove pushed images from registry.
app.go
: simple Go HTTP serverDockerfile
: Dockerfile to build Go appconfig-step-1-minimal/
config.yml
: basic k8s Service and Deployment configuration for the app
config-step-2-template/
config.yml
: slightly modified configuration to useytt
features, such as data module and functionsvalues.yml
: defines extracted data values used inconfig.yml
config-step-2a-overlays/
custom-scale.yml
: ytt overlay to set number of deployment replicas to 3
config-step-3-build-local/
build.yml
: tellskbld
about how to build container image from source (app.go + Dockerfile)config.yml
: same as prev stepvalues.yml
: same as prev step
config-step-4-build-and-push/
build.yml
: same as prev steppush.yml
: tellskbld
about how to push container image to remote registryconfig.yml
: same as prev stepvalues.yml
: defines shared configuration, including configuration for pushing container images
Carvel is better because of our contributors and maintainers. It is because of you that we can bring great software to the community. Please join us during our online community meetings. Details can be found on our Carvel website.
You can chat with us on Kubernetes Slack in the #carvel channel and follow us on Twitter at @carvel_dev.
Check out which organizations are using and contributing to Carvel: Adopter's list