You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-msvsphere.ci/roles/gitea_db_server/README.md

33 lines
840 B

# msvsphere.ci.gitea_db_server
An Ansible role that configures a PostgreSQL server for Gitea.
## Variables
| Variable | Default value | Type | Description | Required |
| -------- | ------------- | ---- | ----------- | -------- |
| gitea_db_name | "gitea" | str | Gitea database name. | no |
| gitea_db_user | "gitea" | str | Gitea database user. | no |
| gitea_db_password | | str | Gitea database user password. | yes |
| gitea_server_ip | | str | Gitea server IP address. | yes |
| gitea_db_server_password_encryption | "scram-sha-256" | str | Password encryption algorithm. | no |
## Example playbook
```yaml
---
- hosts: all
roles:
- role: msvsphere.ci.gitea_db_server
gitea_server_ip: '127.0.0.1'
gitea_db_password: 'p@$Sw0Rd'
```
## License
MIT.
## Authors
* [Eugene Zamriy](mailto:ezamriy@msvsphere-os.ru)