]> git.openstreetmap.org Git - chef.git/commitdiff
Deploy osmf-server-info to hardware.openstreetmap.org
authorTom Hughes <tom@compton.nu>
Sun, 20 Dec 2015 11:26:53 +0000 (11:26 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 20 Dec 2015 11:48:59 +0000 (11:48 +0000)
cookbooks/serverinfo/.foodcritic [new file with mode: 0644]
cookbooks/serverinfo/README.md [new file with mode: 0644]
cookbooks/serverinfo/metadata.rb [new file with mode: 0644]
cookbooks/serverinfo/recipes/default.rb [new file with mode: 0644]
cookbooks/serverinfo/templates/default/apache.erb [new file with mode: 0644]
roles/ironbelly.rb

diff --git a/cookbooks/serverinfo/.foodcritic b/cookbooks/serverinfo/.foodcritic
new file mode 100644 (file)
index 0000000..698ef4c
--- /dev/null
@@ -0,0 +1 @@
+~FC003
diff --git a/cookbooks/serverinfo/README.md b/cookbooks/serverinfo/README.md
new file mode 100644 (file)
index 0000000..2057391
--- /dev/null
@@ -0,0 +1,34 @@
+Cookbook
+========
+TODO: Enter the cookbook description here.
+
+e.g.
+This cookbook makes your favorite breakfast sandwich.
+
+Requirements
+------------
+TODO: List your cookbook requirements. Be sure to include any requirements this cookbook has on platforms, libraries, other cookbooks, packages, operating systems, etc.
+
+Attributes
+----------
+TODO: List you cookbook attributes here.
+
+Usage
+-----
+TODO: Write usage instructions for each cookbook.
+
+Contributing
+------------
+TODO: (optional) If this is a public cookbook, detail the process for contributing. If this is a private cookbook, remove this section.
+
+e.g.
+1. Fork the repository on Github
+2. Create a named feature branch (like `add_component_x`)
+3. Write your change
+4. Write tests for your change (if applicable)
+5. Run the tests, ensuring they all pass
+6. Submit a Pull Request using Github
+
+License and Authors
+-------------------
+Authors: TODO: List authors
diff --git a/cookbooks/serverinfo/metadata.rb b/cookbooks/serverinfo/metadata.rb
new file mode 100644 (file)
index 0000000..af6c1cf
--- /dev/null
@@ -0,0 +1,9 @@
+name              "serverinfo"
+maintainer        "OpenStreetMap Administrators"
+maintainer_email  "admins@openstreetmap.org"
+license           "Apache 2.0"
+description       "Configures server-info web site"
+long_description  IO.read(File.join(File.dirname(__FILE__), "README.md"))
+version           "1.0.0"
+depends           "apache"
+depends           "git"
diff --git a/cookbooks/serverinfo/recipes/default.rb b/cookbooks/serverinfo/recipes/default.rb
new file mode 100644 (file)
index 0000000..eb6ed49
--- /dev/null
@@ -0,0 +1,74 @@
+#
+# Cookbook Name:: serverinfo
+# Recipe:: default
+#
+# Copyright 2015, OpenStreetMap Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+include_recipe "apache::ssl"
+include_recipe "git"
+
+package "ruby2.0"
+package "ruby2.0-dev"
+
+gem_package "jekyll" do
+  gem_binary "gem2.0"
+end
+
+git "/srv/hardware.openstreetmap.org" do
+  action :sync
+  repository "git://github.com/gravitystorm/osmf-server-info.git"
+  user "root"
+  group "root"
+  notifies :run, "execute[/srv/hardware.openstreetmap.org]"
+end
+
+nodes = { :rows => search(:node, "*:*") }
+roles = { :rows => search(:role, "*:*") }
+
+file "/srv/hardware.openstreetmap.org/_data/nodes.json" do
+  content nodes.to_json
+  mode 0644
+  owner "root"
+  group "root"
+  notifies :run, "execute[/srv/hardware.openstreetmap.org]"
+end
+
+file "/srv/hardware.openstreetmap.org/_data/roles.json" do
+  content roles.to_json
+  mode 0644
+  owner "root"
+  group "root"
+  notifies :run, "execute[/srv/hardware.openstreetmap.org]"
+end
+
+directory "/srv/hardware.openstreetmap.org/_site" do
+  mode 0755
+  owner "nobody"
+  group "nogroup"
+end
+
+execute "/srv/hardware.openstreetmap.org" do
+  action :nothing
+  command "jekyll build"
+  cwd "/srv/hardware.openstreetmap.org"
+  user "nobody"
+  group "nogroup"
+end
+
+apache_site "hardware.openstreetmap.org" do
+  template "apache.erb"
+  directory "/srv/hardware.openstreetmap.org/_site"
+end
diff --git a/cookbooks/serverinfo/templates/default/apache.erb b/cookbooks/serverinfo/templates/default/apache.erb
new file mode 100644 (file)
index 0000000..1cb0fe4
--- /dev/null
@@ -0,0 +1,27 @@
+# DO NOT EDIT - This file is being maintained by Chef
+
+<VirtualHost *:80>
+   ServerName <%= @name %>
+   ServerAdmin webmaster@openstreetmap.org
+
+   CustomLog /var/log/apache2/<%= @name %>-access.log combined
+   ErrorLog /var/log/apache2/<%= @name %>-error.log
+
+   Redirect permanent / https://<%= @name %>/
+</VirtualHost>
+
+<VirtualHost *:443>
+   ServerName <%= @name %>
+   ServerAdmin webmaster@openstreetmap.org
+
+   CustomLog /var/log/apache2/<%= @name %>-access.log combined
+   ErrorLog /var/log/apache2/<%= @name %>-error.log
+
+   DocumentRoot <%= @directory %>
+
+   SSLEngine on
+</VirtualHost>
+
+<Directory <%= @directory %>>
+   Require all granted
+</Directory>
index 098568265d6a8eac79bc65202b6d0f236cf6bf4d..50e22907cf4073d76f8b1796e7b8e0d25e7af98c 100644 (file)
@@ -118,5 +118,6 @@ run_list(
   "recipe[rsyncd]",
   "recipe[openvpn]",
   "recipe[git::server]",
   "recipe[rsyncd]",
   "recipe[openvpn]",
   "recipe[git::server]",
-  "recipe[tilelog]"
+  "recipe[tilelog]",
+  "recipe[serverinfo]"
 )
 )