From 1cbc2b9bcbc467ff3522b13a8132920055e5e67e Mon Sep 17 00:00:00 2001 From: Laur Ivan Date: Thu, 12 Jan 2023 13:49:11 +0100 Subject: [PATCH] chore: Initial commit --- .ansible-lint | 10 ++++ .gitattributes | 3 + .github/FUNDING.yml | 2 + .github/ISSUE_TEMPLATE/bug_report.md | 49 ++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 3 + .github/ISSUE_TEMPLATE/feature_request.md | 31 ++++++++++ .github/ISSUE_TEMPLATE/refactor.md | 27 +++++++++ .github/ISSUE_TEMPLATE/support_request.md | 27 +++++++++ .github/stale.yml | 33 +++++++++++ .gitignore | 15 +++++ .travis.yml | 25 ++++++++ .yamllint | 32 +++++++++++ CHANGELOG.md | 18 ++++++ LICENSE | 67 ++++++++++++++++++++++ README.md | 59 +++++++++++++++++++ defaults/main.yml | 20 +++++++ handlers/main.yml | 2 + logo.gif | Bin 0 -> 24279 bytes meta/main.yml | 29 ++++++++++ molecule/default/cleanup.yml | 23 ++++++++ molecule/default/converge.yml | 5 ++ molecule/default/destroy.yml | 27 +++++++++ molecule/default/molecule.yml | 38 ++++++++++++ molecule/default/prepare.yml | 38 ++++++++++++ molecule/default/requirements.yml | 4 ++ molecule/default/tests/test_app.yml | 12 ++++ molecule/default/verify.yml | 59 +++++++++++++++++++ tasks/config.yml | 23 ++++++++ tasks/install.yml | 7 +++ tasks/main.yml | 12 ++++ templates/docker-compose.yml.j2 | 14 +++++ test-requirements.txt | 6 ++ 32 files changed, 720 insertions(+) create mode 100644 .ansible-lint create mode 100644 .gitattributes create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/refactor.md create mode 100644 .github/ISSUE_TEMPLATE/support_request.md create mode 100644 .github/stale.yml create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 .yamllint create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 defaults/main.yml create mode 100644 handlers/main.yml create mode 100644 logo.gif create mode 100644 meta/main.yml create mode 100644 molecule/default/cleanup.yml create mode 100644 molecule/default/converge.yml create mode 100644 molecule/default/destroy.yml create mode 100644 molecule/default/molecule.yml create mode 100644 molecule/default/prepare.yml create mode 100644 molecule/default/requirements.yml create mode 100644 molecule/default/tests/test_app.yml create mode 100644 molecule/default/verify.yml create mode 100644 tasks/config.yml create mode 100644 tasks/install.yml create mode 100644 tasks/main.yml create mode 100644 templates/docker-compose.yml.j2 create mode 100644 test-requirements.txt diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..355eeac --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,10 @@ +--- +exclude_paths: + - ./molecule + - ./.travis.yml + - ./.github +parseable: true +skip_list: + - '204' +use_default_rules: true +verbosity: 1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d08e2bf --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.yml linguist-detectable=true +*.yaml linguist-detectable=true +*.html linguist-detectable=false diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..2da2ded --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +github: equinoxel +patreon: laurivan \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..960f91b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,49 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG]" +labels: bug +assignees: '' + +--- + + + +### Description + +[Description of the issue] + +### Steps to Reproduce + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Expected behavior:** +[What you expect to happen] + +**Actual behavior:** +[What actually happens] + +**Reproduces how often:** +[What percentage of the time does it reproduce?] + +### Environment + +- The release version/s you are using: +- OS: +- Ansible Version: +- Python Version: +- Others: +### Additional Information + +[Any additional information, configuration or data that might be necessary to reproduce the issue.] diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f3aad96 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,3 @@ +--- + +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..9b2e2d9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,31 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEATURE]" +labels: enhancement +assignees: '' + +--- + + + +### Description + +[Description of the issue] + +### Why is this needed? + +[A clear and concise description of why do you think this is needed] + +### Additional Information + +[Any additional information, configuration or data.] diff --git a/.github/ISSUE_TEMPLATE/refactor.md b/.github/ISSUE_TEMPLATE/refactor.md new file mode 100644 index 0000000..8d7bff6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/refactor.md @@ -0,0 +1,27 @@ +--- +name: Refactor +about: Found anything to refactor in this project? +title: "[REFACTOR]" +labels: clean-up +assignees: '' + +--- + + + +### Description + +[Description of the issue] + +### Link/s to the specific code that needs a refactor (if applicable) + +[Links] \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/support_request.md b/.github/ISSUE_TEMPLATE/support_request.md new file mode 100644 index 0000000..a5a9e07 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support_request.md @@ -0,0 +1,27 @@ +--- +name: Support Request +about: Support request or question about this project +title: "[SUPPORT]" +labels: question +assignees: '' + +--- + + + +### Description + +[Description of the issue] + +### Additional Information + +Any additional information, configuration or data that might be necessary to reproduce the issue. \ No newline at end of file diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..c765ed1 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,33 @@ +--- +issues: + # Number of days of inactivity before an issue becomes stale + daysUntilStale: 90 + # Number of days of inactivity before a stale issue is closed + daysUntilClose: 7 + # Issues with these labels will never be considered stale + exemptLabels: + - "pinned" + - "security" + - "good first issue" + # Label to use when marking an issue as stale + staleLabel: wontfix + # Comment to post when marking an issue as stale. Set to `false` to disable + markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. + # Comment to post when closing a stale issue. Set to `false` to disable + closeComment: false + +pulls: + # Number of days of inactivity before a pull request becomes stale + daysUntilStale: 90 + # Number of days of inactivity before a stale pull request is closed + daysUntilClose: 7 + # Comment to post when marking a pull request as stale. Set to `false` to disable + markComment: > + This pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. + # Comment to post when closing a stale pull request. Set to `false` to disable + closeComment: false diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..88c1db1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ + +tests/playbook.retry +tests/.cache +__pycache__ +.pytest_cache +.molecule +.cache +.venv/ + +*.iml +.idea +.project + +*.pyc +**/.vscode \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9ff0334 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +--- +dist: xenial +language: python +python: "3.9" +os: linux +services: + - docker +install: + - pip install -I pipenv + - pipenv sync +env: + jobs: + - MOLECULE_DISTRO=debian:buster-slim + - MOLECULE_DISTRO=debian:bullseye-slim +script: + - pipenv run molecule test --all + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ + email: + if: branch = main + on_success: change + on_failure: always + recipients: + - laur.ivan@gmail.com diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..dd13647 --- /dev/null +++ b/.yamllint @@ -0,0 +1,32 @@ +--- +# Based on ansible-lint config +extends: default + +ignore: | + molecule/**/tests/ + .github + .travis.yml + +rules: + braces: + max-spaces-inside: 1 + level: error + brackets: + max-spaces-inside: 1 + level: error + colons: + max-spaces-after: -1 + level: error + commas: + max-spaces-after: -1 + level: error + empty-lines: + max: 3 + level: error + hyphens: + level: error + key-duplicates: enable + line-length: disable + new-lines: + type: unix + truthy: disable diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1016213 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a changelog](https://github.com/olivierlacan/keep-a-changelog). + +## [Unreleased](https://github.com/equinoxel/ansible-role-flame/tree/develop) +### Changed +### Added +### Removed +### Fixed + +## [X.Y.Z](https://github.com/equinoxel/ansible-role-flame/tree/X.Y.Z) +### [Full Changelog](https://github.com/equinoxel/ansible-role-flame/compare/1.0.0...X.Y.Z) +### Changed + *[#](https://github.com/equinoxel/ansible-role-flame/issues/) \* @\ + +## [1.0.0](https://github.com/equinoxel/ansible-role-flame/tree/1.0.0) +- Initial release diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..01569c7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,67 @@ +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +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 + +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 + + Copyright 2023 Idealista S.A.U. + + 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.md b/README.md new file mode 100644 index 0000000..14c1138 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +# Flame Ansible role + +This role installs Mealie via Docker compose. + +## Requirements + +None + +## Role Variables + +All variables are listed below (see also `defaults/main.yml`). + +```yml +# Version +flame_version: 1.0.0 +flame_docker_image_version: "latest" +flame_port: "5005" +flame_password: "flame_password" + +# flame paths +flame_root_path: /opt/flame +flame_config_path: "{{ flame_root_path }}/config" +flame_data_path: "{{ flame_root_path }}/data" +flame_skeleton_paths: + - "{{ flame_config_path }}" + - "{{ flame_data_path }}" +``` + +## Dependencies + +You need a machine with docker and docker-compose installed. + +## Example Playbook + +```yml +- hosts: servers + roles: + - 'laurivan.mealie' +``` + +## License + +This project is licensed under the [MIT](https://opensource.org/licenses/MIT) license - see the [LICENSE](LICENSE) file for details. + +![MIT License](https://img.shields.io/badge/license-MIT%20License-brightgreen) + +## Author Information + +This role was created in 2023 by [Laur Ivan](https://www.laurivan.com). + +## Built With + +![Ansible](https://img.shields.io/badge/ansible-5.2.0-green.svg) +![Molecule](https://img.shields.io/badge/molecule-3.4.0-green.svg) +![Goss](https://img.shields.io/badge/goss-0.3.16-green.svg) + +## Contributing + +Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us. diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..5b36898 --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,20 @@ +--- + +# Version +flame_version: 1.0.0 +flame_docker_image_version: "latest" +flame_port: "5005" +flame_password: "flame_password" + +# flame paths +flame_root_path: /opt/flame +flame_config_path: "{{ flame_root_path }}/config" +flame_data_path: "{{ flame_root_path }}/data" +flame_skeleton_paths: + - "{{ flame_config_path }}" + - "{{ flame_data_path }}" + +# Documentation +flame_documentation_link: "" + + diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 0000000..e577f1d --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,2 @@ +--- +# Handlers for flame diff --git a/logo.gif b/logo.gif new file mode 100644 index 0000000000000000000000000000000000000000..d96f592f538fc16bd38c56d49773ce3c6580ddb5 GIT binary patch literal 24279 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 z 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 K8;>kzKma?o`!g>9 literal 0 HcmV?d00001 diff --git a/meta/main.yml b/meta/main.yml new file mode 100644 index 0000000..fae8d35 --- /dev/null +++ b/meta/main.yml @@ -0,0 +1,29 @@ +--- + +galaxy_info: + author: Laur Ivan (laur.ivan@gmail.com) + namespace: laurivan + + role_name: flame + description: Flame Role + min_ansible_version: 2.4 + min_ansible_container_version: 2.4 + license: Apache 2.0 + galaxy_tags: + - flame + - docker + - dashboard + platforms: + + - name: Debian + versions: + - bullseye + - buster + + + - name: Ubuntu + versions: + - bionic + - focal + - jammy + diff --git a/molecule/default/cleanup.yml b/molecule/default/cleanup.yml new file mode 100644 index 0000000..9add40f --- /dev/null +++ b/molecule/default/cleanup.yml @@ -0,0 +1,23 @@ +--- +- name: Clean up + hosts: all + gather_facts: true + tasks: + - name: Check if the docker-compose file exists. + ansible.builtin.stat: + path: "{{ flame_config_path | expanduser | realpath }}/docker-compose.yml" + register: docker_compose_file + + - name: Remove docker-compose. + community.docker.docker_compose: + project_src: "{{ flame_config_path | expanduser | realpath }}/" + build: false + state: absent + when: docker_compose_file.stat.exists + become: false + + - name: Remove the docker-compose file + ansible.builtin.file: + path: "{{ flame_config_path | expanduser | realpath }}/docker-compose.yml" + state: absent + when: docker_compose_file.stat.exists \ No newline at end of file diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml new file mode 100644 index 0000000..2f05fcb --- /dev/null +++ b/molecule/default/converge.yml @@ -0,0 +1,5 @@ +--- +- name: Converge + hosts: flame_group + roles: + - role: "laurivan.flame" diff --git a/molecule/default/destroy.yml b/molecule/default/destroy.yml new file mode 100644 index 0000000..37465c1 --- /dev/null +++ b/molecule/default/destroy.yml @@ -0,0 +1,27 @@ +--- +- name: Destroy + hosts: localhost + connection: local + gather_facts: false + no_log: "{{ molecule_no_log }}" + tasks: + # Developer must implement. + - name: Remove the docker image + community.docker.docker_container: + name: flame + state: absent + + # Mandatory configuration for Molecule to function. + + - name: Populate instance config + ansible.builtin.set_fact: + instance_conf: {} + + - name: Dump instance config + ansible.builtin.copy: + content: | + # Molecule managed + {{ instance_conf | to_json | from_json | to_yaml }} + dest: "{{ molecule_instance_config }}" + mode: 0600 + when: server.changed | default(false) | bool diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml new file mode 100644 index 0000000..23fa859 --- /dev/null +++ b/molecule/default/molecule.yml @@ -0,0 +1,38 @@ +--- +dependency: + name: galaxy + options: + ignore-certs: true + ignore-errors: true + role-file: molecule/requirements.yml + requirements-file: molecule/requirements.yml +driver: + name: docker +lint: | + yamllint . + ansible-lint . +platforms: + - name: flame + groups: + - flame_group + image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos8}-ansible:latest" + privileged: true + pre_build_image: true + capabilities: + - SYS_ADMIN + tmpfs: + - /tmp + - /run + - /run/lock + volumes: + - '/sys/fs/cgroup:/sys/fs/cgroup:ro' + - '/var/run/docker.sock:/tmp/docker_mounted.sock' + command: '/lib/systemd/systemd' + stop_signal: 'RTMIN+3' +provisioner: + name: ansible + playbooks: + converge: ${MOLECULE_PLAYBOOK:-converge.yml} +verifier: + name: ansible + diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml new file mode 100644 index 0000000..729a961 --- /dev/null +++ b/molecule/default/prepare.yml @@ -0,0 +1,38 @@ +--- +- name: Setup the test machine + hosts: flame + tasks: + - name: Check if /var/run/docker.sock already exists + ansible.builtin.stat: + path: "/var/run/docker.sock" + register: docker_sock_stat + + - name: Create docker.sock + ansible.builtin.raw: touch /var/run/docker.sock + become: true + changed_when: false + when: not docker_sock_stat.stat.exists + + - name: Move docker.sock from tmp + ansible.builtin.raw: > + mount --move /tmp/docker_mounted.sock /var/run/docker.sock + become: true + changed_when: false + when: not docker_sock_stat.stat.exists + + - name: Update apt cache. + ansible.builtin.apt: update_cache=yes cache_valid_time=600 + when: ansible_os_family == 'Debian' + + - name: Install python requests + ansible.builtin.pip: + name: + - requests + - docker + - docker-compose + + - name: Install docker + vars: + docker_service_manage: false + ansible.builtin.include_role: + name: geerlingguy.docker diff --git a/molecule/default/requirements.yml b/molecule/default/requirements.yml new file mode 100644 index 0000000..a6284de --- /dev/null +++ b/molecule/default/requirements.yml @@ -0,0 +1,4 @@ +--- +roles: + - geerlingguy.docker +collections: [] diff --git a/molecule/default/tests/test_app.yml b/molecule/default/tests/test_app.yml new file mode 100644 index 0000000..38a1eea --- /dev/null +++ b/molecule/default/tests/test_app.yml @@ -0,0 +1,12 @@ +--- +## TODO: Remember to adapt goss tests to your convenience + + +## Check if ports are really exposed +# port: +# # Check port at IPv6 +# # https://github.com/aelsabbahy/goss/issues/177 +# tcp6:: +# listening: true +# ip: +# - '::' diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml new file mode 100644 index 0000000..a87057e --- /dev/null +++ b/molecule/default/verify.yml @@ -0,0 +1,59 @@ +--- +# This is an example playbook to execute goss tests. +# Tests need distributed to the appropriate ansible host/groups +# prior to execution by `goss validate`. + +- name: Verify flame + hosts: + - flame + become: true + vars: + goss_version: v0.3.16 + goss_arch: amd64 + goss_dst: /usr/local/bin/goss + goss_sha256sum: 827e354b48f93bce933f5efcd1f00dc82569c42a179cf2d384b040d8a80bfbfb + goss_url: "https://github.com/aelsabbahy/goss/releases/download/{{ goss_version }}/goss-linux-{{ goss_arch }}" + goss_test_directory: /tmp + goss_format: documentation + + vars_files: + - ../../defaults/main.yml + + tasks: + - name: Download and install Goss + get_url: + url: "{{ goss_url }}" + dest: "{{ goss_dst }}" + checksum: "sha256:{{ goss_sha256sum }}" + mode: 0755 + register: download_goss + until: download_goss is succeeded + retries: 3 + + - name: Copy Goss tests to remote + template: + src: "{{ item }}" + dest: "{{ goss_test_directory }}/{{ item | basename }}" + with_fileglob: + - "tests/test_*.yml" + + - name: Register test files + shell: "ls {{ goss_test_directory }}/test_*.yml" + register: test_files + + - name: Execute Goss tests + command: "{{ goss_dst }} -g {{ item }} validate --format {{ goss_format }}" + register: test_results + with_items: "{{ test_files.stdout_lines }}" + ignore_errors: true + + - name: Display details about the Goss results + debug: + msg: "{{ item.stdout_lines }}" + with_items: "{{ test_results.results }}" + + - name: Fail when tests fail + fail: + msg: "Goss failed to validate" + when: item.rc != 0 + with_items: "{{ test_results.results }}" diff --git a/tasks/config.yml b/tasks/config.yml new file mode 100644 index 0000000..5a84efd --- /dev/null +++ b/tasks/config.yml @@ -0,0 +1,23 @@ +--- +- name: "FLAME | Set up directories" + ansible.builtin.file: + state: directory + path: "{{ item }}" + owner: "{{ ansible_effective_user_id }}" + group: "{{ ansible_effective_group_id }}" + mode: "0750" + with_items: + - "{{ flame_skeleton_paths }}" + tags: + - flame_configure + become: true + +- name: "FLAME | Write configuration files" + ansible.builtin.template: + src: "{{ item }}.j2" + dest: "{{ flame_config_path | expanduser | realpath }}/{{ item }}" + mode: '0640' + loop: + - "docker-compose.yml" + tags: + - flame_configure \ No newline at end of file diff --git a/tasks/install.yml b/tasks/install.yml new file mode 100644 index 0000000..3547c14 --- /dev/null +++ b/tasks/install.yml @@ -0,0 +1,7 @@ +--- +- name: "FLAME | Ensure flame is running" + community.docker.docker_compose: + project_src: "{{ flame_config_path | expanduser | realpath }}" + build: false + tags: + - flame_install diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..735f9d0 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,12 @@ +--- + +- name: "FLAME | Configure" + import_tasks: config.yml + tags: + - flame_configure + +- name: "FLAME | Install" + import_tasks: install.yml + tags: + - flame_install + diff --git a/templates/docker-compose.yml.j2 b/templates/docker-compose.yml.j2 new file mode 100644 index 0000000..34a7bcd --- /dev/null +++ b/templates/docker-compose.yml.j2 @@ -0,0 +1,14 @@ +# flame docker compose +version: '3.9' +services: + flame: + image: "pawelmalak/flame:{{ flame_docker_image_version }}" + volumes: + - "{{ flame_data_path }}:/app/data" + - /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration + ports: + - "{{ flame_port }}:5005" + environment: + - PASSWORD="{{ flame_password }}" + restart: unless-stopped + diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000..5a6e7d0 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1,6 @@ +ansible==5.2.0 +molecule==3.4.0 +docker==5.0.0 +molecule-docker==0.2.4 +ansible-lint==5.3.2 +yamllint==1.28.0 \ No newline at end of file