miguno / wirbelsturm

[PROJECT IS NO LONGER MAINTAINED] Wirbelsturm is a Vagrant and Puppet based tool to perform 1-click local and remote deployments, with a focus on big data tech like Kafka.
http://www.michael-noll.com/blog/2014/03/17/wirbelsturm-one-click-deploy-storm-kafka-clusters-with-vagrant-puppet/
Other
330 stars 72 forks source link

cloud-config.erb #9

Closed pbwilmot closed 2 years ago

pbwilmot commented 10 years ago

looks like there is a stranded merge conflict in cloud-config.erb can the file be simplified to

Content-Type: text/cloud-config; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cloud-config"

#cloud-config

packages:
  - wget
  - git
  - screen
  - python-boto

runcmd:
  - [ sh, -c, 'echo -e "nameserver 8.8.8.8\nnameserver 8.8.4.4" >> /etc/resolv.conf' ]
  - [ yum, update, -y ]
  - [ sh, -c, 'echo "export FACTER_DESIRED_FQDN=<%= @fqdn %>" >> /etc/environment' ]
  - [ sh, -c, 'echo "export FACTER_ROLE=<%= @role %>" >> /etc/environment' ]
  - [ sh, -c, 'echo "export FACTER_PROVIDER=aws" >> /etc/environment' ]
  # Make your that subsequent commands -- notably Puppet -- have the FACTER_* facts available in their shell env
  - . /etc/environment
  - [ mkdir, -p, /etc/aws ]
  - [ chmod, 750, /etc/aws ]
  - [ sh, -c, 'echo "# Credentials of deploy IAM user" > /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_ACCESS_KEY=<%= @aws_access_key %>" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_SECRET_KEY=<%= @aws_secret_key %>" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "# For boto -- same information but different variables" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_ACCESS_KEY_ID=\$AWS_ACCESS_KEY" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_SECRET_ACCESS_KEY=\$AWS_SECRET_KEY" >> /etc/aws/aws-credentials.sh' ]
  - [ chmod, 400, /etc/aws/aws-credentials.sh ]
  - [ wget, "<%= @aws_rclocal_url %>", -O, "/etc/rc.d/rc.local" ]
  - [ chown, "root:root", /etc/rc.d/rc.local ]
  - [ chmod, 755, /etc/rc.d/rc.local ]
  - [ /etc/rc.d/rc.local ]
miguno commented 10 years ago

Peter, where do you see a stranded merge conflict in cloud-config.erb?

If you mean the MIME/multipart entries, then those are intended (I agree though that their syntax looks horribly in the code). See cloud-init: Multipart Input.

pbwilmot commented 10 years ago

ok I see what you mean - this is just the output of the write-mime-multipart script and not a merge conflict at all. In this case you are combining two files boothook.sh and cloud-config into a single multipart file containing both.

it looks like boothook.sh is an empty file though.

--===============8357495029070803742==
Content-Type: text/x-shellscript; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="boothook.sh"

#!/bin/bash

--===============8357495029070803742==

Can't this be removed?

Then if this is removed all thats left is the cloud-config file and so you don't need a multipart at all.

If this is true then the file can just be

#cloud-config

packages:
  - wget
  - git
  - screen
  - python-boto

runcmd:
  - [ sh, -c, 'echo -e "nameserver 8.8.8.8\nnameserver 8.8.4.4" >> /etc/resolv.conf' ]
  - [ yum, update, -y ]
  - [ sh, -c, 'echo "export FACTER_DESIRED_FQDN=<%= @fqdn %>" >> /etc/environment' ]
  - [ sh, -c, 'echo "export FACTER_ROLE=<%= @role %>" >> /etc/environment' ]
  - [ sh, -c, 'echo "export FACTER_PROVIDER=aws" >> /etc/environment' ]
  # Make your that subsequent commands -- notably Puppet -- have the FACTER_* facts available in their shell env
  - . /etc/environment
  - [ mkdir, -p, /etc/aws ]
  - [ chmod, 750, /etc/aws ]
  - [ sh, -c, 'echo "# Credentials of deploy IAM user" > /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_ACCESS_KEY=<%= @aws_access_key %>" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_SECRET_KEY=<%= @aws_secret_key %>" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "# For boto -- same information but different variables" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_ACCESS_KEY_ID=\$AWS_ACCESS_KEY" >> /etc/aws/aws-credentials.sh' ]
  - [ sh, -c, 'echo "export AWS_SECRET_ACCESS_KEY=\$AWS_SECRET_KEY" >> /etc/aws/aws-credentials.sh' ]
  - [ chmod, 400, /etc/aws/aws-credentials.sh ]
  - [ wget, "<%= @aws_rclocal_url %>", -O, "/etc/rc.d/rc.local" ]
  - [ chown, "root:root", /etc/rc.d/rc.local ]
  - [ chmod, 755, /etc/rc.d/rc.local ]
  - [ /etc/rc.d/rc.local ]