-
-
Save badri/299a536b7291a7bc1c09 to your computer and use it in GitHub Desktop.
LizardFS CloudFormation template.
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
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "LizardFS CloudFormation template. See: http://goo.gl/1bp2qF and http://goo.gl/vEOJq5 and http://goo.gl/Fpzm61", | |
"Parameters" : { | |
"DataNodeCount" : { | |
"Description" : "Number of data nodes to provision in cluster (2-18)", | |
"Type" : "Number", | |
"Default" : "2", | |
"MinValue" : "2", | |
"MaxValue" : "18", | |
"ConstraintDescription" : "must be between 2 and 18." | |
}, | |
"KeyPair": { | |
"Description" : "Name of an existing EC2 KeyPair: https://console.aws.amazon.com/ec2/v2/home#KeyPairs:", | |
"Type": "String", | |
"MinLength": "1", | |
"MaxLength": "255", | |
"AllowedPattern" : "[\\x20-\\x7E]*", | |
"ConstraintDescription" : "can contain only ASCII characters." | |
}, | |
"ClusterAccess" : { | |
"Description" : "CIDR IP range allowed to login to the cluster instances", | |
"Type": "String", | |
"MinLength": "9", | |
"MaxLength": "18", | |
"Default": "0.0.0.0/0", | |
"AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})", | |
"ConstraintDescription": "must be a valid IP CIDR range of the form x.x.x.x/x." | |
}, | |
"ClusterInstanceType" : { | |
"Description" : "AMI instance type: https://aws.amazon.com/ec2/instance-types/", | |
"Type" : "String", | |
"Default" : "m1.medium" | |
} | |
}, | |
"Mappings" : { | |
"LinuxRegionMap" : { | |
"us-east-1" : { "AMI" : "ami-74efab1c" }, | |
"us-west-2" : { "AMI" : "ami-a31a4293" }, | |
"us-west-1" : { "AMI" : "ami-70b9a035" }, | |
"eu-west-1" : { "AMI" : "ami-c9e569be" }, | |
"eu-central-1" : { "AMI" : "ami-8a043797" }, | |
"ap-southeast-1" : { "AMI" : "ami-6a8ba038" }, | |
"ap-southeast-2" : { "AMI" : "ami-4f770375" }, | |
"ap-northeast-1" : { "AMI" : "ami-745c4575" }, | |
"sa-east-1" : { "AMI" : "ami-2f8b3732" } | |
} | |
}, | |
"Resources" : { | |
"ClusterSecurityGroup" : { | |
"Type" : "AWS::EC2::SecurityGroup", | |
"Properties" : { | |
"GroupDescription" : "Cluster Security Group", | |
"Tags" : [{ "Key" : "Name", "Value" : "Cluster Security Group" }], | |
"SecurityGroupIngress" : [ | |
{ | |
"IpProtocol" : "tcp", | |
"FromPort" : "22", | |
"ToPort" : "22", | |
"CidrIp" : { "Ref" : "ClusterAccess" } | |
} | |
] | |
} | |
}, | |
"UpdateSecurityGroup" : { | |
"Type" : "AWS::EC2::SecurityGroupIngress", | |
"Properties" : { | |
"GroupName" : { "Ref" : "ClusterSecurityGroup" }, | |
"SourceSecurityGroupName" : { "Ref" : "ClusterSecurityGroup" }, | |
"IpProtocol" : "tcp", | |
"FromPort" : "0", | |
"ToPort" : "65535" | |
} | |
}, | |
"Master1" : { | |
"Type" : "AWS::EC2::Instance", | |
"Properties" : { | |
"InstanceType" : { "Ref" : "ClusterInstanceType" }, | |
"SecurityGroups" : [ { "Ref" : "ClusterSecurityGroup" } ], | |
"KeyName" : { "Ref" : "KeyPair" }, | |
"ImageId" : { "Fn::FindInMap" : [ "LinuxRegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, | |
"Tags" : [{ "Key" : "Name", "Value" : "LizardFS Server" }], | |
"UserData" : { "Fn::Base64" : { "Fn::Join" : ["", [ | |
"#!/bin/bash\n", | |
"mkfs.ext4 /dev/xvdb && mount -t ext4 /dev/xvdb /mnt && echo '/dev/xvdb /mnt auto noatime 0 0' >> /etc/fstab && mount -a\n", | |
"wget -O - http://packages.lizardfs.com/lizardfs.key | apt-key add -\n", | |
"echo 'deb http://packages.lizardfs.com/debian/wheezy wheezy main' > /etc/apt/sources.list.d/lizardfs.list\n", | |
"echo 'deb-src http://packages.lizardfs.com/debian/wheezy wheezy main' >> /etc/apt/sources.list.d/lizardfs.list\n", | |
"apt-get update -y && apt-get install -y lizardfs-master lizardfs-chunkserver curl\n", | |
"echo 'PERSONALITY = master' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo 'WORKING_USER = root' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo 'WORKING_GROUP = root' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo `curl -s http://169.254.169.254/latest/meta-data/local-ipv4 | cut -d '.' -f 1-2`'.0.0/16 / rw,alldirs,maproot=0' >> /etc/mfs/mfsexports.cfg\n", | |
"touch /etc/mfs/metadata.mfs\n", | |
"sed -i 's/LIZARDFSMASTER_ENABLE=false/LIZARDFSMASTER_ENABLE=true/' /etc/default/lizardfs-master\n", | |
"service lizardfs-master start\n", | |
"echo 'WORKING_USER = root' >> /etc/mfs/mfschunkserver.cfg\n", | |
"echo 'WORKING_GROUP = root' >> /etc/mfs/mfschunkserver.cfg\n", | |
"echo `curl -s http://169.254.169.254/latest/meta-data/local-ipv4`' mfsmaster' >> /etc/hosts\n", | |
"mkdir -p /mnt/lfschunk\n", | |
"echo '/mnt/lfschunk' >> /etc/mfs/mfshdd.cfg\n", | |
"sed -i 's/LIZARDFSCHUNKSERVER_ENABLE=false/LIZARDFSCHUNKSERVER_ENABLE=true/' /etc/default/lizardfs-chunkserver\n", | |
"service lizardfs-chunkserver start" | |
]]}} | |
} | |
}, | |
"Master2" : { | |
"Type" : "AWS::EC2::Instance", | |
"DependsOn" : "Master1", | |
"Properties" : { | |
"InstanceType" : { "Ref" : "ClusterInstanceType" }, | |
"SecurityGroups" : [ { "Ref" : "ClusterSecurityGroup" } ], | |
"KeyName" : { "Ref" : "KeyPair" }, | |
"ImageId" : { "Fn::FindInMap" : [ "LinuxRegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, | |
"Tags" : [{ "Key" : "Name", "Value" : "LizardFS Server" }], | |
"UserData" : { "Fn::Base64" : { "Fn::Join" : ["", [ | |
"#!/bin/bash\n", | |
"mkfs.ext4 /dev/xvdb && mount -t ext4 /dev/xvdb /mnt && echo '/dev/xvdb /mnt auto noatime 0 0' >> /etc/fstab && mount -a\n", | |
"wget -O - http://packages.lizardfs.com/lizardfs.key | apt-key add -\n", | |
"echo 'deb http://packages.lizardfs.com/debian/wheezy wheezy main' > /etc/apt/sources.list.d/lizardfs.list\n", | |
"echo 'deb-src http://packages.lizardfs.com/debian/wheezy wheezy main' >> /etc/apt/sources.list.d/lizardfs.list\n", | |
"apt-get update -y && apt-get install -y lizardfs-master lizardfs-chunkserver curl\n", | |
"echo 'PERSONALITY = shadow' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo 'WORKING_USER = root' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo 'WORKING_GROUP = root' >> /etc/mfs/mfsmaster.cfg\n", | |
"echo `curl -s http://169.254.169.254/latest/meta-data/local-ipv4 | cut -d '.' -f 1-2`'.0.0/16 / rw,alldirs,maproot=0' >> /etc/mfs/mfsexports.cfg\n", | |
"touch /etc/mfs/metadata.mfs\n", | |
"sed -i 's/LIZARDFSMASTER_ENABLE=false/LIZARDFSMASTER_ENABLE=true/' /etc/default/lizardfs-master\n", | |
"service lizardfs-master start\n", | |
"echo 'WORKING_USER = root' >> /etc/mfs/mfschunkserver.cfg\n", | |
"echo 'WORKING_GROUP = root' >> /etc/mfs/mfschunkserver.cfg\n", | |
"echo `curl -s http://169.254.169.254/latest/meta-data/local-ipv4`' mfsmaster' >> /etc/hosts\n", | |
"mkdir -p /mnt/lfschunk\n", | |
"echo '/mnt/lfschunk' >> /etc/mfs/mfshdd.cfg\n", | |
"sed -i 's/LIZARDFSCHUNKSERVER_ENABLE=false/LIZARDFSCHUNKSERVER_ENABLE=true/' /etc/default/lizardfs-chunkserver\n", | |
"service lizardfs-chunkserver start" | |
]]}} | |
} | |
}, | |
"DataNode" : { | |
"Type" : "AWS::AutoScaling::LaunchConfiguration", | |
"DependsOn" : "Master2", | |
"Properties" : { | |
"InstanceType" : { "Ref" : "ClusterInstanceType" }, | |
"SecurityGroups" : [ { "Ref" : "ClusterSecurityGroup" } ], | |
"KeyName" : { "Ref" : "KeyPair" }, | |
"ImageId" : { "Fn::FindInMap" : [ "LinuxRegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, | |
"UserData" : { "Fn::Base64" : { "Fn::Join" : ["", [ | |
"#!/bin/bash\n", | |
"wget -O - http://packages.lizardfs.com/lizardfs.key | apt-key add -\n", | |
"echo 'deb http://packages.lizardfs.com/debian/wheezy wheezy main' > /etc/apt/sources.list.d/lizardfs.list\n", | |
"echo 'deb-src http://packages.lizardfs.com/debian/wheezy wheezy main' >> /etc/apt/sources.list.d/lizardfs.list\n", | |
"apt-get update -y && apt-get install -y lizardfs-client\n", | |
"echo '", | |
{ "Fn::GetAtt" : [ "Master1" , "PrivateIp" ] }, | |
" mfsmaster' >> /etc/hosts\n", | |
"mkdir -p /mnt/lizardfs\n", | |
"mfsmount /mnt/lizardfs" | |
]]}} | |
} | |
}, | |
"ClusterInit" : { | |
"Type" : "AWS::AutoScaling::AutoScalingGroup", | |
"Properties" : { | |
"AvailabilityZones" : { "Fn::GetAZs" : "" }, | |
"LaunchConfigurationName" : { "Ref" : "DataNode" }, | |
"MinSize" : "2", | |
"MaxSize" : "18", | |
"DesiredCapacity" : { "Ref" : "DataNodeCount" }, | |
"Tags" : [{ "Key" : "Name", "Value" : "LizardFS Node", "PropagateAtLaunch" : "true" }] | |
} | |
} | |
}, | |
"Outputs" : { | |
"Info" : { | |
"Description" : "Info", | |
"Value" : "Any file created on the 'LizardFS Node' instances in /mnt/lizardfs will be synced to all LizardFS Node instances." | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment