Overview

February 24, 2022 ยท View on GitHub

A Helm chart definition to deploy the sample event tigger.

Parameters

ParameterDescriptionDefault Value
image.repositoryThe docker imagegabbi/sample-event-trigger-java:0.0.2
image.pullPolicyThe image pull policyAlways
subscription.applicationThe connected system which will send eventTBA
subscription.eventTypeThe event type which will trigger the appTBA

To Deploy

Must Haves

  • kubectl
  • Helm3
  • kubectl is configured to KUBECONFIG downloaded from Kyma Runtime.

Helm install

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.

helm install kymaapp . --set image.repository=gabbi/sample-event-trigger-java:0.0.2 --set subscription.application=mp-mock-commerce-2 --set subscription.eventType=order.created -n dev

or,

provide a values.yaml with parameters configured and run the command

helm install kymaapp . -f values.yaml -n dev

Cleanup

helm del kymaapp -n dev