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
| nodecellar.nodes.SecurityGroup: | |
| derived_from: cloudify.nodes.Root | |
| properties: | |
| aws_ec2_properties: | |
| default: {} | |
| cloudstack_properties: | |
| default: {} | |
| openstack_properties: | |
| default: {} | |
| softlayer_properties: |
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
| some_virtual_host: | |
| type: cloudify.nodes.Compute |
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
| some_virtual_host: | |
| type: cloudify.nodes.Compute | |
| interfaces: | |
| cloudify.interfaces.lifecycle: | |
| create: scripts/create.sh |
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_types: | |
| cloudify.nodes.BladeServer: | |
| derived_from: cloudify.nodes.Compute | |
| interfaces: | |
| cloudify.interfaces.lifecycle: | |
| create: scripts/automation/create.sh |
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
| some_virtual_host: | |
| type: tosca.nodes.Compute | |
| interfaces: | |
| standard: | |
| create: scripts/create.sh |
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
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module ’"+o+"’");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| console.log(’hello world’); | |
| },{}]},{},[1]); |
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
| angular.module('myApp',['travisjs']) | |
| function( TravisClient ){ .. } | |
| new $.TravisClient() | |
| new window.TravisClient(); | |
| var travisClient = new require('travisjs')(); |
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
| function MyCtrl (serviceName){ | |
| this.message = 'Hello World!'; | |
| } | |
| MyCtrl.prototype.sayHello = function(){ | |
| console.log(this.message); | |
| } | |
| exports = module.exports = MyCtrl |
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
| vRouter: | |
| type: cloudify.openstack.nodes.Server | |
| properties: | |
| use_external_resource: False | |
| resource_id: router1 | |
| install_agent: false | |
| server: | |
| image: { get_input: router1_image_id } | |
| flavor_name: { get_input: flavor_name } | |
| management_network_name: { get_property: [management_network, resource_id] } |
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
| class CloudifyToscaPackage(package_base.PackageBase): | |
| def __init__(self, format_name, runtime_version, source_directory, | |
| manifest): | |
| super(CloudifyToscaPackage, self).__init__( | |
| format_name, runtime_version, source_directory, manifest) | |
| self._entry_point = manifest.get('EntryPoint', 'main.yaml') |