This file contains hidden or 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
| #!/bin/bash | |
| # @name install-concourse-with-credhub-on-aws.sh | |
| # @description This script provisions a Jumpbox, BOSH director, Credhub, and Concourse on AWS. | |
| # @assumptions You have installed bbl-cli, terraform, bosh-cli, credhub-cli, git, and openssl on a Mac. | |
| # and that a Service Account has been created in advance, | |
| # @see https://github.com/cloudfoundry/bosh-bootloader/blob/master/docs/getting-started-gcp.md#create-a-service-account. | |
| # @basedUpon https://github.com/pivotalservices/concourse-credhub | |
| # @author Chris Phillipson | |
| # @version 1.0.0 |
This file contains hidden or 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
| #!/bin/bash | |
| # Connect to your Concourse Credhub instance | |
| # Fire up Terminal (or iTerm) | |
| # Execute this sequence of commands to connect and authenticate to Concourse Credhub instance | |
| # via the Jumpbox and Bosh Director's Credhub instance. | |
| if [ $# -eq 0 ] | |
| then |
This file contains hidden or 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
| #!/bin/bash | |
| # @name install-concourse-with-credhub-on-azure.sh | |
| # @description This script provisions a Jumpbox, BOSH director, Credhub, and Concourse on Azure. | |
| # @assumptions You have installed bbl-cli, terraform, bosh-cli, credhub-cli, git, and openssl on a Mac. | |
| # and that a Service Account has been created in advance, | |
| # @see https://github.com/cloudfoundry/bosh-bootloader/blob/master/docs/getting-started-gcp.md#create-a-service-account. | |
| # @basedUpon https://github.com/pivotalservices/concourse-credhub | |
| # @author Chris Phillipson | |
| # @version 1.0.3 |
This file contains hidden or 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
| #!/bin/bash | |
| # @name install-concourse-with-credhub-on-gcp.sh | |
| # @description This script provisions a Jumpbox, BOSH director, Credhub, and Concourse on Google Gloud Platform. | |
| # @assumptions You have installed bbl-cli, terraform, bosh-cli, credhub-cli, git, and openssl on a Mac. | |
| # and that a Service Account has been created in advance, | |
| # @see https://github.com/cloudfoundry/bosh-bootloader/blob/master/docs/getting-started-gcp.md#create-a-service-account. | |
| # @basedUpon https://github.com/pivotalservices/concourse-credhub | |
| # @author Chris Phillipson | |
| # @version 1.0.2 |
This file contains hidden or 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
| -startup | |
| ../Eclipse/plugins/org.eclipse.equinox.launcher_1.5.0.v20180119-0753.jar | |
| --launcher.library | |
| ../Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.700.v20180124-1426 | |
| -product | |
| org.springframework.boot.ide.branding.sts4 | |
| --launcher.defaultAction | |
| openFile | |
| -vmargs | |
| -Dosgi.requiredJavaVersion=1.8 |
This file contains hidden or 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
| #!/bin/bash | |
| # Concourse install script for ubuntu 16.04 | |
| # - Installs Postgres | |
| # - Runs concourse internally on 8080 | |
| # - Creates a *valid* 90 day SSL cert via Letsencrypt certbot | |
| # - Includes cron.d job for auto SSL renewal!! | |
| # - Runs HTTPD as a reverse proxy: 80->8080, 443->8080 | |
| # - Handles websocket for fly hijack | |
| set -e -u |
This file contains hidden or 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
| # Azure Subscription Id (existing) | |
| export SUBSCRIPTION_ID= | |
| # Azure Service Principal Password (existing) | |
| # If Pivotal employee; this is your Okta password for pivotal.okta.com | |
| export SERVICE_PRINCIPAL_PASSWORD= | |
| # Sets a new Azure Resource Group | |
| export RESOURCE_GROUP= | |
| # Sets a new Azure Storage Account | |
| export STORAGE_ACCOUNT= |
This file contains hidden or 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
| #!/bin/bash | |
| # run this command to flush dns cache: | |
| sudo /etc/init.d/dns-clean restart | |
| # or use: | |
| sudo /etc/init.d/networking force-reload | |
| # Flush nscd dns cache: | |
| sudo /etc/init.d/nscd restart | |
| # If you wanted to refresh your settings you could disable and then run | |
| sudo service network-manager restart |
This file contains hidden or 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
| #!/bin/bash | |
| # A curated collection of software to be installed via Homebrew | |
| # to get up and running with CF CLI and minimal tooling for .Net development | |
| # @author Chris Phillipson | |
| # @lastUpdated 2017-06-19 | |
| # @version 1.0 | |
| # @see http://brew.sh/, https://caskroom.github.io/, and https://github.com/cloudfoundry/homebrew-tap | |
| set -e |
This file contains hidden or 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
| #!/bin/bash | |
| # A curated collection of software to be installed via Homebrew | |
| # to get up and running with CF CLI and associated tooling and SDKs | |
| # @author Chris Phillipson | |
| # @lastUpdated 2017-06-19 | |
| # @version 1.0 | |
| # @see http://brew.sh/, https://caskroom.github.io/, and https://github.com/cloudfoundry/homebrew-tap | |
| set -e |