Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Adding the Sealights java agent into you Pivotal Cloud Foundry / VMWare Tanzu Application Services is done by using the standard java buildpack and configured in the following way:

Option A: In the manifest.yml of your app add the cloudfoundry java-buildpack

Code Block
---
applications:
-  name: yourApp
    buildpacks:
    - https://github.com/cloudfoundry/java-buildpack

Option B: Add the buildpack through the command line

Code Block
cf push -b https://github.com/cloudfoundry/java-buildpack

Once done, in order to add Sealights you need to do the following step:

1. Create a User-Provided Service and configure it with an agent token. This should be done once, before configuring the first application.

A different name for the user-provided service may be used, but it has to include the word "sealights" (lowercase) for the integration to work

...

The token may later be changed using:

cf update-user-provided-service sealights -p ....

2. Bind the User-Provided Service with your application

Code Block
cf bind-service [app name] sealights

3. If the build session id, lab id, proxy or other settings need to be configured, you may either:

  • hard-code them in manifest.yml:

    Code Block
    languageyaml
    env:
      JBP_CONFIG_SEALIGHTS_AGENT: '{build_session_id: c2e21d80-ad88-4ff9-9e81-57c781ac5fe6, lab_id: yourLabId, auto_upgrade: false, version: +}' 
  • pass them as environment variables for the application:

    Code Block
    cf set-env [my-application] JBP_CONFIG_SEALIGHTS_AGENT: '{build_session_id: 5d4...00b4, lab_id: myLabId}'

...

If you need to create an offline buildpack without network access you can do so following the instuctions instructions here: https://github.com/cloudfoundry/java-buildpack#offline-package