Skip to content

Instantly share code, notes, and snippets.

View thansmann's full-sized avatar

Tony Hansmann thansmann

View GitHub Profile

Keybase proof

I hereby claim:

  • I am thansmann on github.
  • I am precept (https://keybase.io/precept) on keybase.
  • I have a public key whose fingerprint is 161F F8B2 DBA6 F618 E67E 0A45 C7DB AC69 FD9D 85EF

To claim this, I am signing this object:

@thansmann
thansmann / 2000-bosh-vms-deployed
Created September 17, 2015 17:43
2000 VM test on AWS
± kx+kx gd |master U:2 ✗| → bosh vms
Deployment `dummy'
Director task 74
Task 74 done
+---------------+---------+---------------+------------+
| Job/index | State | Resource Pool | IPs |
+---------------+---------+---------------+------------+
@thansmann
thansmann / YAML quote block
Created July 28, 2014 19:24
YAML quote block
director:
enable_snapshots: true
ssl:
key: |
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEA4EVUew26awMlyPwzWCR6DAnlS/2ZNVJZYA+ZJQtMcvVv2TbO
2dRH/dNF9TL3sqNIUJCYMHt4K488pUyYM/HMI0XQGXmH6tEvb36bwVqNCHuiHQli
CwnR6hz2U3VSMjEtmhejPFgu6INYuzVkZvUTcsWe8eStM7pdT79VgxfZUD8skX5Q
visVO4G5e8uwbEdxtbEvgJf7mgSFHznsj7J7IEKlgDKO5sqFfAYBdMb3yWCkFTxB
LHWSMQkO2ue5EnOxJzBRR4D4bBg1UFIba1yB1Mui7eVyYhr0LZrHbcfTFwrfnz4b
@thansmann
thansmann / Talk notes
Last active August 29, 2015 14:04
Bay LISA talk 2014/07/17
Slides for the talk: https://docs.google.com/presentation/d/1Q6QzRhXet8ABU7haaOMSfaoV5wRGXDCC7-WKnZjSlcE/edit?usp=sharing
# Discussion of BOSH CPI methods
http://www.mattstine.com/2013/08/02/bosh-and-cloud-api-compatibility
-------------------
Way to try CF easily if you've got an AWS account
We are proud to announce the availability of Try Cloud Foundry [0], a site that will setup your own instance of Cloud Foundry on Amazon Web Services. Our aim is to help Cloud Foundry newcomers get started easily and get excited about the world of PaaS. Simply provide your AWS credentials and we'll send you an email when it's completed [1]. You'll receive a link that provides "hello world"-style example programs in Java, Ruby, and Node.js so you can see Cloud Foundry running in minutes.
@thansmann
thansmann / gist:8756475
Last active August 29, 2015 13:55
Cleaned up CF release filesystem tree
├── config
│   ├── blobs.yml
│   └── final.yml
├── jobs
│   ├── cloud_controller_ng
│   ├── collector
│   ├── dea_logging_agent
│   ├── dea_next
│   ├── debian_nfs_server
│   ├── etcd
@thansmann
thansmann / BOSH_Prep_URLs
Last active August 29, 2015 13:55
Preparing For BOSH URL
Slide deck: https://docs.google.com/presentation/d/12a48nOaJe4WkmYgQJOJCO8LanIEES3ZC6QstAxpKHlU/edit?usp=sharing
Bosh-Lite: https://github.com/cloudfoundry/bosh-lite
DrNic's Fast setup of BOSH Redis release with bosh-gen using bosh-lite: http://starkandwayne.com/articles/2013/12/02/rapid-dev-with-bosh-lite/
DrNic on Jobs and Packages: https://github.com/cloudfoundry-community/bosh-gen/blob/master/README.md
BOSH Dummy Release: https://github.com/abic/dummy-boshrelease
Slightly dated, but still a good intro: http://www.think-foundry.com/
BOSH info page: http://bosh.cfapps.io/
BOSH repo: https://github.com/cloudfoundry/bosh
Cloud Foundry repo: https://github.com/cloudfoundry/cf-release
@thansmann
thansmann / bosh_ssh
Created September 3, 2013 21:01
Bosh ssh bash helper: 'bosh_ssh'
function bosh_ssh () {
# confirm vcap@director ssh-key is in ssh-agent or are the default ~/id_[rd]sa
DIRECTOR_ADDRESS=`director_address`;
echo "bosh ssh $* --gateway_host $DIRECTOR_ADDRESS --gateway_user vcap"
bosh ssh $* --gateway_host $DIRECTOR_ADDRESS --gateway_user vcap
}
function director_address () {
bosh -n target | ruby -ne 'a = $_.split("//").last.split(":").first; puts a';
}