generator-kyma
v0.0.1-alpha-2
Published
Allows you to create, debug, and deploy microservices to Kyma
Downloads
225
Maintainers
Readme
Generator-kyma
Kyma application template (experimental)
Installation
First, install Yeoman and generator-kyma using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-kyma
Then generate your new project:
yo kyma
The generated project contain the following files:
k8s
folder - k8s resourcesapp
folder - Application codeapi.yaml
- API Exposureservicebindings.yaml
- Service binding and usage crddeployment.yaml
- Main deploymentDockerfile
- Application docker image
Makefile
- Contain the following targets:build
- Build docker imagepush
- Push Docker imageupdate-deployment
- After the docker image has pushed to the registry use this target to update the deployment imagedeploy
- Run build, push and update-deployment targets
Dockerfile
- Suitable docker file according to the project generation technologies (node/golang/python)