-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update bootstrap.sh; Removed .env; Fixed .tfvars (#3)
- Loading branch information
1 parent
bb9642c
commit 2f74e7e
Showing
3 changed files
with
3 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
source ./.env | ||
|
||
pushd terraform && terraform apply && popd | ||
|
||
bash ./bin/make_manifest_bosh-init.sh | ||
kite render-manifest --manifest=bosh | ||
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 | ||
kite render-manifest --manifest=concourse | ||
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 |
This file was deleted.
Oops, something went wrong.