Questions tagged [cloudify]

Cloudify is a pure-play open source cloud orchestration platform built in Python and a TOSCA-based YAML DSL, that enables the plugging in of any cloud or toolset.

Cloudify is a pure-play open source cloud orchestration platform maintained by Gigaspaces. It provides a blueprint-based service that serves as an infrastructure and tool agnostic integration platform enabling the orchestration of infrastructure through application stacks - independent of the technology toolsets in use.

In addition to professional services from Gigaspaces, Cloudify is also supported by the Cloudify Community, which is home to documentation, plugins, developer tools, and forum-based support for Cloudify.

157 questions
0
votes
1 answer

Not able to execute lifecycle operation using script plugin

I'm trying to learn how to use script plugin. I'm following script plugin docs here but not able to make it work. I've tried to use the plugin in two ways. The first, when cloudify.interface.lifecycle.start operation is mapped directly to a…
user21696
  • 1
  • 1
0
votes
1 answer

How to send octet-stream content-type using Cloudify REST plugin

Using Cloudify latest REST plugin I'm trying to send request with octet-stream content type. Tried several ways to send the data but with no success My REST template looks like this: rest_calls: - path: /v2/projects/{{ PROJECT_ID }}/import?name={{…
user21696
  • 1
  • 1
0
votes
1 answer

Cloudify File Plugin "Operation not permitted" error

I'm attempting to copy a file to a VM using the cloudify.nodes.File type, but am running into a permission error that I'm having trouble figuring out. According to the documentation, I should be able to copy a file by using: docker_yum_repo: type:…
stone-joe
  • 1
  • 1
0
votes
2 answers

Cloudify - Openstack-Plugin - How to grant permissions to write/read key to the path specified into KeyPair Cloudify building block

when i try to deploy a blueprint with a keypair block, Cloudify returns the subsequent error: Task failed 'nova_plugin.keypair.create' -> [Errno 13] Permission denied: '/root/key.key' Where '/root/key.key' is the full path where i want the private…
0
votes
1 answer

Attaching a new volume each time a node group is scaled

Can anyone share any reference template to create a new volume and attach to a new instance each time a deployment for that instance is scaled up? My template looks like: node_templates: key_pair: ... vol: ... node_host: ... …
Junaid
  • 3,477
  • 1
  • 24
  • 24
0
votes
1 answer

Cloudify Composer - Resizing/Rearrange nodes or components boxes' size

Question Is it possible to change nodes highness and width in Cloudify Composer ? Context I am currently trying to describe a (future) application, in TOSCA, using Cloudify. This model is used in a designing process, therefore I have different…
0
votes
1 answer

How to test a new cloudify plugin with a blueprint that internally uses another plugin?

I'm developing a new cloudify plugin that I test using tox, nosetests and @workflow_test decorator following the plugin template. I'd like to test the plugin interacting with another plugin (speficially openstack plugin). Hence I'm using a blueprint…
Javi Carnero
  • 409
  • 4
  • 9
0
votes
1 answer

Tosca blueprint: how to convert the dictionary output to string

In tosca blueprint, I am trying to convert the received the dictionary output to string. However I am unable to find a blueprint method relevant to this. I have added by blueprint below: process: args: public_ip: { get_attribute: [node1,…
Vishwa Dany
  • 327
  • 2
  • 16
0
votes
2 answers

How to restart cloudify manager and its components

I have added the env variable CFY_WORKDIR (in /etc/environment) to change the current working directory. In my understanding to take this new directory into effect, I need to restart the cloudify manager. Is it possible to do this?
Vishwa Dany
  • 327
  • 2
  • 16
0
votes
1 answer

Scheduling a workflow execution in Cloudify

I'm new with cloudify (4.2) and trying to exercise sheduling workflows. On Cloudify Roadmap i found this feature: Scheduled Workflow Execution: The ability to schedule a workflow execution at a future time, such as scaling the number of web…
RedUno
  • 78
  • 1
  • 8
0
votes
1 answer

how to use cloudify to auto-heal/scale docker containers

In my project, I'm using cloudify to start and configure the docker containers. Now I'm wondering how to write YAML files to auto-heal/scale those containers. My topology is like this: a Compute node contains a Docker-Container node, and in the…
Lootii
  • 3
  • 3
0
votes
2 answers

Cloudify manager bootsrapping - rest service failed

I followed the steps in http://docs.getcloudify.org/4.1.0/installation/bootstrapping/#option-2-bootstrapping-a-cloudify-manager to bootstrap the cloudify manager using option 2, and getting the following error repeatedly: Workflow failed: Task…
0
votes
2 answers

how to edit blueprint for automatically running a command in docker container run by cloudify

I want to run a docker container of RYU controller in cloudify ways. I have written a blueprint file with which I can create relevant deployment and finally start the docker container. The problem is, the controller (within the docker container)…
Lootii
  • 3
  • 3
0
votes
1 answer

wokflow: Missing cloudify_agent.queue runtime information

I want to install a Docker container on Cloudify and wrote a blueprint with docker-plugin (attached at the end). At the beginning, I finished the blueprint by learning CloudifyDocs. But when it came to installing the workflow, an error occurred with…
Lootii
  • 3
  • 3
0
votes
1 answer

Failed to bootstrap simple manager by cloudify-cli@4.0.1 which is installed by rpm package builded myself

I build a rpm package for the cloudify-cli source code with tag 4.0.1 by running command "rpmbuild -bb build.spec". The rpm package was builded and installed successfully even though the rpm package is smaller than the rpm package downloaded from…