Skip to content

Latest commit

 

History

History
243 lines (174 loc) · 10.9 KB

README.md

File metadata and controls

243 lines (174 loc) · 10.9 KB

Deployment

Contents

Prerequisites

  1. Download and extract the latest package from the releases page
  2. Choose a name for your app, we'll refer to this as app-name from now on

Tanzu Application Service

Initial deployment

  1. Set yourself up with an organization and space in your TAS account to deploy Postfacto to.

  2. Add a database (Postgres or Mysql) and a Redis service instance to your space from the Marketplace. Name these services postfacto-db and postfacto-redis.

  3. Run the TAS deployment script from the tas directory:

    ./deploy.sh <app-name>

    Take note of the URL that has shown up in the routes: section of the script output, going forward referred to as <app-url>.

  4. Log in to the Postfacto admin dashboard (email: email@example.com and password: password) to check everything has worked at <app-url>/admin

  5. Create a retro for yourself by clicking on 'Retros' and the 'New Retro'

  6. Log in to your retro at <app-url>/retros/your-retro-slug

  7. Share the URL and password with your team and then run a retro!

Upgrading a deployment

  1. Presuming the steps in the Initial deployment section have been completed, run the upgrade script from the tas directory:
    ./upgrade.sh <app-name>

Tanzu Kubernetes Grid (vSphere)

Prerequisites

  1. A vSphere instance version 6.7u3 or higher, with Tanzu Kubernetes Grid (TKG) provisioned

  2. A network load balancer installed and configured on your TKG cluster (e.g. MetalLB)

  3. A default storage class available in your TKG cluster (e.g. vSphereStorageClass)

Initial deployment

  1. Install kubectl to your local machine

  2. Install helm to your local machine

  3. Make sure kubectl is configured to connect to the TKG cluster (ask your administrator for the configuration)

  4. Run the deployment script from the tkg directory:

    ./deploy.sh <app-name>
  5. Keep note of the application url output by the deployment script, going forward referred to as tkg-url

  6. Log in to the admin dashboard at <tkg-url>/admin (email: email@example.com and password: password)

  7. Create a retro for yourself by clicking on 'Retros' and then 'New Retro'

  8. Log in to your retro at <tkg-url>/retros/your-retro-slug

  9. Share the URL and password with your team and then run a retro!

Upgrading a deployment

  1. Presuming the steps in the Initial deployment section have been completed, run the upgrade script from the tkg directory:
    ./upgrade.sh <app-name>

Pivotal Web Services

Initial deployment

Pivotal Web Services provides a hosted version of VMware's Tanzu Application Service platform and is probably the easiest place to get Postfacto up and running.

  1. Sign up for a PWS account, install the CF CLI and set yourself up with an organization and space by following the instructions here

  2. Once logged in to PWS, add a database and a Redis service instance to your space from the Marketplace. We recommend the free plans of ElephantSQL and Redis Cloud respectively for this. Name these services postfacto-db and postfacto-redis

  3. Run the PWS deployment script from the pws directory:

    ./deploy.sh <app-name>
  4. Log in to the Postfacto admin dashboard (email: email@example.com and password: password) to check everything has worked at <app-name>.cfapps.io/admin

  5. Create a retro for yourself by clicking on 'Retros' and then 'New Retro'

  6. Log in to your retro at <app-name>.cfapps.io/retros/your-retro-slug

  7. Share the URL and password with your team and then run a retro!

Upgrading a deployment

  1. Presuming the steps in the Initial deployment section have been completed, run the upgrade script from the pws directory:
    ./upgrade.sh <app-name>

Migrating a deployment

  1. If you'd previously deployed a version of Postfacto prior to 4.0, run the migration script from the pws directory:
    ./migrate.sh <web-app-name> <api-app-name>
    Note that the admin panel will move from <api-app-name>.cfapps.io/admin to <web-app-name>.cfapps.io/admin and the API app will be deleted

Cloud Foundry

Initial deployment

  1. Set yourself up with an organization and space in your CF to deploy your Postfacto to.

  2. Take note of your CF url, going forward referred to as cf-url

  3. Add a database (Postgres or Mysql) and a Redis service instance to your space from the Marketplace. Name these services postfacto-db and postfacto-redis.

  4. Run the CF deployment script from the cf directory:

    ./deploy.sh <app-name>
  5. Log in to the Postfacto admin dashboard (email: email@example.com and password: password) to check everything has worked at <app-name>.<cf-url>/admin

  6. Create a retro for yourself by clicking on 'Retros' and then 'New Retro'

  7. Log in to your retro at <app-name>.<cf-url>/retros/your-retro-slug

  8. Share the URL and password with your team and then run a retro!

