fix: podman connect

This commit is contained in:
Clément Désiles
2025-12-21 22:25:57 +01:00
parent c197f28013
commit 10f4eb5817
23 changed files with 291 additions and 571 deletions
@@ -25,10 +25,10 @@ server {
ssl_certificate_key /etc/letsencrypt/live/{{ uptime_kuma_nginx_hostname }}/privkey.pem;
# SSL configuration
ssl_protocols {{ nginx_ssl_protocols }};
ssl_prefer_server_ciphers {{ 'on' if nginx_ssl_prefer_server_ciphers else 'off' }};
ssl_protocols {{ nginx_ssl_protocols | default('TLSv1.3') }};
ssl_prefer_server_ciphers on;
{% if nginx_log_backend == 'journald' %}
{% if nginx_log_backend | default('journald') == 'journald' %}
access_log syslog:server=unix:/dev/log,nohostname,tag=nginx_uptime_kuma;
error_log syslog:server=unix:/dev/log,nohostname,tag=nginx_uptime_kuma;
{% else %}
@@ -8,9 +8,9 @@ Type=oneshot
RemainAfterExit=true
User={{ ansible_user }}
Group={{ ansible_user }}
WorkingDirectory={{ podman_projects_dir }}/uptime-kuma
ExecStart=/usr/bin/podman-compose up -d
ExecStop=/usr/bin/podman-compose down
WorkingDirectory={{ podman_projects_dir | default('/opt/podman') }}/uptime-kuma
ExecStart=/usr/bin/podman play kube --replace uptime-kuma.yaml
ExecStop=/usr/bin/podman play kube --down uptime-kuma.yaml
Restart=on-failure
RestartSec=10
@@ -0,0 +1,34 @@
---
apiVersion: v1
kind: Pod
metadata:
name: uptime-kuma
labels:
app: uptime-kuma
spec:
containers:
- name: server
image: {{ uptime_kuma_image }}:{{ uptime_kuma_version }}
ports:
- containerPort: 3001
hostPort: {{ uptime_kuma_port }}
env:
- name: TZ
value: "{{ uptime_kuma_timezone }}"
volumeMounts:
- name: localtime
mountPath: /etc/localtime
readOnly: true
- name: uptime-kuma-data
mountPath: /app/data
restartPolicy: Always
volumes:
- name: localtime
hostPath:
path: /etc/localtime
type: File
- name: uptime-kuma-data
hostPath:
path: {{ uptime_kuma_data_dir }}
type: Directory