0

cloudify でワークフローを実行しようとしていますが、コマンドを実行すると:

cfy executions start -w install -d teste003 --debug --include-logs

以下のエラーが発生します。

Execution of workflow 'install' for deployment 'teste003' timed out. * Run 'cfy executions cancel --execution-id c12ac2b2-fd34-4a04-a4bc-252871f9e166' to cancel the running workflow.
* Run 'cfy events list --tail --include-logs --execution-id c12ac2b2-fd34-4a04-a4bc-252871f9e166' to retrieve the execution's events/logs
Traceback (most recent call last):
  File "/home/ubuntu/cloudify/bin/cfy", line 9, in <module>
    load_entry_point('cloudify==3.2.1', 'console_scripts', 'cfy')()
  File "/home/ubuntu/cloudify/local/lib/python2.7/site-packages/cloudify_cli/cli.py", line 37, in main
    args.handler(args)
  File "/home/ubuntu/cloudify/local/lib/python2.7/site-packages/cloudify_cli/cli.py", line 143, in command_cmd_handler
    command['handler'](**kwargs)
  File "/home/ubuntu/cloudify/local/lib/python2.7/site-packages/cloudify_cli/commands/executions.py", line 174, in start
    raise SuppressedCloudifyCliError()
SuppressedCloudifyCliError

私のファイル aws-ec2-blueprint.yaml の下:

tosca_definitions_version: cloudify_dsl_1_1

imports:
  - http://www.getcloudify.org/spec/cloudify/3.2.1/types.yaml
  - http://www.getcloudify.org/spec/aws-plugin/1.2.1/plugin.yaml
  - http://www.getcloudify.org/spec/diamond-plugin/1.2.1/plugin.yaml

inputs:

  image:
    description: >
      Image to be used when launching agent VM's

  size:
    description: >
      Flavor of the agent VM's

  agent_user:
    description: >
      User for connecting to agent VM's

node_templates:

  mongod_host:
    type: cloudify.aws.nodes.Instance
    properties:
      image_id: { get_input: image }
      instance_type: { get_input: size }

私のinputs.yaml:

画像: ami-d05e75b8

サイズ: m3.medium

エージェント_ユーザー: Ubuntu

なにか提案を?

4

1 に答える 1