This topic tells you about the Application Accelerator IntelliJ plug-in. The plug-in is used to explore and generate projects from the defined accelerators in Tanzu Application Platform (commonly called TAP) using IntelliJ.
To use the IntelliJ plug-in to explore and generate projects, the plug-in must either:
Have access to the Tanzu Developer Portal URL. For information about how to retrieve the Tanzu Developer Portal URL, see Retrieving the URL for the Tanzu Developer Portal later in this topic.
Alternatively, you can use the local engine server to explore and generate projects locally without requiring access to Tanzu Developer Portal. For more information, see Use a local Application Accelerator engine server.
The VMware Tanzu Application Accelerator plug-in for IntelliJ is available from the JetBrains Marketplace.
To install the plug-in from the JetBrains Marketplace:
Plugins
, and click Plugins.Tanzu
.Before using the plug-in, you must configure it as follows:
Go to the IntelliJ menu, select IntelliJ IDEA > Preferences > Tools > Tanzu Application Accelerator.
Configure the plug-in to either use Tanzu Developer Portal or the local engine server:
For Tanzu Developer Portal:
In the Tanzu Developer Portal text box, add your Tanzu Developer Portal URL. For example, https://tap-gui.myclusterdomain.myorg.com
.
To get the fully-qualified domain name, if you have access to the Tanzu Application Platform cluster that is running Tanzu Developer Portal, run:
kubectl get httpproxy tap-gui -n tap-gui
For the local engine server:
To use the local engine server to explore and generate projects based on local files without requiring access to Tanzu Developer Portal, follow the instructions in Use a local Application Accelerator engine server.
Click Apply and OK.
You can use the IntelliJ extension to generate a project and to export your accelerator configuration.
To use the IntelliJ plug-in to generate a project:
To explore the defined accelerators, click New Project, then click Tanzu Application Accelerator.
Choose one of the defined accelerators and configure the options.
Click Next.
(Optional) Fill the text boxes required to create the Git repository. A personal access token from the Git provider is required. This is stored in a secured location for future use.
NoteYou can leave the values blank if you do not require a repository.
Click Next to go to the review step.
Click Next to download the project.
After the project has downloaded, the Create button is enabled. You can now create and open the project.
For faster iteration while writing accelerators, you can export the accelerator options in the Review and Generate Step to a JSON file. You can use this file to generate your project again from the CLI.
To export your options using the IntelliJ extension:
Select the accelerator that you want to use in the new project wizard described in Generate a project earlier, and configure the options.
In the Review and Generate Step, enter a filename into the Export Options text box.
Click Export, then select a location to save the file.
If you have access to the Tanzu Application Platform cluster that is running the Tanzu Application Platform GUI, run the following command to determine the fully-qualified domain name:
kubectl get httpproxy tap-gui -n tap-gui
The result is similar to:
NAME FQDN TLS SECRET STATUS STATUS DESCRIPTION
tap-gui tap-gui.tap.tapdemo.myorg.com tap-gui-cert valid Valid HTTPProxy
To enable communication between the Application Accelerator plug-in and a Tanzu Application Platform GUI instance that is secured using TLS, you must download and install the certificates locally.
yq is required to process the YAML output.
Find the name of the Tanzu Developer Portal certificate. The name of the certificate might look different to the following example.
kubectl get secret -n cert-manager
For example:
NAME TYPE DATA AGE
canonical-registry-secret kubernetes.io/dockerconfigjson 1 18d
cert-manager-webhook-ca Opaque 3 18d
postgres-operator-ca-certificate kubernetes.io/tls 3 18d
tanzu-sql-with-mysql-operator-ca-certificate kubernetes.io/tls 3 18d
tap-ingress-selfsigned-root-ca kubernetes.io/tls 3 18d <------- This is the certificate that is needed
Download the certificate:
kubectl get secret -n cert-manager tap-ingress-selfsigned-root-ca -o yaml | yq '.data."ca.crt"' | base64 -d > ca.crt
Install the certificate on your local system and restart any applications that use the certificate. After restarting, the application uses the certificate to communicate with the endpoints using TLS.
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ca.crt
For more information, see Installing a root CA certificate in the trust store in the Ubuntu documentation.
To update to a later version, repeat the steps in Install the plug-in. You do not need to uninstall your current version.
To uninstall the VMware Tanzu Application Accelerator plug-in for IntelliJ: