Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paritytech/ansible-polkadot
Polkadot Ansible Collection
https://github.com/paritytech/ansible-polkadot
ansible ansible-playbook ansible-polkadot blockchain polkadot polkadot-ansible polkadot-sdk
Last synced: about 2 months ago
JSON representation
Polkadot Ansible Collection
- Host: GitHub
- URL: https://github.com/paritytech/ansible-polkadot
- Owner: paritytech
- License: gpl-3.0
- Created: 2022-08-04T14:59:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T09:12:56.000Z (5 months ago)
- Last Synced: 2024-08-16T10:26:21.866Z (5 months ago)
- Topics: ansible, ansible-playbook, ansible-polkadot, blockchain, polkadot, polkadot-ansible, polkadot-sdk
- Language: Python
- Homepage: https://galaxy.ansible.com/ui/repo/published/paritytech/chain/
- Size: 275 KB
- Stars: 22
- Watchers: 9
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Polkadot Collection - paritytech.chain
## Install Ansible collections
Create `requirements.yml` file in your playbook repository (or add to the existing file):
```yaml
collections:
- name: https://github.com/paritytech/ansible-polkadot.git
type: git
version: 1.10.0
```or
```yaml
collections:
- name: paritytech.chain
version: 1.10.0
```If you want to install collections in the project space, you have to run:
```commandline
mkdir collections
ansible-polkadot collection install -f -r requirements.yml -p ./collections
```If you want to install collections in the global space (`~/.ansible/collections`),
you have to run:
```commandline
ansible-polkadot collection install -f -r requirements.yml
```## Roles
* key_inject - [README](./roles/key_inject/README.md)
* node - [README](./roles/node/README.md)
* node_backup - [README](./roles/node_backup/README.md)
* secure_apt - [README](./roles/secure_apt/README.md)
* state_exporter - [README](./roles/state_exporter/README.md)
* ws_health_exporter - [README](./roles/ws_health_exporter/README.md)
* nginx - [README](./roles/nginx/README.md)
* nginx_exporter - [README](./roles/nginx_exporter/README.md)