This is a Kosko project bootstrapped with create-kosko
command.
Getting Started
Generate Kubernetes manifests with the following command.
npm run generate
The result will be printed in the console. You can pipe the output to kubectl
to apply generated manifests on Kubernetes.
npm run --silent generate | kubectl apply -f -
When --env
option is set, Kosko will read variables from environment files. Then you can fetch variables with @kosko/env
package.
npm run generate -- --env dev
You can try editing files in components
and environments
folder and re-run npm run generate
to see changes.
Learn More
Check Kosko docs for more information about Kosko.