This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tosca_definitions_version: cloudify_dsl_1_3 | |
imports: | |
- https://github.com/dice-project/DICE-Deployment-Cloudify/releases/download/0.7.0/full.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflows: | |
my_workflow: | |
steps: | |
creating_my_node: | |
target: my_node | |
activities: | |
- set_state: creating | |
on_success: create_my_node | |
create_my_node: | |
target: my_node |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflows: | |
my_workflow: | |
steps: | |
create_my_node: | |
target: my_node | |
activities: | |
- set_state: creating | |
- call_operation: tosca.interfaces.node.lifecycle.Standard.create | |
- set_state: created |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
topology_template: | |
workflows: | |
deploy: | |
description: Workflow to deploy the application | |
steps: | |
A: | |
on_success: | |
- B | |
- C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
topology_template: | |
workflows: | |
deploy: | |
description: Workflow to deploy the application | |
steps: | |
A: | |
on_success: | |
- B | |
- C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflows: | |
install: default_workflows.cloudify.plugins.workflows.install | |
uninstall: default_workflows.cloudify.plugins.workflows.uninstall | |
execute_operation: | |
mapping: default_workflows.cloudify.plugins.workflows.execute_operation | |
parameters: | |
operation: {} | |
operation_kwargs: | |
default: {} | |
run_by_dependency_order: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Firewall_Micro-Service: | |
type: openstack.Instance | |
properties: | |
image_id: { get_input: image_id } | |
flavor_id: { get_input: flavor_id } | |
os_users: | |
root: | |
password: | |
interfaces: | |
Standard: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflows: | |
install: default_workflows.cloudify.plugins.workflows.install | |
uninstall: default_workflows.cloudify.plugins.workflows.uninstall | |
execute_operation: | |
mapping: default_workflows.cloudify.plugins.workflows.execute_operation | |
parameters: | |
operation: {} | |
operation_kwargs: | |
default: {} | |
run_by_dependency_order: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_templates: | |
server: | |
type: cloudify.oraclebmc.nodes.Instance | |
properties: | |
install_agent: false | |
bmc_config: *bmc_config | |
public_key_file: 'somekey.pub' | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubernetes_master_host: | |
type: cloudify.hostpool.nodes.LinuxHost | |
properties: | |
agent_config: | |
<<: *agent_config | |
filters: | |
tags: | |
- large | |
- centos |