Browse Source

Added configuration management for the integration between Refinery and Errbit

master
Blagovest Petrov 9 years ago
parent
commit
4c73385c79
  1. 3
      README.md
  2. 2
      infrastructure.yml
  3. 2
      manifests/errbit.pp
  4. 20
      roles/deploy.errbit/tasks/main.yml
  5. 22
      roles/deploy.refinery/tasks/main.yml
  6. 6
      roles/deploy.refinery/templates/errbit.j2

3
README.md

@ -5,5 +5,6 @@ RadineryCMS with Errbit, managed with Vagrant, Puppet and Ansible
```bash
$ vagrant up
$ ansible-playbook -vvvv -i lib/vagrant-ansible-inventory.py infrastructure.yml
$ ansible-playbook -vvvv -i lib/vagrant-ansible-inventory.py errbit.yml
$ ansible-playbook -vvvv -i lib/vagrant-ansible-inventory.py -e 'deploy_refinery_errbit_apikey=apikey' refinery.yml
```

2
infrastructure.yml

@ -1,2 +1,2 @@
- include: errbit.yml
#- include: errbit.yml
- include: refinery.yml

2
manifests/errbit.pp

@ -27,7 +27,7 @@ apt::source { 'mongodb-ubuntu':
'server' => 'hkp://keyserver.ubuntu.com:80',
},
include => {
'src' => true,
# 'src' => true,
'deb' => true,
}
} ->

20
roles/deploy.errbit/tasks/main.yml

@ -1,5 +1,15 @@
- name: GIT clone errbit repository
git: repo={{ githuburl }} dest={{ errbithome }}
git: repo={{ deploy_errbit_githuburl }}
dest={{ deploy_errbit_homedir }}
version=d533719
- name: MongoDB init script hack
lineinfile: dest=/etc/init/mongod.conf
regexp='pre-start script'
insertafter='^pre-start script'
line='pre-start script\n touch /var/run/mongod.pid && chmod 0777 /var/run/mongod.pid'
state=present
notify: start errbit
- name: Install Bundler
command: /usr/bin/gem2.1 install bundler
@ -29,14 +39,6 @@
- name: Copy the startup script
copy: src=starterrbit dest=/usr/local/bin/starterrbit owner=root group=root mode=0755
- name: MongoDB init script hack
lineinfile: dest=/etc/init/mongod.conf
regexp='pre-start script'
insertafter='^pre-start script'
line='pre-start script\n touch /var/run/mongod.pid && chmod 0777 /var/run/mongod.pid'
state=present
notify: start errbit
- name: Delete default Nginx config
file: path=/etc/nginx/sites-enabled/default state=absent

22
roles/deploy.refinery/tasks/main.yml

@ -8,10 +8,30 @@
command: /usr/bin/gem2.0 install refinerycms
- name: Deploy a new Refinery instance
command: /usr/local/bin/rails new rickrockstar -m http://refinerycms.com/t/3.0.3
command: /usr/local/bin/rails new refinery -m http://refinerycms.com/t/3.0.3
args:
chdir: /home/vagrant
- name: Configure errbit
template: src=errbit.j2 dest=/home/vagrant/refinery/config/initializers/errbit.rb
- name: Add Airbrake gem to the gemfile
blockinfile:
dest: /home/vagrant/refinery/Gemfile
insertafter: "source 'https://rubygems.org'"
content: "gem 'airbrake'"
- name: Aff Airbrake to environment.rb
blockinfile:
dest: /home/vagrant/refinery/config/environment.rb
insertafter: "# Initialize the Rails application."
content: "config.gem 'airbrake'"
- name: Bundle install airbrake
command: /usr/local/bin/bundle install
args:
chdir: /home/vagrant/refinery
- name: Copy the init script
copy: src=refinery-init dest=/etc/init/refinery.conf owner=root group=root mode=0755
notify: start refinery

6
roles/deploy.refinery/templates/errbit.j2

@ -0,0 +1,6 @@
Airbrake.configure do |config|
config.api_key = '{{ deploy_refinery_errbit_apikey}}'
config.host = 'errbit.homenet.petrovs.info'
config.port = 80
config.secure = config.port == 443
end
Loading…
Cancel
Save