- Install vagrant Vagrant
- Install vagrant plugins:
vagrant plugin install vagrant-omnibus vagrant-bosh
vagrant plugin install vagrant-omnibus vagrant-bosh
| # Make ruby 2.0 available | |
| source ~/.bash_profile | |
| # Install gems from Gemfile into vendor/bundle | |
| bundle install --path vendor/bundle | |
| # Install spiff | |
| wget -c https://github.com/cloudfoundry-incubator/spiff/releases/download/v1.0/spiff_linux_amd64.zip | |
| unzip -o spiff_linux_amd64.zip | |
| PATH=$PATH:$WORKSPACE |
| #!bash -e | |
| GITHUB_BASE_URL="${GIT_URL}/tree/${GIT_COMMIT}" | |
| GITHUB_INF_URL="${GITHUB_BASE_URL}/infrastructures/${JOB_INFRASTRUCTURE_DIR}/cf" | |
| echo "***********************" | |
| export DESC="desc JOB_INFRASTRUCTURE_DIR: <a href='${GITHUB_INF_URL}'>$JOB_INFRASTRUCTURE_DIR</a>" | |
| echo $DESC | |
| echo "DESC=$DESC" > tmp.var | |
| echo "***********************" |
| #!/bin/sh | |
| cd ~/workspace/bosh-lite | |
| vagrant suspend | |
| vagrant destroy -f | |
| vagrant up | |
| say "please enter your root password" & | |
| scripts/add-route | |
| cd ~/workspace/stemcells |
| {"timestamp":1401091322.861017,"message":"MongoaaS-Provisioner: Initializing"} | |
| {"timestamp":1401091322.8612764,"message":"Connecting with NATS"} | |
| {"timestamp":1401091513.6574829,"message":"error: Connection timed out - connect(2) | |
| /var/vcap/packages/mongodb_gateway/.../gems/cf-uaa-lib-2.0.0/lib/uaa/http.rb:161:in `rescue innet_http_request'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/cf-uaa-lib-2.0.0/lib/uaa/http.rb:149:in `net_http_request'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/cf-uaa-lib-2.0.0/lib/uaa/http.rb:137:in `request'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/cf-uaa-lib-2.0.0/lib/uaa/token_issuer.rb:140:in `implicit_grant_with_creds'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/vcap_services_base-0.2.5/lib/base/http_handler.rb:41: in `refresh_client_auth_token'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/vcap_services_base-0.2.5/lib/base/http_handler.rb:56 in `cc_req_hdrs'| | |
| /var/vcap/packages/mongodb_gateway/.../gems/vcap_services_base-0.2.5/lib/base/catalog_manager_v2.rb:44:in `initiali |
| cat > integration_config.json <<EOF | |
| { "apps_domain": "10.244.0.34.xip.io" } | |
| EOF | |
| export ADMIN_USER=admin | |
| export ADMIN_PASSWORD=admin | |
| export CF_USER=cats-user | |
| export CF_USER_PASSWORD=cats-user | |
| export CF_ORG=cats-org | |
| export CF_SPACE=cats-space |
| GOPATH: /home/cf-internet/bosh-workspace/repos/cf-acceptance-tests/gopath │···························· | |
| GOROOT: │···························· | |
| /usr/bin/go │···························· | |
| github.com/onsi/ginkgo 8004a15e410a927eadcd0d1cb336d390e1eee4f9 │···························· | |
| github.com/onsi/gomega 3da99a5a1412b006 |
| ➜ cf-services-contrib-release git:(master) bosh create release --final | |
| Syncing blobs... | |
| Are you sure you want to generate final version? yes | |
| Building FINAL release | |
| ----------------------------------- | |
| Building packages | |
| ----------------- | |
| Building atmos_gateway... |
| compilation: | |
| cloud_properties: | |
| name: random | |
| network: cf1 | |
| reuse_compilation_vms: true | |
| workers: 6 | |
| director_uuid: d235f4e9-fc81-4924-b331-3712f16611ec | |
| jobs: | |
| - instances: 1 | |
| name: ha_proxy_z1 |
| module Bosh::OpenStackCloud | |
| class ExconLoggingInstrumentor | |
| REDACTED = "[REDACTED]" | |
| def self.instrument(name, params = {}, &block) | |
| params = params.dup | |
| if params.has_key?(:headers) && params[:headers].has_key?('Authorization') | |
| params[:headers] = params[:headers].dup | |
| params[:headers]['Authorization'] = REDACTED | |
| end | |
| if params.has_key?(:password) |