Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.22 KB

File metadata and controls

42 lines (27 loc) · 1.22 KB

Overview

A Helm chart definition to deploy the sample .Net extension.

Parameters

Parameter Description Default Value
image.repository The docker image gabbi/sample-extension-dotnet:0.0.1
image.pullPolicy The image pull policy Always

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. Change to use your image.

helm install kymaapp . --set image.repository=gabbi/sample-extension-dotnet:0.0.1 -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