You can open this project using Visual Studio Code. Make sure you have VMware Tanzu Developer Tools for Visual Studio Code installed.
For best results use Tilt version v0.23.2 or later. You can install Tilt by following these instructions: https://docs.tilt.dev/install.html
Follow instructions in the documentation for deploying your app for live update and debugging.
These are the basic steps to use live update:
- In Visual Studio Code, navigate to
Preferences > Settings > Extensions > Tanzu
.- In the
Source Image
field, provide the destination image repository to publish an image containing your workload source code. This should match what is specified forSOURCE_IMAGE
default in the Tiltfile.
- In the
- From the Command Palette (⇧⌘P), type "Tanzu", and select
Tanzu: Live Update Start
. You can view output from Tanzu Application Platform and from Tilt indicating that the container is being built and deployed.- You see "Live Update starting..." in the status bar at the bottom right.
- Live update can take 1-3 minutes while the workload deploys and the Knative service becomes available.
Note: Depending on the type of cluster you use, you might see an error similar to the following:
Follow the instructions and add the line "allow_k8s_contexts('cluster-name')" to your Tiltfile.ERROR: Stop! cluster-name might be production. If you're sure you want to deploy there, add: allow_k8s_contexts('cluster-name') to your Tiltfile. Otherwise, switch k8s contexts and restart Tilt.
- When the Live Update status in the status bar is visible, resolve to "Live Update Started", navigate to http://localhost:8080 in your browser, and view your running application.
- Make changes to the source code. When the codes is saved the running application will get updated.
- Either continue making changes, or stop the live update when finished. Open the command palette (⇧⌘P), type "Tanzu", and select
Tanzu: Live Update Stop
.
If you make modifications to the source and push to your own Git repository, then you can update the spec.source.git
information in the config/workload.yaml
file.
When you are done developing your function app, you can simply deploy it using:
tanzu apps workload apply -f config/workload.yaml
If you would like deploy the code from your local working directory you can use the following command:
tanzu apps workload create tanzu-java-rest -f config/workload.yaml \
--local-path . \
--source-image kind-registry:5000/tanzu-demo/tanzu-java-rest-source \
--type web
Determine the URL to use for the accessing the app by running:
tanzu apps workload get tanzu-java-rest
To access the deployed app use the URL shown under "Workload Knative Services".
This depends on the TAP installation having DNS configured for the Knative ingress.