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.
33 lines
901 B
33 lines
901 B
# msvsphere.ci.koji_db_server
|
|
|
|
An Ansible role that configures a PostgreSQL server for Koji.
|
|
|
|
## Variables
|
|
|
|
| Variable | Default value | Type | Description | Required |
|
|
| -------- | ------------- | ---- | ----------- | -------- |
|
|
| koji_db_server_db_name | "koji" | string | Koji database name. | no |
|
|
| koji_db_server_user | "koji" | string | Koji database user name. | no |
|
|
| koji_db_server_password | | string | Koji database user password. | yes |
|
|
| koji_db_server_ip | | string | Koji (koji-hub/koji-web) server IP address. | yes |
|
|
| koji_db_server_password_encryption | "scram-sha-256" | string | Password encryption algorithm. | no |
|
|
|
|
## Example playbook
|
|
|
|
```yaml
|
|
---
|
|
- hosts: all
|
|
roles:
|
|
- role: msvsphere.ci.koji_db_server
|
|
koji_db_server_password: 'PASSWORD'
|
|
koji_db_server_ip: '127.0.0.1'
|
|
```
|
|
|
|
## License
|
|
|
|
MIT.
|
|
|
|
## Authors
|
|
|
|
* [Eugene Zamriy](mailto:ezamriy@msvsphere-os.ru)
|