feat: split imap monitoring into k3s & legacy

This commit is contained in:
2026-03-29 04:01:53 +02:00
parent de0ba6d093
commit 7ca3308e64
4 changed files with 244 additions and 66 deletions

12
Dockerfile.smtp_check Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine
RUN apk add --no-cache py3-pip
WORKDIR /app
RUN python3 -m pip install --no-cache-dir --break-system-packages requests PyYaml
COPY check_smtp_imap.py .
EXPOSE 5000/tcp
ENTRYPOINT ["python"]
CMD ["check_smtp_imap.py"]