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
| # virtualbox cpi bosh director | |
| Host 192.168.50.6 | |
| StrictHostKeyChecking no | |
| UserKnownHostsFile /dev/null | |
| IdentitiesOnly=yes | |
| User jumpbox | |
| LogLevel QUIET |
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
| help-history() { | |
| echo -e " | |
| List of Event Designators (zshexpn) | |
| =================================== | |
| !$ last word | |
| !! last line | |
| !:0 first word from previous command | |
| !:0-2 first three words | |
| !!:s^foo^bar^ | |
| ^foo^bar replace on previous command |
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
| Host alias | |
| HostName 10.23.42.1 | |
| User root | |
| ProxyCommand ssh jumpbox -W %h:%p |
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
| address=/.cf.duckdns.org/10.0.10.106 | |
| server=10.0.0.2 | |
| no-dhcp-interface= | |
| no-resolv |
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 | |
| # https://github.com/cloudfoundry/bosh-deployment/blob/master/docs/bosh-lite-on-vbox.md | |
| set -e | |
| # cd ~/co && git clone https://github.com/cloudfoundry/bosh-deployment/ | |
| BOSH_DIR=~/co/bosh-deployment | |
| # locally built cli? | |
| #alias bosh-cli=~/go/src/github.com/cloudfoundry/bosh-cli/out/bosh |
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
| version: '3' | |
| services: | |
| postgres: | |
| image: postgres:9.5 | |
| container_name: db_postgres | |
| restart: always | |
| ports: | |
| - 5432:5432 | |
| environment: |
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
| rvm all do gem uninstall bosh_cli |
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/sh | |
| set -ev | |
| STEMCELL=$HOME/workspace/bosh-linux-stemcell-builder/tmp/bosh-stemcell-0000-warden-boshlite-opensuse-leap-go_agent.tgz | |
| AGENT=$HOME/go/src/github.com/cloudfoundry/bosh-agent/out/bosh-agent | |
| OUT=$( basename "$STEMCELL" ) | |
| mkdir -p stemcell | |
| tar xfpz "$STEMCELL" -C stemcell | |
| pushd stemcell |
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 | |
| export BOSH_MICRO_ENABLED=no | |
| # don't forget to enable proxy access in firewall | |
| #sudo iptables -I INPUT 1 -s 172.17.0.0/16 -p tcp --dport 8123 -j ACCEPT | |
| usage() { | |
| echo " | |
| OpenSUSE - stemcells |
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 | |
| export BOSH_MICRO_ENABLED=no | |
| usage() { | |
| echo " | |
| OpenSUSE - stemcells | |
| $0 [-v VERSION|--version VERSION] [-p|--proxy] --aws|--openstack|--vsphere|--warden | |
| " | |
| } |