Compare commits

...

2 commits

Author SHA1 Message Date
37f8115d09 Update all stable non-major dependencies
Some checks failed
/ Ansible Lint (push) Failing after 48s
/ Ansible Lint (pull_request) Failing after 49s
2026-01-25 12:30:41 +00:00
f887de25c5 make building and pulling configurable
Some checks failed
/ Ansible Lint (push) Failing after 40s
2026-01-25 13:26:20 +01:00
6 changed files with 10 additions and 8 deletions

View file

@ -1,5 +1,5 @@
# 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__custom_pipeline_oidc_group_and_role_mapping: true

View file

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

View file

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

View file

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

View file

@ -1 +1,3 @@
docker_compose__build: always
docker_compose__configuration_files: [ ]
docker_compose__pull: always

View file

@ -79,8 +79,8 @@
community.docker.docker_compose_v2:
project_src: /ansible_docker_compose
state: present
build: always
pull: always
build: "{{ docker_compose__build }}"
pull: "{{ docker_compose__pull }}"
remove_orphans: true
become: true