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
1
vote
1 answer

Integrating Cloudify with vCloud

I am working on using Cloudify for vCloud. So far the information I gathered , this intgegration is possible as jCloud has interfaces for vCloud too. I am yet to explore the jCloud too. I am looking for if any effort has been put to integrate…
1
vote
1 answer

Upload files as part of Cloudify recipe

In a Cloudify service recipe, is there a built-in way to upload static files to the instances? I see examples in recipes of using template files through a Groovy parser like: def yaml = new File('templates/storm.yaml') engine = new…
Gordon Seidoh Worley
  • 7,839
  • 6
  • 45
  • 82
1
vote
2 answers

Guice creation errors: Cloudify

I'm new to Guice and indeed cloudify and I hoping to get a pointer or areas to look at as to what may be causing this: Firstly : No implementation for com.google.common.cache.LoadingCache
1
vote
1 answer

Where to store credentials when using cloudify

I'm starting to use cloudify and in the spirit of DevOps where infrastructure is code I want to have the passwords stored in a safe and centralized place. It seems to me that I am supposed to put the credentials in the .properties file of the…
Ittai
  • 5,625
  • 14
  • 60
  • 97
1
vote
1 answer

CloudifySource 2.2 GA and 2.3 M2 not working on Windows 8

Has anybody got 2.2 GA or 2.3 M2 working on Windows 8 Ent x64? I have installed JDK 1.7.x and set JAVA_HOME and PATH as instructed in the install guide. All errors indicate that the agent cannot start. It would also seem that this IS NOT because…
Janaka
  • 307
  • 3
  • 10
1
vote
1 answer

How to mount a EBS in Cloudify after the creation of a VM

I want to share some data with my VMs thanks to a mounted EBS. How can I say to Cloudify that every created VM should have additional mounted EBS? (I'm talking about EBS in the case of Amazon EC2, but I want to do the same with OpenStack, and other…
0
votes
0 answers

Python 3.8 error in cloudify while running ansible

I am trying to run the blueprint Ansible-Azure-VPC which is in the marketplace of Cloudify. I am getting the following error: : [DEPRECATION WARNING]: Ansible will require Python 3.8 or newer on the controller starting with Ansible 2.12. Current…
0
votes
0 answers

docker community image login failing with network error

the problem Trying to login using the browser: Thanks in advance for any pointers on how to fix this issue. the steps taken I started the community image with the following command: docker run --name cfy_manager_local -p 8080:80…
0
votes
1 answer

Cloudify Manager: How to read a conf file from a python script in cloudify manager?

My directory structure is --> test => [blueprint.yaml, scripts [python_script.py, sample.conf]] python_script.py would basically read default configurations from sample.conf and parse/do some string operations and generates a new conf file. But am…
0
votes
0 answers

Deploying resources to K8s cluster via Cloudify

I am trying to deploy a resource to a kubernetes cluster via Cloudify UI, however I am getting the below error. Can anyone please help. This is my blueprint. tosca_definitions_version: cloudify_dsl_1_3 description: > This blueprint installs helm…
0
votes
1 answer

Cloudify python script plugin - how to use packages?

I am trying to run a python script on cloudify and for that I am using the script plugin. Now I've managed to get the script running but it fails when importing the python packages it needs. Is there a way to install those packages in cloudify…
0
votes
1 answer

A way to pass data to instance from external file

I'd like to pass configuration file to an instance through metadata. Currently for testing purposes I'm just concatenating text inside the blueprint, like this: RE_vm: type: cloudify.openstack.nodes.Server properties: resource_id: {…
daro
  • 39
  • 6
0
votes
1 answer

How to properly auto-scale groups of VMs in Cloudify?

I'm using cloudify community version 19.01.24. Trying to figure out how to auto-scale a group of two VMs. Here's what I came up with so far (skipped irrelevant parts): monitored_vm1_port: type: cloudify.openstack.nodes.Port properties: …
daro
  • 39
  • 6
0
votes
1 answer

get list of nodes using CloudifyClient

I am trying to get a list of Tosca nodes within my blueprint but it returns all the nodes in the whole cloudify (includes nodes from other blueprints) nodes = client.nodes.list(_include=['id','type','properties']) I expect to get a list of nodes in…
Tomevision
  • 33
  • 1
  • 7
0
votes
1 answer

Cloudify Agent installation

I was trying getting hands on Cloudify deployments and learnt of cloudify agents lately which are required to do vm configurations. I was reviewing the following plugin…
Akash Gorai
  • 580
  • 1
  • 8
  • 17
1 2
3
10 11