我在尝试验证并上传我使用chef-plugin为Cloudify创建的蓝图时出错。我正在导入chef-plugin。
错误如下:
CloudifyCliError: Failed to validate blueprint my_blueprint.yaml: Missing definition for relationship cloudify.relationships.connected_to which is declared as derived by relationship cloudify.chef.connected_to
这就是我的blueprint.yaml的样子:
tosca_definitions_version: cloudify_dsl_1_0
imports:
- http://getcloudify.org/spec/chef-plugin/1.1/plugin.yaml
node_templates:
testserver:
type: cloudify.chef.nodes.WebServer
properties:
chef_config:
version: 11.18.0
chef_server_url: URL
validation_client_name: chef-validator
validation_key: ""
node_name_prefix: chef-node-
node_name_suffix: testserver.com
environment: _default
runlist: recipe[cookbook::recipe]
非常感谢任何帮助。
答案 0 :(得分:4)
您缺少导入types.yaml
的内容
imports:
- http://www.getcloudify.org/spec/cloudify/3.1/types.yaml
请务必查看http://getcloudify.org/guide/3.1/plugin-chef.html
上的Chef插件文档如果这是您第一次尝试使用Cloudify,我建议您从http://getcloudify.org/guide/3.1/quickstart.html开始,只有在您完成了基础知识后,才能继续使用主厨插件。