From: Tom Hughes Date: Sat, 22 Mar 2025 11:16:52 +0000 (+0000) Subject: Add wiki test instance on muirdris X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/1503b63fc39c8c4c51b28d9656121da7116b23d7?ds=inline Add wiki test instance on muirdris --- diff --git a/roles/muirdris.rb b/roles/muirdris.rb index a2c578567..2f1b50e06 100644 --- a/roles/muirdris.rb +++ b/roles/muirdris.rb @@ -2,9 +2,6 @@ name "muirdris" description "Master role applied to muirdris" default_attributes( - :memcached => { - :memory_limit => 128 * 1024 - }, :networking => { :interfaces => { :internal => { @@ -32,10 +29,22 @@ default_attributes( } } } + }, + :wiki => { + :site_name => "test.wiki.openstreetmap.org", + :site_aliases => [], + :site_notice => "TEST INSTANCE: Use wiki.openstreetmap.org for real work" + } +) + +override_attributes( + :memcached => { + :memory_limit => 128 * 1024 } ) run_list( "role[equinix-dub-public]", - "role[gps-tile]" + "role[gps-tile]", + "role[wiki]" )