A Helm chart definition to deploy the sample java extension.
Parameter | Description | Default Value |
---|---|---|
image.repository | The docker image | gabbi/sample-extension-java:0.0.7 |
image.pullPolicy | The image pull policy | Always |
jdbc.url | URL of Database to connect | jdbc:h2:mem:testdb |
jdbc.user | Database username | sa |
jdbc.password | Database password | kyma4ever |
jdbc.driver | JDBC Driver | org.h2.Driver |
To install the helm chart in dev
namespace, run the following command.
You can provide the various parameters in the install command as shown below. Change to use your image. You can also override other parameters defined in values.yaml
helm -n dev install kymaapp . --set image.repository=gabbi/sample-extension-java:0.0.7 --set jdbc.user={db user} --set jdbc.password={db password}
or,
provide a customized values.yaml with parameters configured and run the command
helm install kymaapp . -f values.yaml -n dev
helm del kymaapp -n dev