Sha256: 79e31794f598bb72c5f0403e4e69741f0a8ec02eff2f3a4bdd415f1971138716

Contents?: true

Size: 717 Bytes

Versions: 2

Compression:

Stored size: 717 Bytes

Contents

#!/usr/bin/env bash

source ./.env

pushd terraform && terraform apply && popd

bash ./bin/make_manifest_bosh-init.sh
bosh-init deploy bosh-director.yml

read -p "Enter bosh director ip: " bosh_director_ip
pushd terraform && BOSH_DIRECTOR_IP=$(terraform output eip) && popd
bosh target $BOSH_DIRECTOR_IP

bash ./bin/make_cloud_config.sh
bosh update cloud-config aws-cloud.yml

bosh upload stemcell https://bosh.io/d/stemcells/bosh-aws-xen-hvm-ubuntu-trusty-go_agent
bosh upload release https://bosh.io/d/github.com/concourse/concourse
bosh upload release https://bosh.io/d/github.com/cloudfoundry-incubator/garden-runc-release

bash ./bin/make_manifest_concourse-cluster.sh
bosh deployment concourse.yml

bosh deploy

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kite-0.0.4 tpl/aws/bootstrap.sh
kite-0.0.3 tpl/aws/bootstrap.sh