$ 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.其他信息
mgdev时给它命名(因为它在提示发布名时显示CF )bosh releases的输出:
在“bosh Lite Director”+-+-+ mgdev 0+dev.1 3c73e6d +-+-++-++-作为用户“admin”的用户--+cf-release/dev-releases/mgdev/mgdev-0+dev.1.yml和index.yml文件。- 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`
bosh properties$ bosh属性在部署时充当用户'admin‘的输出’cf‘在'Bosh’目标Bosh部署cf-warden错误70000:部署‘cf’不存在发布于 2016-01-25 09:40:59
根据您提供的信息,您似乎有一个发布的mgdev,而不是cf。因此,bosh deploy不能将cf:latest解析为有效的版本。您可能希望将发布清单中的发布名更改为cf,如果这是您要部署的cf版本。
为了解决其他两个问题:
bosh deploy将使用部署清单,但不使用发布清单。发布于 2017-03-04 17:45:53
在bosh create release期间,它要求发布名,在它被添加到某些yaml-config之后(我的意思是额外的bosh create release不会像在某些yaml中那样帮助您)。如果您已经键入了自己的配置,请删除该预配置yaml (例如,尝试用grep -nr typed_release_name *查找它)。
如果您不需要所有这些内容,那么当Enter请求您发布名称时,只需按bosh create release键,它就会自动将cf放在那里。
$ bosh create release
Syncing blobs...
debian_nfs_server/nfs-kernel-server_1%3a1... downloaded
uaa/cloudfoundry-identity-varz-1.0.2.war downloaded
...
java-buildpack/java-buildpack-offline-v3.... downloaded
Please enter development release name: |cf| <just type Enter here>PS。此外,您还可以尝试在bosh status中更改清单名称,我认为它在./scripts/generate-bosh-lite-dev-manifest期间会被更改。
发布于 2017-05-09 08:42:09
bosh.io有很多版本,您只需参考网址将发行版加载到导演,您就不需要下载一个tarball或任何bosh会做的事情。
bosh upload release http://bosh.io/d/github.com/cloudfoundry-incubator/garden-runc-release?v=1.0.0但是,guoger是正确的(上面)在部署清单中的名称必须与您拥有的版本相匹配.
bosh releases将显示您安装的版本..。确保他们和舱单相符,你们都准备好了。
https://stackoverflow.com/questions/34961649
复制相似问题