* Upgrading spring-boot to 3.1.x * Making main release 3.1.x * Adding PR pipeline * Adding integration-tests to the build step * Update credhub-server/README.adoc Co-authored-by: Gareth Clay <spikymonkey@users.noreply.github.com> * Updating set-pipelines and channel name * Removing unnecessary clean * Adding docker mirror config and privileged tasks --------- Co-authored-by: Gareth Clay <spikymonkey@users.noreply.github.com>
22 lines
724 B
Plaintext
22 lines
724 B
Plaintext
= CredHub server
|
|
|
|
This directory contains artifacts that can be used to start UAA and CredHub servers that can be used to run tests against.
|
|
It is derived https://github.com/orange-cloudfoundry/credhub-docker and https://github.com/ampersand8/credhub-docker.
|
|
|
|
From the root of this directory, start the servers using Docker Compose:
|
|
|
|
[source,bash]
|
|
----
|
|
$ docker-compose up
|
|
----
|
|
|
|
After both servers have started successfully, UAA will be available at `http://localhost:8080/uaa` and CredHub will be available at `https://localhost:9000`.
|
|
|
|
|
|
To generate the test jwt signing keys, ensure the `openssl` and https://carvel.dev/ytt/[`ytt`] tools are installed, then run the setup script:
|
|
|
|
[source,bash]
|
|
----
|
|
$ ./setup-uaa.sh
|
|
----
|