cloudfoundry/uaa-release

Name: uaa-release

Owner: Cloud Foundry

Description: null

Created: 2015-08-20 23:32:50.0

Updated: 2018-05-23 17:49:27.0

Pushed: 2018-05-23 17:49:24.0

Homepage: null

Size: 3842

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

UAA release

See docs taken from bosh-micro-cli circa mid-2015.

Configuring required properties for UAA start-up

The properties below need to be generated explicitly per deployment of UAA release and are required for proper start-up and functioning of UAA. These are standard artifacts which can be generated using openssl. Please refer the topic below on how to generate a self signed cert.

SAML Service Provider Configuration
n.saml.serviceProviderCertificate:
ription: "UAA SAML Service provider certificate. This is used for signing outgoing SAML Authentication Requests"

n.saml.serviceProviderKey:
ription: "Private key for the service provider certificate."
JWT Signing Keys(verification key needn't be set as we derive it from the private key)
jwt.policy.keys:
cription: "Map of key IDs and signing keys, each defined with a property `signingKey`"
example:
  key-1:
    signingKey

.jwt.policy.active_key_id:
cription: "The ID of the JWT signing key to be used when signing tokens."
mple: "key-1" 
Configuring UAA to run on https with SSL

By default UAA is configured to use SSL with a self-signed certificate and will be started on port 8443.

Using your own certificate

Add the following properties to your manifest:

Generating a self-signed certificate
  1. Generate your private key with any passphrase

openssl genrsa -aes256 -out server.key 1024

  1. Remove passphrase from key

openssl rsa -in server.key -out server.key

  1. Generate certificate signing request for CA

openssl req -x509 -sha256 -new -key server.key -out server.csr

  1. Generate self-signed certificate with 365 days expiry-time

openssl x509 -sha256 -days 365 -in server.csr -signkey server.key -out selfsigned.crt

Contributing to uaa-release
General workflow
  1. Fork the repository and make a local clone

  2. Create a feature branch from the development branch

    aa-release
    checkout develop
    submodule update
    checkout -b my_branch
    
  3. Make changes on your branch

  4. Deploy your version of uaa-release to test the changes

  5. Push to your fork (git push origin my_branch) and submit a pull request selecting develop as the target branch

Deploying to a bosh-lite environment

We have provided a sample manifest for a bosh-lite uaa-release deployment. Make sure you modify the director uuid in the manifest to match yours

   bosh upload-stemcell https://bosh.io/d/stemcells/bosh-warden-boshlite-ubuntu-trusty-go_agent --skip-if-exists
   bosh create-release
   bosh upload-release
   bosh -n -e vbox -d uaa  deploy \
     templates/uaa-deployment.yml \
     --vars-store creds.yml \
     -v system_domain=uaa-standalone.com

After that you can get the IP address and add the hostname to your /etc/hosts file

You may want to setup an entry in your /etc/hosts

   10.244.0.118    uaa.uaa-standalone.com

And you access it using

   https://uaa.uaa-standalone.com:8443/
Java Runtime Environments

Java Runtime Environments are gracefully supplied by the Cloud Foundry Java Buildpack Team

JDK - https://java-buildpack.cloudfoundry.org/openjdk-jdk/trusty/x86_64/index.yml

JRE - https://java-buildpack.cloudfoundry.org/openjdk/trusty/x86_64/index.yml

Mac JDK - https://java-buildpack.cloudfoundry.org/openjdk-jdk/mountainlion/x86_64/index.yml

Mac JRE - https://java-buildpack.cloudfoundry.org/openjdk/mountainlion/x86_64/index.yml

Acknowledgements

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.