https://github.com/ethersphere/ansible-role-gatewayproxy
This repository contains sample code for automating gateway-proxy installation and management using Ansible
https://github.com/ethersphere/ansible-role-gatewayproxy
Last synced: 4 months ago
JSON representation
This repository contains sample code for automating gateway-proxy installation and management using Ansible
- Host: GitHub
- URL: https://github.com/ethersphere/ansible-role-gatewayproxy
- Owner: ethersphere
- License: bsd-3-clause
- Created: 2022-06-09T15:36:08.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-09T15:43:42.000Z (about 4 years ago)
- Last Synced: 2025-04-08T18:50:28.247Z (about 1 year ago)
- Language: Jinja
- Homepage: https://galaxy.ansible.com/ethersphere/gatewayproxy
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: bee
This repository contains sample code for automating bee installation and management using Ansible.
[Ansible](https://www.ansible.com/) is a radically simple IT automation engine that automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs.
[gateway-proxy](https://github.com/ethersphere/gateway-proxy/) it's proxy service for the Bee client.
## Installation
### Ansible Galaxy
Use `ansible-galaxy install ethersphere.gatewayproxy` to install the latest stable release of the role on your system. Alternatively, if you have already installed the role, use `ansible-galaxy install -f ethersphere.gatewayproxy` to update the role to the latest release.
### Git
Use git clone https://github.com/ethersphere/ansible-role-gatewayproxy.git to pull the latest edge commit of the role from GitHub.
## Example
Deploy one gateway-proxy node on a defined host
`hosts`
```
[my-hosts]
x.x.x.x
```
`playbook.yml`
```
---
- hosts: my-hosts
roles:
- role: ethersphere.gatewayproxy
vars:
gatewayproxy_config:
port: 8080
```