Compare commits

...

3 commits

Author SHA1 Message Date
ebd6018d20 Update all stable non-major dependencies
Some checks failed
/ Ansible Lint (push) Failing after 46s
/ Ansible Lint (pull_request) Failing after 47s
2026-01-25 20:00:55 +00:00
a5d291cea8
spaceapiccc(host): setup ansible-pull
Some checks failed
/ Ansible Lint (push) Failing after 57s
2026-01-25 20:58:57 +01:00
652aa32e21
docker_compose(role): document new build and pull arguments
Some checks failed
/ Ansible Lint (push) Failing after 40s
2026-01-25 20:49:39 +01:00
6 changed files with 11 additions and 6 deletions

View file

@ -1,5 +1,5 @@
# renovate: datasource=github-releases depName=netbox packageName=netbox-community/netbox # renovate: datasource=github-releases depName=netbox packageName=netbox-community/netbox
netbox__version: "v4.5.0" netbox__version: "v4.5.1"
netbox__config: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/netbox/netbox/configuration.py.j2') }}" netbox__config: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/netbox/netbox/configuration.py.j2') }}"
netbox__custom_pipeline_oidc_group_and_role_mapping: true netbox__custom_pipeline_oidc_group_and_role_mapping: true

View file

@ -232,6 +232,7 @@ ansible_pull_hosts:
public-reverse-proxy: public-reverse-proxy:
zammad: zammad:
ntfy: ntfy:
spaceapiccc:
msmtp_hosts: msmtp_hosts:
hosts: hosts:
renovate_hosts: renovate_hosts:

View file

@ -19,7 +19,7 @@ services:
- prom_data:/prometheus - prom_data:/prometheus
alertmanager: alertmanager:
image: docker.io/prom/alertmanager:v0.30.0 image: docker.io/prom/alertmanager:v0.30.1
container_name: alertmanager container_name: alertmanager
command: command:
- '--config.file=/etc/alertmanager/alertmanager.yaml' - '--config.file=/etc/alertmanager/alertmanager.yaml'
@ -59,7 +59,7 @@ services:
- /dev/null:/etc/prometheus/pve.yml - /dev/null:/etc/prometheus/pve.yml
loki: loki:
image: docker.io/grafana/loki:3.6.3 image: docker.io/grafana/loki:3.6.4
container_name: loki container_name: loki
ports: ports:
- 13100:3100 - 13100:3100

View file

@ -1,7 +1,7 @@
--- ---
services: services:
ntfy: ntfy:
image: docker.io/binwiederhier/ntfy:v2.15.0 image: docker.io/binwiederhier/ntfy:v2.16.0
container_name: ntfy container_name: ntfy
command: command:
- serve - serve

View file

@ -33,7 +33,7 @@ services:
- pretalx_net - pretalx_net
pretalx: pretalx:
image: docker.io/pretalx/standalone:v2025.1.0 image: docker.io/pretalx/standalone:v2025.2.2
entrypoint: gunicorn entrypoint: gunicorn
command: command:
- "pretalx.wsgi" - "pretalx.wsgi"
@ -78,7 +78,7 @@ services:
- pretalx_net - pretalx_net
celery: celery:
image: docker.io/pretalx/standalone:v2025.1.0 image: docker.io/pretalx/standalone:v2025.2.2
command: command:
- taskworker - taskworker
restart: unless-stopped restart: unless-stopped

View file

@ -19,6 +19,10 @@ Should work on Debian-based distributions.
- `docker_compose__configuration_files`: A list of configuration files to deploy to the `/ansible_docker_compose/configs/` directory. - `docker_compose__configuration_files`: A list of configuration files to deploy to the `/ansible_docker_compose/configs/` directory.
- `docker_compose__configuration_files.*.name`: The name of the configuration file. - `docker_compose__configuration_files.*.name`: The name of the configuration file.
- `docker_compose__configuration_files.*.content`: The content to deploy to the configuration file. - `docker_compose__configuration_files.*.content`: The content to deploy to the configuration file.
- `docker_compose__build`: Whether or not to build images before starting containers.
Defaults to `always`.
- `docker_compose__pull`: Whether or not to pull images before starting containers.
Defaults to `always`.
## Links & Resources ## Links & Resources