Skip to content

Concourse Pipeline to automatically install PCF on AWS including foundation paving

License

Notifications You must be signed in to change notification settings

voor/pcf-automation-aws-paving

 
 

Repository files navigation

Platform Automation with Infrastructure Paving

This repo contains a concourse pipeline and tasks to automatically deploy Pivotal Container Service (PKS) on AWS, including optional paving the environment using Terraform. This utilizes either Control Plane Components or Kubernetes Concourse with Kubernetes backed secrets, which has also been paved by Terraform (see here if you want to set that up), which securely links credentials stored in credhub. It is using terraforming-aws and Platform Automation to do so.

Reqirements

  • AWS account
  • Pivotal Network account (specifically: pivnet-api-token)
  • Private Git Repository for Platform Configuration (it could be public, but you save a state file that contains your instance ID)
  • three private S3 Buckets (or Minio)
  • Concourse
  • a Route53 hosted zone on AWS (optional)

Getting Started

Fork This Repository

This is not a production ready repository, and you should not reference it directly in your pipelines. There will be variables you can explicitly reference to the repositories, change those to reflect where you forked this and terraforming-aws over to.

  • This repository -> github.repos.pcf-automation-source
  • Terraforming repository -> github.repos.terraforming-aws

Create an AWS Account

Either create a new AWS account, or use an existing one. You will need a "super user" that creates the necessary Control Plane, and then has sufficient permissions to run the paving for your foundation's terraforming. You'll populate that account into the secrets file for Concourse (see below).

Pave Concourse

Option 1

You will need to head over to terraforming control plane and start there. This will get you your running Concourse, Credhub, UAA, and database all ready to go.

Option 2

Install Concourse on Kubernetes Hush House reference or Helm Concourse

Option 3

If you don't want to install Concourse at all and you're a Pivotal employee, you can use Wings or Hush House. If you're on my team you already have an account!

Create Two S3/Minio Buckets

You will need two buckets:

  • For the installation, credentials, and terraform state. This bucket should have public access blocked and encryption enabled, since it will be storing very sensitive information. buckets.installation in the variables.example.yml file.
  • For products and tasks downloaded from pivnet. buckets.pivnet_products in the variables.example.yml file.

Credentials

To keep it secure and easily deployable on Control Plane Concourse installation, the pipeline currently gets most of its credentials from a credhub-secrets.yml file and customization from a variables.yml file. Copy the credhub-secrets-template.yml and variables-template.yml file to credhub-secrets.yml and variables.yml, then modify the appropriate items.

For more information on getting a running installation of Concourse properly configured with CredHub, see Control Plane

Adding Credentials to CredHub

Login to the credhub cli using the client credentials from Control Plane, then proceed to import the file:

credhub login -s ${CREDHUB_URL} --client-name=credhub_admin_client --client-secret=${CREDHUB_SECRET}
credhub import -f credhub-secrets.yml

Added Credentials to Kubernetes

If you are using Concourse on Kubernetes, then you can store the initial credentials in Kubernetes secrets; due to the interpolate step being credhub specific you'll have split credentials that live in both locations. See the kustomization.example.yml for how to generate a secrets file for those.

Deploy Pipeline

# Login from web UI, this usually works a lot easier and is more secure anyway.
fly --target control-plane login --concourse-url ${control_plane_domain}
fly --target control-plane set-pipeline -p aws-platform-automation -c pipeline.yml -l variables.yml --verbose
fly --target control-plane unpause-pipeline -p aws-platform-automation

About

Concourse Pipeline to automatically install PCF on AWS including foundation paving

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 56.9%
  • Shell 43.1%