Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 2.22 KB

File metadata and controls

59 lines (38 loc) · 2.22 KB

Overview

A Helm chart definition to deploy the sample java extension.

Parameters

Parameter Description Default Value
image.repository The docker image gabbi/sample-cloudsdk-java:0.0.1
image.pullPolicy The image pull policy IfNotPresent
application.tenantName The tenant name used in destinations list TBA
application.servicePath The Service path for the OData APIs TBA

To Deploy

Must Haves

  • kubectl

  • Helm3

  • kubectl is configured to KUBECONFIG downloaded from Kyma Runtime.

  • Refer to this blog post to learn how to set up API access for an S/4 System from Kyma runtime.

    config

    Setting up API access allows you to build a microservice that will call the S/4 System using SAP Cloud SDK for Java.

    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-cloudsdk-java: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

Bind the deployment with Service Instance

Bind the Deployment with the ServiceInstance. You can either reuse the existing credentials or create new ones. bind

Cleanup

  • Unbind the service instance from deployment

  • Delete the helm chart

    helm del kymaapp -n dev