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
FROM ubuntu:trusty | |
MAINTAINER Gigaspaces, [email protected] | |
ADD LOGSTASH_NOTICE.txt /root/LOGSTASH_NOTICE.txt | |
ENV LOGSTASH_SERVICE_DIR /etc/service/logstash | |
ENV LOGSTASH_CONF_FILE ${LOGSTASH_SERVICE_DIR}/logstash.conf | |
RUN mkdir -p ${LOGSTASH_SERVICE_DIR} | |
ADD logstash.conf ${LOGSTASH_SERVICE_DIR}/ |
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
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE | |
cloudify/logstash latest cc20af189412 52 seconds ago 802.7 MB |
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
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE | |
cloudify/logstash latest ebfb98409931 About an hour ago 741.3 MB |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
AWS_ACCESS_KEY_ID = ENV['AWS_ACCESS_KEY_ID'] | |
AWS_ACCESS_KEY = ENV['AWS_ACCESS_KEY'] | |
BASE_BOX_NAME = 'ubuntu/trusty64' | |
Vagrant.configure('2') do |config| | |
config.vm.define "ubuntu" do |ubuntu| |
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
{ | |
"variables": { | |
"aws_access_key": "{{env `AWS_ACCESS_KEY_ID`}}", | |
"aws_secret_key": "{{env `AWS_ACCESS_KEY`}}", | |
"aws_source_ami": "", | |
"instance_type": "m3.large", | |
"virtualbox_source_image": "", | |
"insecure_private_key": "./keys/insecure_private_key" | |
}, | |
"builders": [ |
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
cloudify.openstack.nodes.Server: | |
derived_from: 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
cloudify.aws.nodes.Instance: | |
derived_from: 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
cloudify.nodes.Compute: | |
derived_from: cloudify.nodes.Root |
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.MonitoredServer: | |
derived_from: nodecellar.nodes.Server | |
properties: | |
cloudify_agent: | |
default: {} | |
aws_ec2_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
nodecellar.nodes.Server: | |
derived_from: cloudify.openstack.nodes.Server | |
properties: | |
aws_ec2_properties: | |
default: {} | |
cloudstack_properties: | |
default: {} | |
openstack_properties: | |
default: {} | |
softlayer_properties: |
OlderNewer