Products | Versions |
---|---|
TIBCO Live Datamart | 10.6 and later |
This article provides the steps needed to get a LiveView application Docker image deployed into a Kubernetes cluster using Helm charts.
In addition to the guidance provided in this article, you may also refer to the tibco-streaming-samples provided on github:
https://github.com/TIBCOSoftware/tibco-streaming-samples
<dependencies> <dependency> <groupId>com.tibco.ldm.sample</groupId> <artifactId>lv_sample_helloliveview</artifactId> <version>11.0.0</version> <type>ep-liveview-fragment</type> </dependency> </dependencies>
$ cd /path/to/fragment/project/ $ mvn clean install -DskipTests $ cd /path/to/application/project/ $ mvn clean package -DskipTests
{{- if .Values.dockerRegistry }} image: {{ .Values.dockerRegistry }}/hellolv_app:0.0.1-SNAPSHOT {{- else}} image: hellolv_app:0.0.1-SNAPSHOT {{- end }}
image: hellolv_app:0.0.1-SNAPSHOT imagePullPolicy: Never
cd /path/to/application/project/src/main/helm/<application_project_name>/ helm install hellolv .
$ kubectl get pod NAME READY STATUS RESTARTS AGE hellolvapp-0 1/1 Running 0 3m58s