Replace ansible-galaxy init placeholders across the collection and correct documentation that drifted from the code, after a multi-agent review of every role README against its defaults, tasks and templates. Collection level: - README: role table for all 16 roles, requirements and role-ordering - galaxy.yml: declare community.docker and community.general deps, real description/tags/urls; normalize license to MIT-0 - meta/runtime.yml: requires_ansible '>=2.15.0' - plugins/README: document the homarr_layout filter and garage_credentials lookup instead of scaffold boilerplate Per-role meta/main.yml and README for the placeholder roles (389ds, authentik, authentik_outpost_ldap, base, collabora, drawio, garage, homarr, httpbin, keycloak, nextcloud, opencloud, traefik). Correctness fixes found during review: - keycloak: wrong domain default, drop invented keycloak_cert_resolver, document the provisioning feature - garage: root_domain is .s3.<first-entry>, not the bare domain - opnform: jwt/front_api secrets use `openssl rand -hex 32`; align the validation fail_msg in tasks/main.yml accordingly - send: S3 example references garage_s3_domains[0] (was singular) - opencloud: document required opencloud_wopi_domain License normalized to MIT-0 across galaxy.yml, role meta and READMEs to match the SPDX headers.
30 lines
865 B
Markdown
30 lines
865 B
Markdown
# httpbin
|
|
|
|
Deploys [httpbin](https://httpbin.org/) (`kennethreitz/httpbin`) via
|
|
Docker Compose behind Traefik. Useful as a throwaway endpoint to verify
|
|
that the Traefik ingress path, TLS and routing work end to end.
|
|
|
|
## Role variables
|
|
|
|
| Variable | Default | Description |
|
|
| --- | --- | --- |
|
|
| `httpbin_domain` | `httpbin.local.test` | FQDN the Traefik router matches. |
|
|
| `httpbin_image` | `kennethreitz/httpbin` | Container image. |
|
|
| `httpbin_port` | `80` | Container port Traefik forwards to. |
|
|
| `httpbin_traefik_network` | `proxy` | Docker network shared with Traefik. |
|
|
| `httpbin_use_ssl` | `true` | Route via the `websecure` entrypoint with `tls=true` (otherwise `web`). |
|
|
|
|
## Example
|
|
|
|
```yaml
|
|
- hosts: services
|
|
become: true
|
|
roles:
|
|
- role: digitalboard.core.httpbin
|
|
vars:
|
|
httpbin_domain: "httpbin.example.com"
|
|
```
|
|
|
|
## License
|
|
|
|
MIT-0
|