From 64b7659015e386386a9aeb11b1ad200ef820b8d9 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Sat, 14 Feb 2015 10:06:50 -0600 Subject: [PATCH] Convert existing roles into galaxy roles This change implements the blueprint to convert all roles and plays into a more generic setup, following upstream ansible best practices. Items Changed: * All tasks have tags. * All roles use namespaced variables. * All redundant tasks within a given play and role have been removed. * All of the repetitive plays have been removed in-favor of a more simplistic approach. This change duplicates code within the roles but ensures that the roles only ever run within their own scope. * All roles have been built using an ansible galaxy syntax. * The `*requirement.txt` files have been reformatted follow upstream Openstack practices. * Dynamically generated inventory is now more organized, this should assist anyone who may want or need to dive into the JSON blob that is created. In the inventory a properties field is used for items that customize containers within the inventory. * The environment map has been modified to support additional host groups to enable the seperation of infrastructure pieces. While the old infra_hosts group will still work this change allows for groups to be divided up into seperate chunks; eg: deployment of a swift only stack. * The LXC logic now exists within the plays. * etc/openstack_deploy/user_variables.yml has all password/token variables extracted into the separate file etc/openstack_deploy/user_secrets.yml in order to allow seperate security settings on that file. Items Excised: * All of the roles have had the LXC logic removed from within them which should allow roles to be consumed outside of the `os-ansible-deployment` reference architecture. Note: * the directory rpc_deployment still exists and is presently pointed at plays containing a deprecation warning instructing the user to move to the standard playbooks directory. * While all of the rackspace specific components and variables have been removed and or were refactored the repository still relies on an upstream mirror of Openstack built python files and container images. This upstream mirror is hosted at rackspace at "http://rpc-repo.rackspace.com" though this is not locked to and or tied to rackspace specific installations. This repository contains all of the needed code to create and/or clone your own mirror. DocImpact Co-Authored-By: Jesse Pretorius Closes-Bug: #1403676 Implements: blueprint galaxy-roles Change-Id: I03df3328b7655f0cc9e43ba83b02623d038d214e --- CONTRIBUTING.rst | 85 +++++++ LICENSE | 202 ++++++++++++++++ README.rst | 21 ++ defaults/main.yml | 147 ++++++++++++ files/swift_rings.py | 224 ++++++++++++++++++ handlers/main.yml | 55 +++++ meta/main.yml | 35 +++ tasks/main.yml | 43 ++++ tasks/swift_install.yml | 43 ++++ tasks/swift_key_create.yml | 74 ++++++ tasks/swift_key_distribute.yml | 33 +++ tasks/swift_key_setup.yml | 33 +++ tasks/swift_key_store.yml | 31 +++ tasks/swift_post_install.yml | 29 +++ tasks/swift_pre_install.yml | 85 +++++++ tasks/swift_proxy_hosts.yml | 31 +++ tasks/swift_rings.yml | 26 ++ tasks/swift_rings_build.yml | 76 ++++++ tasks/swift_rings_check.yml | 42 ++++ tasks/swift_rings_distribute.yml | 25 ++ tasks/swift_rings_md5sum.yml | 27 +++ tasks/swift_service_setup.yml | 138 +++++++++++ tasks/swift_storage_hosts.yml | 19 ++ tasks/swift_storage_hosts_account.yml | 77 ++++++ tasks/swift_storage_hosts_container.yml | 86 +++++++ tasks/swift_storage_hosts_object_server.yml | 77 ++++++ tasks/swift_storage_hosts_setup.yml | 67 ++++++ tasks/swift_upstart_common_init.yml | 46 ++++ templates/account-server-replicator.conf.j2 | 23 ++ templates/account-server.conf.j2 | 50 ++++ templates/container-server-replicator.conf.j2 | 22 ++ templates/container-server.conf.j2 | 52 ++++ templates/object-server-replicator.conf.j2 | 23 ++ templates/object-server.conf.j2 | 55 +++++ templates/proxy-server.conf.j2 | 116 +++++++++ templates/ring.contents.j2 | 96 ++++++++ templates/rsyncd.conf.j2 | 34 +++ templates/swift-dispersion.conf.j2 | 8 + templates/swift-rsyslog.conf.j2 | 24 ++ templates/swift-upstart-init.j2 | 39 +++ templates/swift.conf.j2 | 19 ++ 41 files changed, 2438 insertions(+) create mode 100644 CONTRIBUTING.rst create mode 100644 LICENSE create mode 100644 README.rst create mode 100644 defaults/main.yml create mode 100644 files/swift_rings.py create mode 100644 handlers/main.yml create mode 100644 meta/main.yml create mode 100644 tasks/main.yml create mode 100644 tasks/swift_install.yml create mode 100644 tasks/swift_key_create.yml create mode 100644 tasks/swift_key_distribute.yml create mode 100644 tasks/swift_key_setup.yml create mode 100644 tasks/swift_key_store.yml create mode 100644 tasks/swift_post_install.yml create mode 100644 tasks/swift_pre_install.yml create mode 100644 tasks/swift_proxy_hosts.yml create mode 100644 tasks/swift_rings.yml create mode 100644 tasks/swift_rings_build.yml create mode 100644 tasks/swift_rings_check.yml create mode 100644 tasks/swift_rings_distribute.yml create mode 100644 tasks/swift_rings_md5sum.yml create mode 100644 tasks/swift_service_setup.yml create mode 100644 tasks/swift_storage_hosts.yml create mode 100644 tasks/swift_storage_hosts_account.yml create mode 100644 tasks/swift_storage_hosts_container.yml create mode 100644 tasks/swift_storage_hosts_object_server.yml create mode 100644 tasks/swift_storage_hosts_setup.yml create mode 100644 tasks/swift_upstart_common_init.yml create mode 100644 templates/account-server-replicator.conf.j2 create mode 100644 templates/account-server.conf.j2 create mode 100644 templates/container-server-replicator.conf.j2 create mode 100644 templates/container-server.conf.j2 create mode 100644 templates/object-server-replicator.conf.j2 create mode 100644 templates/object-server.conf.j2 create mode 100644 templates/proxy-server.conf.j2 create mode 100644 templates/ring.contents.j2 create mode 100644 templates/rsyncd.conf.j2 create mode 100644 templates/swift-dispersion.conf.j2 create mode 100644 templates/swift-rsyslog.conf.j2 create mode 100644 templates/swift-upstart-init.j2 create mode 100644 templates/swift.conf.j2 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 00000000..0bc98d0e --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,85 @@ +OpenStack swift +############### +:tags: openstack, swift, cloud, ansible +:category: \*nix + +contributor guidelines +^^^^^^^^^^^^^^^^^^^^^^ + +Filing Bugs +----------- + +Bugs should be filed on Launchpad, not GitHub: "https://bugs.launchpad.net/openstack-ansible" + + +When submitting a bug, or working on a bug, please ensure the following criteria are met: + * The description clearly states or describes the original problem or root cause of the problem. + * Include historical information on how the problem was identified. + * Any relevant logs are included. + * The provided information should be totally self-contained. External access to web services/sites should not be needed. + * Steps to reproduce the problem if possible. + + +Submitting Code +--------------- + +Changes to the project should be submitted for review via the Gerrit tool, following +the workflow documented at: "http://docs.openstack.org/infra/manual/developers.html#development-workflow" + +Pull requests submitted through GitHub will be ignored and closed without regard. + + +Extra +----- + +Tags: + If it's a bug that needs fixing in a branch in addition to Master, add a '\-backport-potential' tag (eg ``juno-backport-potential``). There are predefined tags that will autocomplete. + +Status: + Please leave this alone, it should be New till someone triages the issue. + +Importance: + Should only be touched if it is a Blocker/Gating issue. If it is, please set to High, and only use Critical if you have found a bug that can take down whole infrastructures. + + +Style guide +----------- + +When creating tasks and other roles for use in Ansible please create then using the YAML dictionary format. + +Example YAML dictionary format: + .. code-block:: yaml + + - name: The name of the tasks + module_name: + thing1: "some-stuff" + thing2: "some-other-stuff" + tags: + - some-tag + - some-other-tag + + +Example **NOT** in YAML dictionary format: + .. code-block:: yaml + + - name: The name of the tasks + module_name: thing1="some-stuff" thing2="some-other-stuff" + tags: + - some-tag + - some-other-tag + + +Usage of the ">" and "|" operators should be limited to Ansible conditionals and command modules such as the ansible ``shell`` module. + + +Issues +------ + +When submitting an issue, or working on an issue please ensure the following criteria are met: + * The description clearly states or describes the original problem or root cause of the problem. + * Include historical information on how the problem was identified. + * Any relevant logs are included. + * If the issue is a bug that needs fixing in a branch other than Master, add the ‘backport potential’ tag TO THE ISSUE (not the PR). + * The provided information should be totally self-contained. External access to web services/sites should not be needed. + * If the issue is needed for a hotfix release, add the 'expedite' label. + * Steps to reproduce the problem if possible. diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..e06d2081 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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. + diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..cb24ccd9 --- /dev/null +++ b/README.rst @@ -0,0 +1,21 @@ +OpenStack swift +############### +:tags: openstack, swift, cloud, ansible +:category: \*nix + +Role to install swift and swift registry. + +This role will install the following: + * swift + +.. code-block:: yaml + + - name: Install swift server + hosts: swift_all + user: root + roles: + - { role: "os_swift", tags: [ "os-swift" ] } + vars: + external_lb_vip_address: 172.16.24.1 + internal_lb_vip_address: 192.168.0.1 + galera_address: "{{ internal_lb_vip_address }}" diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 00000000..10f397f1 --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,147 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +# Defines that the role will be deployed on a host machine +is_metal: true + +## Verbosity Options +debug: False +verbose: True + +## Swift User / Group +swift_system_user_name: swift +swift_system_group_name: swift +swift_system_shell: /bin/bash +swift_system_comment: swift system user +swift_system_home_folder: "/var/lib/{{ swift_system_user_name }}" + +## Auth token +swift_authtoken_active: True +swift_delay_auth_decision: true + +## Swift default ports +swift_proxy_port: "8080" +swift_object_port: "6000" +swift_container_port: "6001" +swift_account_port: "6002" + +## Swift service defaults +swift_service_name: swift +swift_service_user_name: swift +swift_service_tenant_name: service +swift_service_role_name: "admin" +swift_service_type: object-store +swift_service_proto: http +swift_service_description: "Object Storage Service" +swift_service_publicuri: "{{ swift_service_proto }}://{{ external_lb_vip_address }}:{{ swift_proxy_port }}" +swift_service_publicurl: "{{ swift_service_publicuri }}/v1/AUTH_%(tenant_id)s" +swift_service_adminuri: "{{ swift_service_proto }}://{{ internal_lb_vip_address }}:{{ swift_proxy_port }}" +swift_service_adminurl: "{{ swift_service_adminuri }}/v1/AUTH_%(tenant_id)s" +swift_service_internaluri: "{{ swift_service_proto }}://{{ internal_lb_vip_address }}:{{ swift_proxy_port }}" +swift_service_internalurl: "{{ swift_service_internaluri }}/v1/AUTH_%(tenant_id)s" +swift_service_region: RegionOne + +## Swift default variables +swift_dispersion_user: dispersion +swift_operator_role: swiftoperator +swift_default_replication_number: 3 +swift_default_min_part_hours: 1 +swift_default_host_zone: 0 +swift_default_host_region: 1 +swift_default_drive_weight: 100 + +## Swift Auth +swift_service_admin_tenant_name: "service" +swift_service_admin_username: "swift" + +swift_account_server_program_config_options: /etc/swift/account-server/account-server.conf +swift_account_server_replicator_program_config_options: /etc/swift/account-server/account-server-replicator.conf + +swift_container_server_program_config_options: /etc/swift/container-server/container-server.conf +swift_container_server_replicator_program_config_options: /etc/swift/container-server/container-server-replicator.conf + +swift_object_server_program_config_options: /etc/swift/object-server/object-server.conf +swift_object_server_replicator_program_config_options: /etc/swift/object-server/object-server-replicator.conf + +swift_proxy_server_program_config_options: /etc/swift/proxy-server/proxy-server.conf + +## General Swift configuration +# If ``swift_account_server_replicator_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_account_server_replicator_workers: 16 + +# If ``swift_server_replicator_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_server_replicator_workers: 16 + +# If ``swift_object_replicator_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_object_replicator_workers: 16 + +# If ``swift_account_server_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_account_server_workers: 16 + +# If ``swift_container_server_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_container_server_workers: 16 + +# If ``swift_object_server_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_object_server_workers: 16 + +# If ``swift_proxy_server_workers`` is unset the system will use half the number +# of available VCPUS to compute the number of api workers to use. +# swift_proxy_server_workers: 16 + +swift_pip_packages: + - dnspython + - ecdsa + - keystonemiddleware + - pycrypto + - python-cinderclient + - python-keystoneclient + - python-memcached + - python-swiftclient + - pywbem + - swift + +swift_apt_packages: + - curl + - gcc + - git-core + - libffi-dev + - openssh-server + - python-dev + - rsync + +swift_program_names: + - swift-proxy-server + - swift-object-server + - swift-object-auditor + - swift-object-replicator + - swift-object-updater + - swift-object-server-replicator + - swift-container-server + - swift-container-auditor + - swift-container-replicator + - swift-container-sync + - swift-container-updater + - swift-container-server-replicator + - swift-account-server + - swift-account-auditor + - swift-account-replicator + - swift-account-reaper + - swift-account-server-replicator diff --git a/files/swift_rings.py b/files/swift_rings.py new file mode 100644 index 00000000..44d19f11 --- /dev/null +++ b/files/swift_rings.py @@ -0,0 +1,224 @@ +#!/usr/bin/env python +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +from __future__ import print_function +from optparse import OptionParser +from os.path import exists +from swift.cli.ringbuilder import main as rb_main + +import pickle +import sys +import threading +import json +import copy + +USAGE = "usage: %prog -f " + +DEVICE_KEY = "%(ip)s:%(port)d/%(device)s" + +class RingValidationError(Exception): + pass + +def create_buildfile(build_file, part_power, repl, min_part_hours, + update=False, data=None, validate=False): + if update: + # build file exists, so lets just update the existing build file + if not data: + data = get_build_file_data(build_file) + if data is None: + data = {} + + if repl != data.get('replicas') and not validate: + run_and_wait(rb_main, ["swift-ring-builder", build_file, + "set_replicas", repl]) + if min_part_hours != data.get('min_part_hours') and not validate: + run_and_wait(rb_main, ["swift-ring-builder", build_file, + "set_min_part_hours", min_part_hours]) + if part_power != data.get('part_power'): + raise RingValidationError('Part power cannot be changed! ' + 'you must rebuild the ring if you need ' + 'to change it.\nRing part power: %s ' + 'Inventory part power: %s' + %(data.get('part_power'), part_power)) + + elif not validate: + run_and_wait(rb_main, ["swift-ring-builder", build_file, "create", + part_power, repl, min_part_hours]) + +def change_host_weight(build_file, host_search_str, weight): + run_and_wait(rb_main, ["swift-ring-builder", build_file, "set_weight", + host_search_str, weight]) + +def remove_host_from_ring(build_file, host): + run_and_wait(rb_main, ["swift-ring-builder", build_file, "remove", + host]) + +def update_host_in_ring(build_file, new_host, old_host, validate=False): + if new_host.get('zone', 0) != old_host['zone']: + devstr = DEVICE_KEY % new_host + raise RingValidationError('Cannot update zone on %s, this can only be ' + 'done when the drive is added' % (devstr)) + if new_host.get('region', 1) != old_host['region']: + devstr = DEVICE_KEY % new_host + raise RingValidationError('Cannot update region on %s, this can only ' + 'be done when the drive is added' % (devstr)) + + try: + r_ip = new_host.get('repl_ip', new_host['ip']) + r_port = new_host.get('repl_port', new_host['port']) + weight = new_host.get('weight') + if r_ip != old_host['replication_ip'] or \ + r_port != old_host['replication_port']: + host_d = {'r_ip': r_ip, 'r_port': r_port} + host_d.update(new_host) + host_str = "%(ip)s:%(port)dR%(r_ip)s:%(r_port)d/%(device)s" % host_d + if not validate: + run_and_wait(rb_main, ["swift-ring-builder", build_file, + "set_info", DEVICE_KEY % new_host, + host_str]) + except Exception as ex: + raise RingValidationError(ex) + + if weight != old_host['weight'] and not validate: + change_host_weight(build_file, DEVICE_KEY % new_host, weight) + + +def add_host_to_ring(build_file, host, validate=False): + host_str = "" + try: + if host.get('region') is not None: + host_str += 'r%(region)d' % host + host_str += "z%d" % (host.get('zone')) + host_str += "-%(ip)s:%(port)d" % host + if host.get('repl_ip'): + r_ip = host['repl_ip'] + r_port = host.get('repl_port', host['port']) + host_str += "R%s:%d" % (r_ip, r_port) + elif host.get('repl_port'): + r_ip = host.get('repl_ip', host['ip']) + r_port = host['repl_port'] + host_str += "R%s:%d" % (r_ip, r_port) + host_str += "/%(device)s" % host + weight = host.get('weight') + except Exception as ex: + raise RingValidationError(ex) + if not validate: + run_and_wait(rb_main, ["swift-ring-builder", build_file, 'add', + host_str, str(weight)]) + +def run_and_wait(func, *args): + t = threading.Thread(target=func, args=args) + t.start() + return t.join() + + +def has_section(conf, section): + return True if conf.get(section) else False + + +def check_section(conf, section): + if not has_section(conf, section): + print("Section %s doesn't exist" % (section)) + sys.exit(2) + + +def get_build_file_data(build_file): + build_file_data = None + if exists(build_file): + try: + with open(build_file) as bf_stream: + build_file_data = pickle.load(bf_stream) + except Exception as ex: + print("Error: failed to load build file '%s': %s" % (build_file, + ex)) + build_file_data = None + return build_file_data + + +def build_ring(build_name, repl, min_part_hours, part_power, hosts, validate=False): + # Create the build file + build_file = "%s.builder" % (build_name) + build_file_data = get_build_file_data(build_file) + + update = build_file_data is not None + create_buildfile(build_file, part_power, repl, min_part_hours, update, + data=build_file_data, validate=validate) + + old_hosts = {} + if update: + for i, dev in enumerate(build_file_data['devs']): + if dev is not None: + old_hosts[DEVICE_KEY % dev] = i + for host in hosts: + host_key = DEVICE_KEY % host + if host_key in old_hosts: + old_host = build_file_data['devs'][old_hosts[host_key]] + update_host_in_ring(build_file, host, old_host, + validate=validate) + old_hosts.pop(host_key) + else: + add_host_to_ring(build_file, host, validate=validate) + + if old_hosts and not validate: + # There are still old hosts, these hosts must've been removed + for host in old_hosts: + remove_host_from_ring(build_file, host) + + # Rebalance ring + if not validate: + if not hosts: + run_and_wait(rb_main, ["swift-ring-builder", build_file, "write_ring"]) + else: + run_and_wait(rb_main, ["swift-ring-builder", build_file, "rebalance"]) + +def main(setup): + # load the json file + try: + with open(setup) as json_stream: + _contents_file = json.load(json_stream) + except Exception as ex: + print("Failed to load json string %s" % (ex)) + return 1 + + hosts = _contents_file['drives'] + kargs = {'validate': True, 'hosts': hosts} + ring_call = [ _contents_file['builder_file'], + _contents_file['repl_number'], + _contents_file['min_part_hours'], + _contents_file['part_power']] + + try: + build_ring(*ring_call, **kargs) + except RingValidationError as ex: + print(ex) + return 2 + + # If the validation passes lets go ahead and build the rings. + kargs.pop('validate') + build_ring(*ring_call, **kargs) + + +if __name__ == "__main__": + parser = OptionParser(USAGE) + parser.add_option("-f", "--file", dest="setup", + help="Specify the swift ring contents file.", metavar="FILE") + + options, args = parser.parse_args(sys.argv[1:]) + if options.setup and not exists(options.setup): + print("Swift ring contents file not found or doesn't exist") + parser.print_help() + sys.exit(1) + + sys.exit(main(options.setup)) diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 00000000..30b7dea9 --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,55 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Restart swift services + service: + name: "{{ item }}" + state: "restarted" + pattern: "{{ item }}" + register: service_restart + with_items: swift_program_names + failed_when: false + +- name: Restart service + service: + name: "{{ item }}" + state: "restarted" + pattern: "{{ item }}" + enabled: "yes" + when: item is defined + +- name: Restart rsyslog + service: + name: "rsyslog" + state: "restarted" + +- name: Restart rsync service + service: + name: "rsync" + state: "stopped" + pattern: "rsync" + register: service_restart + failed_when: "'msg' in service_restart and 'FAIL' in service_restart.msg|upper" + register: service_restart + until: add_service|success + retries: 3 + delay: 2 + notify: Ensure rsync service running + +- name: Ensure rsync service running + service: + name: "rsync" + state: "started" + pattern: "rsync" diff --git a/meta/main.yml b/meta/main.yml new file mode 100644 index 00000000..ee9aeac4 --- /dev/null +++ b/meta/main.yml @@ -0,0 +1,35 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +galaxy_info: + author: rcbops + description: Installation and setup of swift + company: Rackspace + license: Apache2 + min_ansible_version: 1.6.6 + platforms: + - name: Ubuntu + versions: + - trusty + categories: + - cloud + - python + - swift + - development + - openstack +dependencies: + - rsyslog_setup + - openstack_openrc + - pip_lock_down diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 00000000..fec07482 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,43 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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: swift_pre_install.yml +- include: swift_install.yml +- include: swift_post_install.yml + +- include: swift_key_setup.yml + tags: + - swift-key + - swift-key-distribute + +- include: swift_rings.yml + tags: + - swift-rings + +- include: swift_storage_hosts.yml + when: > + inventory_hostname in groups['swift_hosts'] + tags: + - swift-storage-hosts + +- include: swift_proxy_hosts.yml + when: > + inventory_hostname in groups['swift_proxy'] + tags: + - swift-storage-hosts + +- include: swift_service_setup.yml + when: > + inventory_hostname == groups['swift_all'][0] diff --git a/tasks/swift_install.yml b/tasks/swift_install.yml new file mode 100644 index 00000000..5d6c683e --- /dev/null +++ b/tasks/swift_install.yml @@ -0,0 +1,43 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Install apt packages + apt: + pkg: "{{ item }}" + state: latest + update_cache: yes + cache_valid_time: 600 + register: install_packages + until: install_packages|success + retries: 5 + delay: 2 + with_items: swift_apt_packages + tags: + - swift-install + - swift-apt-packages + +- name: Install pip packages + pip: + name: "{{ item }}" + state: present + register: install_packages + until: install_packages|success + retries: 5 + delay: 2 + with_items: + - "{{ swift_pip_packages }}" + tags: + - swift-install + - swift-pip-packages diff --git a/tasks/swift_key_create.yml b/tasks/swift_key_create.yml new file mode 100644 index 00000000..fd8cf342 --- /dev/null +++ b/tasks/swift_key_create.yml @@ -0,0 +1,74 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Remove old key file(s) if found + file: + path: "{{ item }}" + state: "absent" + with_items: + - "{{ swift_system_home_folder }}/.ssh/authorized_keys" + - "{{ swift_system_home_folder }}/.ssh/id_rsa" + - "{{ swift_system_home_folder }}/.ssh/id_rsa.pub" + tags: + - swift-key + - swift-key-create + +- name: Create the swift SSH key if it doesnt exist + command: | + ssh-keygen -f {{ swift_system_home_folder }}/.ssh/id_rsa -t rsa -q -N "" + sudo: yes + sudo_user: "{{ swift_system_user_name }}" + tags: + - swift-key + - swift-key-create + +- name: Create empty 'authorized_keys' file + file: + path: "{{ swift_system_home_folder }}/.ssh/authorized_keys" + state: "touch" + tags: + - swift-key + - swift-key-create + +- name: Change permissions on the generated keys + file: + path: "{{ item.path }}" + group: "{{ swift_system_user_name }}" + owner: "{{ swift_system_user_name }}" + mode: "{{ item.mode }}" + with_items: + - { path: "{{ swift_system_home_folder }}/.ssh/authorized_keys", mode: "0700" } + - { path: "{{ swift_system_home_folder }}/.ssh/id_rsa", mode: "0600" } + - { path: "{{ swift_system_home_folder }}/.ssh/id_rsa.pub", mode: "0644" } + tags: + - swift-key + - swift-key-create + +- name: Get public key contents + command: | + cat {{ swift_system_home_folder }}/.ssh/id_rsa.pub + register: swift_pub + changed_when: false + tags: + - swift-key + - swift-key-create + +- name: Build authorized keys + shell: | + echo "{{ swift_pub.stdout }}" | tee -a {{ swift_system_home_folder }}/.ssh/authorized_keys + delegate_to: "{{ groups['swift_hosts'][0] }}" + tags: + - swift-key + - swift-key-create diff --git a/tasks/swift_key_distribute.yml b/tasks/swift_key_distribute.yml new file mode 100644 index 00000000..8fca6f8a --- /dev/null +++ b/tasks/swift_key_distribute.yml @@ -0,0 +1,33 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Retrieve authorized keys + memcached: + name: "{{ item.name }}" + file_path: "{{ item.src }}" + state: "retrieve" + file_mode: "{{ item.file_mode }}" + dir_mode: "{{ item.dir_mode }}" + server: "{{ memcached_servers }}" + encrypt_string: "{{ memcached_encryption_key }}" + with_items: + - { src: "{{ swift_system_home_folder }}/.ssh/authorized_keys", name: "authorized_keys", file_mode: "0640", dir_mode: "0750" } + register: memcache_keys + until: memcache_keys|success + retries: 5 + delay: 2 + tags: + - swift-key + - swift-key-distribute diff --git a/tasks/swift_key_setup.yml b/tasks/swift_key_setup.yml new file mode 100644 index 00000000..376d40ca --- /dev/null +++ b/tasks/swift_key_setup.yml @@ -0,0 +1,33 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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: swift_key_create.yml + tags: + - swift-key + - swift-key-create + +- include: swift_key_store.yml + when: > + inventory_hostname == groups['swift_hosts'][0] + tags: + - swift-key + - swift-key-store + +- include: swift_key_distribute.yml + when: > + inventory_hostname != groups['swift_hosts'][0] + tags: + - swift-key + - swift-key-distribute diff --git a/tasks/swift_key_store.yml b/tasks/swift_key_store.yml new file mode 100644 index 00000000..6f847c87 --- /dev/null +++ b/tasks/swift_key_store.yml @@ -0,0 +1,31 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Distribute authorized keys for cluster consumption + memcached: + name: "{{ item.name }}" + file_path: "{{ item.src }}" + state: "present" + server: "{{ memcached_servers }}" + encrypt_string: "{{ memcached_encryption_key }}" + with_items: + - { src: "{{ swift_system_home_folder }}/.ssh/authorized_keys", name: "authorized_keys" } + register: memcache_keys + until: memcache_keys|success + retries: 5 + delay: 2 + tags: + - swift-key + - swift-key-store diff --git a/tasks/swift_post_install.yml b/tasks/swift_post_install.yml new file mode 100644 index 00000000..e940d83d --- /dev/null +++ b/tasks/swift_post_install.yml @@ -0,0 +1,29 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Copy swift config + template: + src: "{{ item.src }}" + dest: "{{ item.dest }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + with_items: + - { src: "swift.conf.j2", dest: "/etc/swift/swift.conf" } + - { src: "swift-rsyslog.conf.j2", dest: "/etc/rsyslog.d/49-swift.conf" } + - { src: "swift-dispersion.conf.j2", dest: "/etc/swift/dispersion.conf" } + notify: Restart swift services + tags: + - swift-config + - swift-post-install diff --git a/tasks/swift_pre_install.yml b/tasks/swift_pre_install.yml new file mode 100644 index 00000000..e6681cf7 --- /dev/null +++ b/tasks/swift_pre_install.yml @@ -0,0 +1,85 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: create the system group + group: + name: "{{ swift_system_group_name }}" + state: "present" + system: "yes" + tags: + - swift-group + +- name: Create the swift system user + user: + name: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + comment: "{{ swift_system_comment }}" + shell: "{{ swift_system_shell }}" + system: "yes" + createhome: "yes" + home: "{{ swift_system_home_folder }}" + tags: + - swift-user + +- name: Create swift dir + file: + path: "{{ item.path }}" + state: directory + owner: "{{ item.owner|default(swift_system_user_name) }}" + group: "{{ item.group|default(swift_system_group_name) }}" + with_items: + - { path: "/etc/sudoers.d", mode: "0750", owner: "root", group: "root" } + - { path: "/etc/swift" } + - { path: "/etc/swift/account-server" } + - { path: "/etc/swift/container-server" } + - { path: "/etc/swift/object-server" } + - { path: "/etc/swift/proxy-server" } + - { path: "/etc/swift/scripts" } + - { path: "/etc/swift/rings" } + - { path: "/openstack/log/{{ inventory_hostname }}", owner: "syslog", group: "syslog" } + - { path: "/var/cache/swift" } + - { path: "/var/lock/swift" } + - { path: "{{ swift_system_home_folder }}" } + tags: + - swift-dirs + +- name: Test for log directory or link + shell: | + if [ -h "/var/log/swift" ]; then + chown -h {{ swift_system_user_name }}:{{ swift_system_group_name }} "/var/log/swift" + chown -R {{ swift_system_user_name }}:{{ swift_system_group_name }} "$(readlink /var/log/swift)" + else + exit 1 + fi + register: log_dir + failed_when: false + changed_when: log_dir.rc != 0 + tags: + - swift-dirs + - swift-logs + +- name: Create swift log dir + file: + path: "{{ item.path }}" + state: directory + owner: "{{ item.owner|default(swift_system_user_name) }}" + group: "{{ item.group|default(swift_system_group_name) }}" + mode: "{{ item.mode|default('0755') }}" + with_items: + - { path: "/var/log/swift", owner: "syslog", group: "syslog" } + when: log_dir.rc != 0 + tags: + - swift-dirs + - swift-logs diff --git a/tasks/swift_proxy_hosts.yml b/tasks/swift_proxy_hosts.yml new file mode 100644 index 00000000..083db230 --- /dev/null +++ b/tasks/swift_proxy_hosts.yml @@ -0,0 +1,31 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: swift proxy server configuration + template: + src: "proxy-server.conf.j2" + dest: "/etc/swift/proxy-server/proxy-server.conf" + owner: "{{ swift_system_user_name }}" + mode: "0644" + notify: Restart swift services + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-proxy-server" + program_config_options: "{{ swift_proxy_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" diff --git a/tasks/swift_rings.yml b/tasks/swift_rings.yml new file mode 100644 index 00000000..347b7a5d --- /dev/null +++ b/tasks/swift_rings.yml @@ -0,0 +1,26 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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: swift_rings_md5sum.yml + +- include: swift_rings_check.yml + when: > + inventory_hostname == groups['swift_hosts'][0] + +- include: swift_rings_build.yml + when: > + inventory_hostname == groups['swift_hosts'][0] + +- include: swift_rings_distribute.yml diff --git a/tasks/swift_rings_build.yml b/tasks/swift_rings_build.yml new file mode 100644 index 00000000..a4f0ed03 --- /dev/null +++ b/tasks/swift_rings_build.yml @@ -0,0 +1,76 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: "Copy the swift_rings.py file" + copy: + src: swift_rings.py + dest: "/etc/swift/scripts/swift_rings.py" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + mode: "0700" + tags: + - swift-rings + - swift-rings-scripts + +- name: "Build ring-contents files" + template: + src: ring.contents.j2 + dest: "/etc/swift/scripts/{{ item.type }}.contents" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + with_items: + - { item: "{{ swift.account }}", port: "{{ swift_account_port }}", type: "account" } + - { item: "{{ swift.container }}", port: "{{ swift_container_port}}", type: "container" } + tags: + - swift-rings + - swift-rings-contents + +- name: "Build ring-contents files for storage policies" + template: + src: ring.contents.j2 + dest: "/etc/swift/scripts/object-{{ item[0].policy.index }}.contents" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + with_nested: + - "{{ swift.storage_policies }}" + - [{ type: 'object', port: "{{ swift_object_port }}" }] + tags: + - swift-rings + - swift-rings-contents + +- name: "build rings for account/container from contents files" + command: "/usr/bin/python /etc/swift/scripts/swift_rings.py -f /etc/swift/scripts/{{ item }}.contents" + with_items: + - account + - container + sudo: yes + sudo_user: "{{ swift_system_user_name }}" + args: + chdir: /etc/swift/rings/ + tags: + - swift-rings + - swift-rings-build + +- name: "build rings for storage policies from contents files" + command: "/usr/bin/python /etc/swift/scripts/swift_rings.py -f /etc/swift/scripts/object-{{ item.policy.index }}.contents" + with_items: + - "{{ swift.storage_policies }}" + sudo: yes + sudo_user: "{{ swift_system_user_name }}" + args: + chdir: /etc/swift/rings/ + tags: + - swift-rings + - swift-rings-build diff --git a/tasks/swift_rings_check.yml b/tasks/swift_rings_check.yml new file mode 100644 index 00000000..9caec814 --- /dev/null +++ b/tasks/swift_rings_check.yml @@ -0,0 +1,42 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Get md5sum of local builder files + shell: | + cat /etc/swift/rings/*.builder 2>/dev/null | md5sum | cut -d " " -f1 + register: md5sum + tags: + - swift-ring-check + +- name: Get empty md5sum + shell: | + echo -n | md5sum | cut -d " " -f1 + register: empty_md5sum + tags: + - swift-ring-check + +# Fail if the remote hosts builder files is not empty AND +# does not match the md5sum of the local host. +- name: Verify md5sum of builder files + fail: + msg: > + "The builder files on the remote host {{ item }} do not match the {{ md5sum.stdout }}, + and are not empty on the remote host" + when: > + ("{{ hostvars[item]['builder_md5sum'] }}" != "{{ empty_md5sum.stdout }}") and + ("{{ hostvars[item]['builder_md5sum'] }}" != "{{ md5sum.stdout }}") + with_items: groups['swift_all'] + tags: + - swift-ring-check diff --git a/tasks/swift_rings_distribute.yml b/tasks/swift_rings_distribute.yml new file mode 100644 index 00000000..a4d9b070 --- /dev/null +++ b/tasks/swift_rings_distribute.yml @@ -0,0 +1,25 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: "Get swift rings" + shell: | + rsync -e 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \ + -avz \ + {{ swift_system_user_name }}@{{ hostvars[groups['swift_hosts'][0]]['ansible_ssh_host'] }}:/etc/swift/rings/ \ + /etc/swift/ + sudo: yes + sudo_user: "{{ swift_system_user_name }}" + tags: + - swift-get-rings \ No newline at end of file diff --git a/tasks/swift_rings_md5sum.yml b/tasks/swift_rings_md5sum.yml new file mode 100644 index 00000000..10ac699e --- /dev/null +++ b/tasks/swift_rings_md5sum.yml @@ -0,0 +1,27 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Get md5sum of builder files + shell: | + cat /etc/swift/*.builder 2>/dev/null | md5sum | cut -d " " -f1 + register: md5sum + tags: + - swift-md5sum + +- name: Register a fact for the md5sum + set_fact: + builder_md5sum: "{{ md5sum.stdout }}" + tags: + - swift-md5sum diff --git a/tasks/swift_service_setup.yml b/tasks/swift_service_setup.yml new file mode 100644 index 00000000..ed68c942 --- /dev/null +++ b/tasks/swift_service_setup.yml @@ -0,0 +1,138 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +# Create a service +- name: Ensure swift service + keystone: + command: "ensure_service" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + service_name: "{{ swift_service_name }}" + service_type: "{{ swift_service_type }}" + description: "{{ swift_service_description }}" + register: add_service + until: add_service|success + retries: 5 + delay: 2 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +# Create an admin user +- name: Ensure swift user + keystone: + command: "ensure_user" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + user_name: "{{ swift_service_user_name }}" + tenant_name: "{{ swift_service_tenant_name }}" + password: "{{ swift_service_password }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +# Add a role to the user +- name: Ensure swift user to admin role + keystone: + command: "ensure_user_role" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + user_name: "{{ swift_service_user_name }}" + tenant_name: "{{ swift_service_tenant_name }}" + role_name: "{{ swift_service_role_name }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +- name: Ensure swiftoperator role + keystone: + command: "ensure_role" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + role_name: "{{ swift_operator_role }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +- name: "Create keystone user for swift-dispersion" + keystone: + command: "ensure_user" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + user_name: "{{ swift_dispersion_user }}" + tenant_name: "{{ swift_service_tenant_name }}" + password: "{{ swift_dispersion_password }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +- name: "Add swiftoperator role to swift-dispersion user" + keystone: + command: "ensure_user_role" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + user_name: "{{ swift_dispersion_user }}" + tenant_name: "{{ swift_service_tenant_name }}" + role_name: "{{ swift_operator_role }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup + +# Create an endpoint +- name: Ensure swift endpoint + keystone: + command: "ensure_endpoint" + token: "{{ keystone_auth_admin_token }}" + endpoint: "{{ keystone_service_adminurl }}" + region_name: "{{ swift_service_region }}" + service_name: "{{ swift_service_name }}" + service_type: "{{ swift_service_type }}" + publicurl: "{{ swift_service_publicurl }}" + adminurl: "{{ swift_service_internalurl }}" + internalurl: "{{ swift_service_adminurl }}" + register: add_service + until: add_service|success + retries: 5 + delay: 10 + tags: + - swift-api-setup + - swift-service-add + - swift-setup diff --git a/tasks/swift_storage_hosts.yml b/tasks/swift_storage_hosts.yml new file mode 100644 index 00000000..8e34b157 --- /dev/null +++ b/tasks/swift_storage_hosts.yml @@ -0,0 +1,19 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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: swift_storage_hosts_setup.yml +- include: swift_storage_hosts_object_server.yml +- include: swift_storage_hosts_account.yml +- include: swift_storage_hosts_container.yml diff --git a/tasks/swift_storage_hosts_account.yml b/tasks/swift_storage_hosts_account.yml new file mode 100644 index 00000000..33e56fa3 --- /dev/null +++ b/tasks/swift_storage_hosts_account.yml @@ -0,0 +1,77 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: "Swift account server config with replication" + template: + src: "{{ item.src }}" + dest: "{{ item.dest }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + mode: "0644" + with_items: + - { src: "account-server.conf.j2", dest: "/etc/swift/account-server/account-server.conf" } + - { src: "account-server-replicator.conf.j2", dest: "/etc/swift/account-server/account-server-replicator.conf" } + notify: Restart swift services + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-account-server-replicator" + program_config_options: "{{ swift_account_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-account-replicator" + program_config_options: "{{ swift_account_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-account-server" + program_config_options: "{{ swift_account_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-account-auditor" + program_config_options: "{{ swift_account_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-account-reaper" + program_config_options: "{{ swift_account_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" diff --git a/tasks/swift_storage_hosts_container.yml b/tasks/swift_storage_hosts_container.yml new file mode 100644 index 00000000..9e315b18 --- /dev/null +++ b/tasks/swift_storage_hosts_container.yml @@ -0,0 +1,86 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: "Swift container server configuration" + template: + src: "{{ item.src }}" + dest: "{{ item.dest }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + mode: "0644" + with_items: + - { src: "container-server.conf.j2", dest: "/etc/swift/container-server/container-server.conf" } + - { src: "container-server-replicator.conf.j2", dest: "/etc/swift/container-server/container-server-replicator.conf" } + notify: Restart swift services + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-server-replicator" + program_config_options: "{{ swift_container_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-replicator" + program_config_options: "{{ swift_container_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-server" + program_config_options: "{{ swift_container_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-auditor" + program_config_options: "{{ swift_container_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-sync" + program_config_options: "{{ swift_container_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-container-updater" + program_config_options: "{{ swift_container_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" diff --git a/tasks/swift_storage_hosts_object_server.yml b/tasks/swift_storage_hosts_object_server.yml new file mode 100644 index 00000000..6a19c461 --- /dev/null +++ b/tasks/swift_storage_hosts_object_server.yml @@ -0,0 +1,77 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: "Swift object server configuration" + template: + src: "{{ item.src }}" + dest: "{{ item.dest }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + mode: "0644" + with_items: + - { src: "object-server.conf.j2", dest: "/etc/swift/object-server/object-server.conf" } + - { src: "object-server-replicator.conf.j2", dest: "/etc/swift/object-server/object-server-replicator.conf" } + notify: Restart swift services + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-object-server-replicator" + program_config_options: "{{ swift_object_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-object-replicator" + program_config_options: "{{ swift_object_server_replicator_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + when: > + swift.replication_network is defined and + swift.replication_network != swift.storage_network + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-object-server" + program_config_options: "{{ swift_object_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-object-auditor" + program_config_options: "{{ swift_object_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" + +- include: swift_upstart_common_init.yml + vars: + program_name: "swift-object-updater" + program_config_options: "{{ swift_object_server_program_config_options }}" + service_name: "{{ swift_service_name }}" + system_user: "{{ swift_system_user_name }}" + system_group: "{{ swift_system_group_name }}" + service_home: "{{ swift_system_home_folder }}" diff --git a/tasks/swift_storage_hosts_setup.yml b/tasks/swift_storage_hosts_setup.yml new file mode 100644 index 00000000..f7a5d846 --- /dev/null +++ b/tasks/swift_storage_hosts_setup.yml @@ -0,0 +1,67 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +# We need swift_vars to exist for the "swift_vars.drives is defined check" to work +- name: "Set swift_vars if undefined" + set_fact: + swift_vars: "{}" + when: swift_vars is not defined + +- name: "Put /etc/rsyncd.conf in place" + template: + src: "rsyncd.conf.j2" + dest: "/etc/rsyncd.conf" + owner: "root" + group: "root" + mode: "0644" + notify: Restart rsync service + +- name: "Enable rsync in defaults" + lineinfile: + dest: "/etc/default/rsync" + line: "RSYNC_ENABLE=true" + regexp: "^RSYNC_ENABLE*" + notify: Restart rsync service + +# We need the location of swift-recon-cron +- name: "Get location of swift-recon-cron" + shell: which swift-recon-cron + register: recon_cron_path + +- name: "Setup swift-recon-cron cron job" + cron: + name: "swift-recon-cron run" + minute: "*/5" + user: "swift" + job: "{{ recon_cron_path.stdout }} /etc/swift/object-server/object-server.conf" + cron_file: "swift_recon_cron" + +- name: "Set ownership on mounted drives" + file: + dest: "{{ swift_vars.mount_point | default(swift.mount_point) }}/{{ item.name }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + state: "directory" + with_items: swift_vars.drives + when: swift_vars.drives is defined + +- name: "Set ownership on default mounted drives" + file: + dest: "{{ swift_vars.mount_point | default(swift.mount_point) }}/{{ item.name }}" + owner: "{{ swift_system_user_name }}" + group: "{{ swift_system_group_name }}" + state: "directory" + with_items: swift.drives + when: swift_vars.drives is not defined diff --git a/tasks/swift_upstart_common_init.yml b/tasks/swift_upstart_common_init.yml new file mode 100644 index 00000000..57969fbf --- /dev/null +++ b/tasks/swift_upstart_common_init.yml @@ -0,0 +1,46 @@ +--- +# Copyright 2014, Rackspace US, Inc. +# +# 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. + +- name: Place the init script + template: + src: "swift-upstart-init.j2" + dest: "/etc/init/{{ program_name }}.conf" + mode: "0644" + owner: "root" + group: "root" + notify: + - Restart swift services + tags: + - upstart-init + - swift-init + +- name: Reload init scripts + shell: | + initctl reload-configuration + notify: + - Restart swift services + tags: + - upstart-init + - swift-init + +- name: Load service + service: + name: "{{ program_name }}" + enabled: "yes" + notify: + - Restart swift services + tags: + - upstart-init + - swift-init diff --git a/templates/account-server-replicator.conf.j2 b/templates/account-server-replicator.conf.j2 new file mode 100644 index 00000000..5afdb9a3 --- /dev/null +++ b/templates/account-server-replicator.conf.j2 @@ -0,0 +1,23 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +[DEFAULT] +{% set repl_bridge = 'ansible_' + swift.replication_network|replace('-', '_') %} +bind_ip = {{ hostvars[inventory_hostname][repl_bridge]['ipv4']['address'] }} +bind_port = {{ swift_account_port }} +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +workers = {{ swift_account_server_replicator_workers | default(api_threads) }} +log_facility = LOG_LOCAL2 + +[pipeline:main] +pipeline = account-server + +[app:account-server] +use = egg:swift#account +replication_server = True + +[account-replicator] +log_facility = LOG_LOCAL2 +per_diff = 10000 diff --git a/templates/account-server.conf.j2 b/templates/account-server.conf.j2 new file mode 100644 index 00000000..49f8c985 --- /dev/null +++ b/templates/account-server.conf.j2 @@ -0,0 +1,50 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +{% if is_metal == true or is_metal == "True" and swift.storage_network is defined %} +{% set storage_bridge = 'ansible_' + swift.storage_network|replace('-', '_') %} +{% set swift_storage_address = hostvars[inventory_hostname][storage_bridge]['ipv4']['address'] %} +{% endif %} + +[DEFAULT] +bind_ip = {{ swift_storage_address | default(ansible_ssh_host) }} +bind_port = {{ swift_account_port }} +workers = {{ swift_account_server_workers | default(api_threads) }} + +user = {{ swift_system_user_name }} +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +log_facility = LOG_LOCAL2 + +[pipeline:main] +pipeline = healthcheck recon account-server + +[app:account-server] +use = egg:swift#account +log_facility = LOG_LOCAL2 + +[filter:healthcheck] +use = egg:swift#healthcheck + +[filter:recon] +use = egg:swift#recon +log_facility = LOG_LOCAL2 +recon_cache_path = /var/cache/swift +recon_lock_path = /var/lock/swift + +{% if swift.replication_network is not defined %} +[account-replicator] +log_facility = LOG_LOCAL2 +per_diff = 10000 +{% endif %} + +[account-auditor] +log_facility = LOG_LOCAL2 + +[account-reaper] +log_facility = LOG_LOCAL2 +delay_reaping = 604800 + +[filter:xprofile] +use = egg:swift#xprofile diff --git a/templates/container-server-replicator.conf.j2 b/templates/container-server-replicator.conf.j2 new file mode 100644 index 00000000..6c7dae39 --- /dev/null +++ b/templates/container-server-replicator.conf.j2 @@ -0,0 +1,22 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +[DEFAULT] +{% set repl_bridge = 'ansible_' + swift.replication_network|replace('-', '_') %} +bind_ip = {{ hostvars[inventory_hostname][repl_bridge]['ipv4']['address'] }} +bind_port = {{ swift_container_port }} +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +workers = {{ swift_server_replicator_workers | default(api_threads) }} +log_facility = LOG_LOCAL3 + +[pipeline:main] +pipeline = container-server + +[app:container-server] +use = egg:swift#container +replication_server = True + +[container-replicator] +log_facility = LOG_LOCAL3 diff --git a/templates/container-server.conf.j2 b/templates/container-server.conf.j2 new file mode 100644 index 00000000..dd0621b9 --- /dev/null +++ b/templates/container-server.conf.j2 @@ -0,0 +1,52 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +{% if is_metal == true or is_metal == "True" and swift.storage_network is defined %} +{% set storage_bridge = 'ansible_' + swift.storage_network|replace('-', '_') %} +{% set swift_storage_address = hostvars[inventory_hostname][storage_bridge]['ipv4']['address'] %} +{% endif %} + +[DEFAULT] +bind_ip = {{ swift_storage_address | default(ansible_ssh_host) }} +bind_port = {{ swift_container_port }} +workers = {{ swift_container_server_workers | default(api_threads) }} + +user = {{ swift_system_user_name }} +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +log_facility = LOG_LOCAL3 + +[pipeline:main] +pipeline = healthcheck recon container-server + +[app:container-server] +use = egg:swift#container +log_facility = LOG_LOCAL3 + +[filter:healthcheck] +use = egg:swift#healthcheck + +[filter:recon] +use = egg:swift#recon +log_facility = LOG_LOCAL3 +recon_cache_path = /var/cache/swift +recon_lock_path = /var/lock/swift + +{% if swift.replication_network is not defined %} +[container-replicator] +log_facility = LOG_LOCAL3 +{% endif %} + +[container-updater] +log_facility = LOG_LOCAL3 +node_timeout = 15 +conn_timeout = 5 + +[container-auditor] +log_facility = LOG_LOCAL3 + +[container-sync] + +[filter:xprofile] +use = egg:swift#xprofile diff --git a/templates/object-server-replicator.conf.j2 b/templates/object-server-replicator.conf.j2 new file mode 100644 index 00000000..ef9ead22 --- /dev/null +++ b/templates/object-server-replicator.conf.j2 @@ -0,0 +1,23 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +[DEFAULT] +{% set repl_bridge = 'ansible_' + swift.replication_network|replace('-', '_') %} +bind_ip = {{ hostvars[inventory_hostname][repl_bridge]['ipv4']['address'] }} +bind_port = {{ swift_object_port }} +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +workers = {{ swift_object_replicator_workers | default(api_threads) }} +log_facility = LOG_LOCAL4 + +[pipeline:main] +pipeline = object-server + +[app:object-server] +use = egg:swift#object +replication_server = True + +[object-replicator] +log_facility = LOG_LOCAL4 +concurrency = 6 diff --git a/templates/object-server.conf.j2 b/templates/object-server.conf.j2 new file mode 100644 index 00000000..2cdac803 --- /dev/null +++ b/templates/object-server.conf.j2 @@ -0,0 +1,55 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +{% if is_metal == true or is_metal == "True" and swift.storage_network is defined %} +{% set storage_bridge = 'ansible_' + swift.storage_network|replace('-', '_') %} +{% set swift_storage_address = hostvars[inventory_hostname][storage_bridge]['ipv4']['address'] %} +{% endif %} + +[DEFAULT] +bind_ip = {{ swift_storage_address | default(ansible_ssh_host) }} +bind_port = {{ swift_object_port }} +workers = {{ swift_object_server_workers | default(api_threads) }} + +user = {{ swift_system_user_name }} +swift_dir = /etc/swift +devices = {{ swift_vars.mount_point | default(swift.mount_point) }} +log_facility = LOG_LOCAL4 + +[pipeline:main] +pipeline = healthcheck recon object-server + +[app:object-server] +use = egg:swift#object +log_facility = LOG_LOCAL4 +mb_per_sync = 64 + +[filter:healthcheck] +use = egg:swift#healthcheck + +[filter:recon] +use = egg:swift#recon +log_facility = LOG_LOCAL4 +recon_cache_path = /var/cache/swift +recon_lock_path = /var/lock/swift + +{% if swift.replication_network is not defined %} +[object-replicator] +log_facility = LOG_LOCAL4 +concurrency = 6 +{% endif %} + +[object-updater] +log_facility = LOG_LOCAL4 +concurrency = 3 +concurrency = 3 +node_timeout = 60 +conn_timeout = 5 + +[object-auditor] +log_facility = LOG_LOCAL4 + +[filter:xprofile] +use = egg:swift#xprofile diff --git a/templates/proxy-server.conf.j2 b/templates/proxy-server.conf.j2 new file mode 100644 index 00000000..9fd3a614 --- /dev/null +++ b/templates/proxy-server.conf.j2 @@ -0,0 +1,116 @@ +# {{ ansible_managed }} + +{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %} +{% set api_threads = _api_threads if _api_threads > 0 else 1 %} + +[DEFAULT] +bind_ip = 0.0.0.0 +bind_port = {{ swift_proxy_port }} +workers = {{ swift_proxy_server_workers | default(api_threads) }} + +user = {{ swift_system_user_name }} +log_facility = LOG_LOCAL1 + +[pipeline:main] +{% if swift_authtoken_active %} +pipeline = catch_errors gatekeeper healthcheck proxy-logging cache container_sync bulk tempurl ratelimit authtoken keystoneauth container-quotas account-quotas slo dlo proxy-logging proxy-server +{% else %} +pipeline = catch_errors gatekeeper healthcheck proxy-logging cache container_sync bulk tempurl ratelimit tempauth container-quotas account-quotas slo dlo proxy-logging proxy-server +{% endif %} +[app:proxy-server] +use = egg:swift#proxy +log_facility = LOG_LOCAL1 +node_timeout = 60 +conn_timeout = 3.5 +account_autocreate = true + +[filter:tempauth] +use = egg:swift#tempauth +{% if not swift_authtoken_active %} +user_admin_admin = admin .admin .reseller_admin +user_test_tester = testing .admin +user_test2_tester2 = testing2 .admin +user_test_tester3 = testing3 + +{% elif swift_authtoken_active %} +[filter:authtoken] +paste.filter_factory = keystonemiddleware.auth_token:filter_factory +identity_uri = {{ keystone_service_internaluri }} +auth_uri = {{ keystone_service_internaluri }} +admin_tenant_name = {{ swift_service_tenant_name }} +admin_user = {{ swift_service_user_name }} +admin_password = {{ swift_service_password }} +delay_auth_decision = {{ swift_delay_auth_decision }} +{% endif %} + +[filter:keystoneauth] +use = egg:swift#keystoneauth +{% if swift_allow_all_users is defined and swift_allow_all_users == True %} +operator_roles = admin, swiftoperator, _member_ +{% else %} +operator_roles = admin, swiftoperator +{% endif %} +# The reseller admin role has the ability to create and delete accounts +reseller_admin_role = reseller_admin + +[filter:healthcheck] +use = egg:swift#healthcheck + +[filter:cache] +use = egg:swift#memcache +memcache_servers = {{ memcached_servers }} +memcache_serialization_support = 2 + +[filter:ratelimit] +use = egg:swift#ratelimit + +[filter:domain_remap] +use = egg:swift#domain_remap + +[filter:catch_errors] +use = egg:swift#catch_errors + +[filter:cname_lookup] +use = egg:swift#cname_lookup + +[filter:staticweb] +use = egg:swift#staticweb + +[filter:tempurl] +use = egg:swift#tempurl + +[filter:formpost] +use = egg:swift#formpost + +[filter:name_check] +use = egg:swift#name_check + +[filter:list-endpoints] +use = egg:swift#list_endpoints + +[filter:proxy-logging] +use = egg:swift#proxy_logging + +[filter:bulk] +use = egg:swift#bulk + +[filter:container-quotas] +use = egg:swift#container_quotas + +[filter:slo] +use = egg:swift#slo + +[filter:dlo] +use = egg:swift#dlo + +[filter:account-quotas] +use = egg:swift#account_quotas + +[filter:gatekeeper] +use = egg:swift#gatekeeper + +[filter:container_sync] +use = egg:swift#container_sync + +[filter:xprofile] +use = egg:swift#xprofile diff --git a/templates/ring.contents.j2 b/templates/ring.contents.j2 new file mode 100644 index 00000000..4f0e7ae1 --- /dev/null +++ b/templates/ring.contents.j2 @@ -0,0 +1,96 @@ +{### Check if this is an object storage policy #} +{% if item[1] is defined %} +{% set port = item[1]['port'] %} +{% set type = item[1]['type'] %} +{% set item = item[0]['policy'] %} +{### If the index is 0 then it needs to be object without index #} +{% if item.index == 0 %} +{% set builder_file = type %} +{% else %} +{% set builder_file = type + '-' + item.index|string %} +{% endif %} +{% set name = item.name %} +{### Otherwise this should be account or container rings #} +{### Make the port/type/item/builder_file/name vals uniform across rings #} +{% elif item.port is defined %} +{% set port = item.port %} +{% set type = item.type %} +{% set item = item.item %} +{% set builder_file = type %} +{% set name = type %} +{% endif %} +{### Lets get the min_part_hours, part_power and repl_number vals #} +{% set min_part_hours = item.min_part_hours | default(swift.min_part_hours | default(swift_default_min_part_hours)) %} +{% set part_power = item.part_power | default(swift.part_power) %} +{% set repl_number = item.repl_number | default(swift.repl_number | default(swift_default_replication_number)) %} +{### Create the builder dict #} +{% set builder = {} %} +{### This is a hacky way of updating the builder dict #} +{% set _update = builder.update({'min_part_hours':min_part_hours}) %} +{% set _update = builder.update({'repl_number':repl_number}) %} +{% set _update = builder.update({'part_power':part_power}) %} +{% set _update = builder.update({'builder_file':builder_file}) %} +{### Now we need to add the drives #} +{### Create an update the builder dict to have drives as an empty list #} +{% set _update = builder.update({'drives':[]}) %} +{### Lets get the default groups for drives and find the default storage_policy #} +{% set def_groups = [ 'account', 'container' ] %} +{% for policy in swift.storage_policies %} +{% if policy.policy.default is defined and policy.policy.default == True %} +{% set _update = def_groups.append(policy.policy.name) %} +{% endif %} +{% endfor %} +{### Loop through the swift_hosts #} +{% for host in groups['swift_hosts'] %} +{### Set the default storage_ip #} +{% set def_storage_ip = hostvars[host]['ansible_ssh_host'] %} +{% if swift.storage_network is defined %} +{% set storage_bridge = 'ansible_' + swift.storage_network|replace('-', '_') %} +{% set def_storage_ip = hostvars[host][storage_bridge]['ipv4']['address'] | default(hostvars[host]['ansible_ssh_host']) %} +{% endif %} +{### Set the default replication_ip #} +{% set def_repl_ip = def_storage_ip %} +{% if swift.replication_network is defined %} +{% set repl_bridge = 'ansible_' + swift.replication_network|replace('-', '_') %} +{% set def_repl_ip = hostvars[host][repl_bridge]['ipv4']['address'] | default(def_storage_ip) %} +{% endif %} +{### Default swift_vars to an empty dict if not defined #} +{### swift_vars needs to exist for swift_vars[setting] checks to wrok #} +{% if hostvars[host]['swift_vars'] is defined %} +{% set swift_vars = hostvars[host]['swift_vars'] %} +{% else %} +{% set swift_vars = {} %} +{% endif %} +{### Get the drives use swift global as default #} +{% set drives = swift_vars.drives | default(swift.drives | default([])) %} +{### Loop through the drives #} +{% for drive in drives %} +{### Check if groups is defined per host or drive #} +{% set groups = drive.groups | default(swift_vars.groups | default(swift.groups | default(def_groups))) %} +{### Only build the device if it is part of the group we're building the ring for #} +{% if name in groups %} +{### Build an empty device which we'll update with the appropriate details #} +{% set device = {} %} +{% set weight = drive.weight | default(swift_vars.weight | default(swift.weight | default(swift_default_drive_weight))) %} +{% set region = drive.region | default(swift_vars.region | default(swift.region | default(swift_default_host_region))) %} +{% set zone = drive.zone | default(swift_vars.zone | default(swift.zone | default(swift_default_host_zone))) %} +{% set repl_ip = drive.repl_ip | default(swift_vars.repl_ip | default(def_repl_ip)) %} +{% set repl_port = drive.repl_port | default(swift_vars.repl_port | default(port)) %} +{% set storage_ip = drive.storage_ip | default(swift_vars.storage_ip | default(def_storage_ip)) %} +{% set storage_port = drive.storage_port | default(swift_vars.storage_port | default(port)) %} +{### Update the device with the appropriate values #} +{% set _update = device.update({'device':drive.name}) %} +{% set _update = device.update({'weight': weight}) %} +{% set _update = device.update({'region': region}) %} +{% set _update = device.update({'zone': zone}) %} +{% set _update = device.update({'repl_ip': repl_ip}) %} +{% set _update = device.update({'repl_port': repl_port|int}) %} +{% set _update = device.update({'ip': storage_ip}) %} +{% set _update = device.update({'port': storage_port|int}) %} +{### Append the device to the drives list of the builder dict #} +{% set _update = builder.drives.append(device) %} +{% endif %} +{% endfor %} +{% endfor %} +{### Output the builder file #} +{{ builder | to_nice_json }} diff --git a/templates/rsyncd.conf.j2 b/templates/rsyncd.conf.j2 new file mode 100644 index 00000000..9c3e5171 --- /dev/null +++ b/templates/rsyncd.conf.j2 @@ -0,0 +1,34 @@ +# {{ ansible_managed }} + +{% if is_metal == true or is_metal == "True" and swift.replication_network is defined %} +{% set repl_bridge = 'ansible_' + swift.replication_network|replace('-', '_') %} +{% set bind_ip = hostvars[inventory_hostname][repl_bridge]['ipv4']['address'] %} + +{% elif is_metal == true or is_metal == "True" and swift.storage_network is defined %} +{% set storage_bridge = 'ansible_' + swift.storage_network|replace('-', '_') %} +{% set bind_ip = hostvars[inventory_hostname][storage_bridge]['ipv4']['address'] %} +{% endif %} + +uid = {{ swift_system_user_name }} +gid = {{ swift_system_group_name }} +log file = /var/log/rsyncd.log +pid file = /var/run/rsyncd.pid +address = {{ bind_ip | default(ansible_ssh_host) }} + +[account] +max connections = 2 +path = {{ swift_vars.mount_point | default(swift.mount_point) }} +read only = false +lock file = /var/lock/account.lock + +[container] +max connections = 2 +path = {{ swift_vars.mount_point | default(swift.mount_point) }} +read only = false +lock file = /var/lock/container.lock + +[object] +max connections = 2 +path = {{ swift_vars.mount_point | default(swift.mount_point) }} +read only = false +lock file = /var/lock/object.lock diff --git a/templates/swift-dispersion.conf.j2 b/templates/swift-dispersion.conf.j2 new file mode 100644 index 00000000..0dbbf598 --- /dev/null +++ b/templates/swift-dispersion.conf.j2 @@ -0,0 +1,8 @@ +# {{ ansible_managed }} + +[dispersion] +auth_url = {{ keystone_service_internalurl }} +auth_user = {{ keystone_admin_tenant_name }}:{{ swift_dispersion_user }} +auth_key = {{ swift_dispersion_password }} +auth_version = 2.0 +endpoint_type = internalURL diff --git a/templates/swift-rsyslog.conf.j2 b/templates/swift-rsyslog.conf.j2 new file mode 100644 index 00000000..ce21fc66 --- /dev/null +++ b/templates/swift-rsyslog.conf.j2 @@ -0,0 +1,24 @@ +# {{ ansible_managed }} + +# Uncomment the following to have a log containing all logs together +#local1,local2,local3,local4.* /openstack/log/{{ inventory_hostname }}/all.log + +# Uncomment the following to have hourly proxy logs for stats processing +#$template HourlyProxyLog,"/openstack/log/{{ inventory_hostname }}/hourly/%$YEAR%%$MONTH%%$DAY%%$HOUR%" +#local1.*;local1.!notice ?HourlyProxyLog + +local1.*;local1.!notice /var/log/swift/proxy.log +local1.notice /var/log/swift/proxy-error.log +local1.* ~ + +local2.*;local2.!notice /openstack/log/{{ inventory_hostname }}/account.log +local2.notice /openstack/log/{{ inventory_hostname }}/account-error.log +local2.* ~ + +local3.*;local3.!notice /openstack/log/{{ inventory_hostname }}/container.log +local3.notice /openstack/log/{{ inventory_hostname }}/container-error.log +local3.* ~ + +local4.*;local4.!notice /openstack/log/{{ inventory_hostname }}/object.log +local4.notice /openstack/log/{{ inventory_hostname }}/object-error.log +local4.* ~ diff --git a/templates/swift-upstart-init.j2 b/templates/swift-upstart-init.j2 new file mode 100644 index 00000000..a9e477ac --- /dev/null +++ b/templates/swift-upstart-init.j2 @@ -0,0 +1,39 @@ +# {{ ansible_managed }} + +# vim:set ft=upstart ts=2 et: + +description "{{ program_name }}" +author "Kevin Carter " + +start on runlevel [2345] +stop on runlelvel [016] + +respawn +respawn limit 10 5 + +# Set the RUNBIN environment variable +env RUNBIN="/usr/local/bin/{{ program_name }}" + +# Change directory to service users home +chdir "{{ service_home }}" + +# Pre start actions +pre-start script + mkdir -p "/var/run/{{ program_name }}" + chown {{ system_user }}:{{ system_group }} "/var/run/{{ program_name }}" + + mkdir -p "/var/lock/{{ program_name }}" + chown {{ system_user }}:{{ system_group }} "/var/lock/{{ program_name }}" +end script + +# Post stop actions +post-stop script + rm "/var/run/{{ program_name }}/{{ program_name }}.pid" +end script + +# Run the start up job +exec start-stop-daemon --start \ + --chuid {{ system_user }} \ + --make-pidfile \ + --pidfile /var/run/{{ program_name }}/{{ program_name }}.pid \ + --exec "{{ program_override|default('$RUNBIN') }}" "{{ program_config_options|default('') }}" diff --git a/templates/swift.conf.j2 b/templates/swift.conf.j2 new file mode 100644 index 00000000..89406472 --- /dev/null +++ b/templates/swift.conf.j2 @@ -0,0 +1,19 @@ +# {{ ansible_managed }} + +[swift-hash] +swift_hash_path_suffix = {{ swift_hash_path_suffix }} +swift_hash_path_prefix = {{ swift_hash_path_prefix }} + +# Storage Policies +{% for policy in swift.storage_policies %} +[storage-policy:{{ policy.policy.index }}] +name = {{ policy.policy.name }} +{% if policy.policy.deprecated is defined %} +deprecated = {{ policy.policy.deprecated }} +{% endif %} +{% if policy.policy.default is defined %} +default = {{ policy.policy.default }} +{% endif %} + +{% endfor %} +[swift-constraints]