{"id":29099825,"url":"https://github.com/eclipse-bluechi/bluechi-ansible-collection","last_synced_at":"2026-06-17T21:31:48.024Z","repository":{"id":219766362,"uuid":"733821729","full_name":"eclipse-bluechi/bluechi-ansible-collection","owner":"eclipse-bluechi","description":"Ansible collection for installing BlueChi controller and agents","archived":false,"fork":false,"pushed_at":"2024-03-05T08:41:20.000Z","size":26,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-05-05T14:27:03.050Z","etag":null,"topics":["ansible","bluechi"],"latest_commit_sha":null,"homepage":null,"language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-bluechi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-12-20T07:52:40.000Z","updated_at":"2025-08-06T14:58:04.000Z","dependencies_parsed_at":"2025-06-28T17:12:08.860Z","dependency_job_id":"87bc1fec-e578-42d3-97b5-d28d4aca1402","html_url":"https://github.com/eclipse-bluechi/bluechi-ansible-collection","commit_stats":null,"previous_names":["eclipse-bluechi/bluechi-ansible-collection"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-bluechi/bluechi-ansible-collection","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-bluechi%2Fbluechi-ansible-collection","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-bluechi%2Fbluechi-ansible-collection/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-bluechi%2Fbluechi-ansible-collection/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-bluechi%2Fbluechi-ansible-collection/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-bluechi","download_url":"https://codeload.github.com/eclipse-bluechi/bluechi-ansible-collection/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-bluechi%2Fbluechi-ansible-collection/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34466928,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","bluechi"],"created_at":"2025-06-28T17:12:02.624Z","updated_at":"2026-06-17T21:31:48.009Z","avatar_url":"https://github.com/eclipse-bluechi.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Eclipse BlueChi Ansible Collection\n\n## Overview\n\nUse this Ansible Collection to provision [BlueChi](https://bluechi.readthedocs.io/en/latest/) on your system\n\n## Requirements\n\n### Ansible Version\n\nThis collection requires ansible from version `2.14.0` and above\n\n### Collections\n\nThis collection depends on the following collections:\n- community.general: \"*\"\n\n## Roles\n\nThese are the roles included in the collection. Follow the links below to see the detailed documentation for each role.\n\n- [`controller`](./roles/controller/README.md) - Install and configure the `BlueChi Controller`\n- [`agent`](./roles/agent/README.md) - Install and configure the `BlueChi Agent`\n- [`common`](./roles/common/README.md) - Used for common tasks. Not intended to be used standalone\n\n## Installation Playbook\n\nThe collection includes a [playbook](./playbooks/install.yml) for installation.\n\nTo use the installer playbook create an inventory file indicating the different machine types - `bluechi_controller` and `bluechi_agents`.\nPlease note that `bluechi_controller` assumes both `controller` and `agent` roles. So, there is no need to list it twice.\n\n### Sample Inventory\n\n```yaml\nall:\n  hosts:\n  children:\n    bluechi_controller:\n      hosts:\n        controller.example.com:\n    bluechi_agents:\n       hosts:\n         agent-1.example.com:\n         agent-1.example.com:\n```\n\n### Using the installer\n\n```bash\nansible-playbook -i  \u003c/path/to/inventory\u003e eclipse_bluechi.bluechi.install\n```\n\n## Installing the collection from Ansible Galaxy\n\nBefore using this collection, you need to install it with the Ansible Galaxy command-line tool:\n\n```bash\nansible-galaxy collection install eclipse_bluechi.bluechi\n```\n\nYou can also include it in a `requirements.yml` file and install it with `ansible-galaxy collection install -r requirements.yml`, using the format:\n\n```yaml\n---\ncollections:\n  - name: eclipse_bluechi.bluechi\n```\n\nNote that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the `ansible` package.\nTo upgrade the collection to the latest available version, run the following command:\n\n```bash\nansible-galaxy collection install eclipse-bluechi.bluechi --upgrade\n```\n\nYou can also install a specific version of the collection.\nFor example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository).\nUse the following syntax to install version `1.0.0`:\n\n```bash\nansible-galaxy collection install eclipse-bluechi.bluechi:==1.0.0\n```\n\nSee [Using Ansible collections](https://docs.ansible.com/ansible/devel/user_guide/collections_using.html) for more details.\n\n## Contributing\n\nWe appreciate participation from any new contributors. Get started by opening an issue or pull request. Refer to our [contribution guide](./CONTRIBUTING.md) for more information.\n\n## Reporting issues\n\nPlease open a [new issue](https://github.com/eclipse-bluechi/bluechi-ansible-collection/issues/new/choose) for any bugs or security vulnerabilities you may encounter. We also invite you to open an issue if you have ideas on how we can improve the solution or want to make a suggestion for enhancement.\n\n## Release notes\n\nSee the [changelog](https://github.com/eclipse-bluechi/bluechi-ansible-collection/tree/main/CHANGELOG.rst).\n\n## Licensing\n\nSee [LICENSE](./LICENSE) to see the full text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-bluechi%2Fbluechi-ansible-collection","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-bluechi%2Fbluechi-ansible-collection","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-bluechi%2Fbluechi-ansible-collection/lists"}