vlast3k / ibm-ca-buildpack

Buildpack that adds IBM CA in Java keystore

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ibm-ca-buildpack

CF Buildpack that imports IBM CA in JAVA keystore, so your application does not have to worry about reading/using the CA.

It also allows your app to be independent from the IBM Cloud specific way to provide the CA.

Usage

Use multiple buildpacks when pushing:

cf push -b https://github.com/hsiliev/ibm-ca-buildpack -b https://github.com/cloudfoundry/java-buildpack.git#v4.19.1

or add in the manifest:

    buildpacks:
      - https://github.com/hsiliev/ibm-ca-buildpack
      - https://github.com/cloudfoundry/java-buildpack.git#v4.19.1

Details

This buildpack adds a .profile into your application. If you already have profile it will be overwritten.

The buildpack abuses one of the restrictions documented in How buildpacks work in CF, as it modifies the build directory!

About

Buildpack that adds IBM CA in Java keystore

License:Apache License 2.0


Languages

Language:Shell 77.6%Language:Ruby 22.4%