tldr/pages/common/bosh.md

37 lines
750 B
Markdown
Raw Normal View History

2017-10-25 20:30:06 +01:00
# bosh
> Command-line tool to deploy and manage the bosh director.
> More information: <https://bosh.io/docs/cli-v2/>.
2017-10-25 20:30:06 +01:00
- Create local alias for director:
`bosh alias-env {{environment_name}} -e {{ip_address|url}} --ca-cert {{ca_certificate}}`
2017-10-25 20:30:06 +01:00
- List environments:
`bosh environments`
- Log in to the director:
2017-10-25 20:30:06 +01:00
`bosh login -e {{environment}} `
- List deployments:
`bosh -e {{environment}} deployments`
- List environment virtual machines:
`bosh -e {{environment}} vms -d {{deployment}}`
- Ssh into virtual machine:
`bosh -e {{environment}} ssh {{virtual_machine}} -d {{deployment}}`
2017-10-25 20:30:06 +01:00
- Upload stemcell:
`bosh -e {{environment}} upload-stemcell {{stemcell_file|url}}`
2017-10-25 20:30:06 +01:00
- Show current cloud config:
`bosh -e {{environment}} cloud-config`