$ bosh deploy
Acting as user 'admin' on deployment 'cf-warden' on 'Bosh Lite Director'
Getting deployment properties from director...
Unable to get properties list from director, trying without it...
Release 'cf' not found on director. Unable to resolve 'latest' alias in manifest.
Other Info
I named the release
mgdev
when creating it (as it was showing CF | when it prompted for release name)Output from
bosh releases
:$ bosh releases Acting as user 'admin' on 'Bosh Lite Director' +-------+----------+-------------+ | Name | Versions | Commit Hash | +-------+----------+-------------+ | mgdev | 0+dev.1 | 3c73e6d | +-------+----------+-------------+ Releases total: 1
I see
cf-release/dev-releases/mgdev/mgdev-0+dev.1.yml
andindex.yml
files.- Q:
bosh deploy
should use these files? If yes, how and what would be the command? - Q: Is this right to execute?
bosh upload release /dev-releases/mgdev/mgdev-0+dev.1.yml
- Q:
Output from
bosh properties
:$ bosh properties Acting as user 'admin' on deployment 'cf-warden' on 'Bosh Lite Director' Target Bosh Lite Director Deployment cf-warden Error 70000: Deployment `cf-warden' doesn't exist
Based on info you provided, it seems that you have a release
mgdev
but notcf
. Hence,bosh deploy
cannot resolvecf:latest
to a valid release. You probably wanna change release name in your release manifest tocf
, if that's the cf release you're trying to deploy.To address other two questions:
bosh deploy
is going to use deployment manifest but NOT release manifest