Upgrading a deployment

  1. Presuming the steps in the Initial deployment section have been completed, run the upgrade script from the cf directory:
    ./upgrade.sh <app-name>

Migrating a deployment

  1. If you'd previously deployed a version of Postfacto prior to 4.0, run the migration script from the cf directory:
    ./migrate.sh <web-app-name> <api-app-name>
    Note that the admin panel will move from <api-app-name>.<cf-url>/admin to <web-app-name>.<cf-url>/admin and the API app will be deleted

Heroku

Initial deployment

  1. Install the Heroku CLI

  2. Run the Heroku deployment script from the heroku directory:

    ./deploy.sh <app-name>
  3. Log in to the Postfacto admin dashboard (email: email@example.com and password: password) to check everything has worked at <app-name>.herokuapp.com/admin

  4. Create a retro for yourself by clicking on 'Retros' and then 'New Retro'

  5. Log in to your retro at <app-name>.herokuapp.com/retros/your-retro-slug

  6. Share the URL and password with your team and then run a retro!

Upgrading a deployment

  1. Presuming the steps in the Initial deployment section have been completed, run the upgrade script from the heroku directory:
    ./upgrade.sh <app-name>

Migrating a deployment

⚠️ Warning: the Heroku migration will attempt to migrate your data to a new database instance and delete the old one. Take a look at what the script is doing and make sure you understand the implications before running it.

  1. If you'd previously deployed a version of Postfacto prior to 4.0, run the migration script from the heroku directory:
    ./migrate.sh <web-app-name> <api-app-name>
    Note that the admin panel will move from <api-app-name>.herokuapp.com/admin to <web-app-name>.herokuapp.com/admin and the API app will be deleted

Configuration

Allowing users to create retros

In order for users to sign-up and create their own retros using the web UI, Postfacto needs Google OAuth setup. For deployments that do not want to setup Google OAuth, you will need to create your retros through the admin console of your server via <app-name>.cfapps.io/admin or <app-name>.<cf-url>/admin.

  1. Go to Google Cloud Console and create a new project
  2. Go to APIs & Services > Credentials > Create Credentials > OAuth client ID > Web application
  3. Choose a name for your app
  4. In Authorized JavaScript Origins, set it to the public URL of your app-name. For example: if deploying to PWS, your public URL will be https://<app-name>.cfapps.io
  5. You can leave redirect blank
  6. Take note of your client-id that is generated
  7. Add "google_oauth_client_id": {{client-id}} to the config.js for your installation.

Enabling analytics

If you'd like to have your instance send analytics data to the Postfacto team so they can learn about how you're using it and continue to improve it you can! To switch this on add "enable_analytics": true to the config.js object for your installation. Please note that we do not record any personal data (such as emails or retro data). As we are recording events from you we will however see the URL of the web client for your instance. If you're not comfortable with this don't worry, this feature is disabled by default.

Changing session timeout

You can customise this window with the SESSION_TIME env variable to the env on deploy. To set a session time of 1 hour for example:

SESSION_TIME=60 ./deploy <app-name>

[From 4.3.0] Removing Redis dependency

If you are on a later version than 4.3.0 and using Postgres, Redis is no longer required. Instead set the environment variable USE_POSTGRES_FOR_ACTION_CABLE=true on deploy.

Testing your deployment

  1. Log in to the Postfacto admin dashboard
  2. Create a new admin user for the test to use by clicking on 'Admin Users' and then 'New Admin User'. Take note of the email and password you use, as these will be used in the next step
  3. Run the smoke test script from the root of the package directory:
    ./smoke-test.sh <app-url> <app-admin-url> <test-admin-email> <test-admin-password>

Using TLS for database connections

If your database only accepts incoming TLS encrypted connections, you will need to modify the application settings to include the appropriate SSL parameters. Please add the below configuration snippet to package/assets/config/database.yml prior to executing deploy.sh.

For MySQL

production:
  sslmode: preferred # or verify_identiy, verify_ca
  sslca: /etc/ssl/certs/ca-certificates.crt # or alternate location where your ca file is located

When this is not set, you will receive this error:

Connections using insecure transport are prohibited while --require_secure_transport=ON.

More information about MySQL SSL modes can be found here.

For PostgreSQL

production:
  sslmode: prefer # or verify-full, verify-ca, require
  sslca: /etc/ssl/certs/ca-certificates.crt # or alternate location where your ca file is located

More information about SSL modes can be found here.