mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #168] health and disk I/O error #67
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#67
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @vm86 on GitHub (May 21, 2019).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/168
The acme-dns has a unexpected behavior. When I call https://github.com/joohoi/acme-dns#health-check-endpoint we see a report it works correct, but it doesn't correct, we can't do any operations with sqlite.
acme-dns version: 0.7.2
@Kugelschieber commented on GitHub (Jun 13, 2019):
The health check endpoint can be used to ensure the server is reachable. But it does not validate the server is functioning properly.
@vm86 commented on GitHub (Sep 3, 2019):
@Kugelschieber
So why is health check here if it doesn't check anything?
@Kugelschieber commented on GitHub (Sep 3, 2019):
It's just an endpoint to check wether the service is reachable or not. It does not make sure it's working correctly. My first guess is that you have misconfigured the server somehow.
@vm86 commented on GitHub (Sep 3, 2019):
Acme-dns is working in kubernetes. SQLite located in cephfs. SQLite is becoming unreachable when cephfs doesn't availiable or restarted. Your health check doesn't check it, so kubernetes can't restart acme-dns. I receive I/O error after this situation.
@Kugelschieber commented on GitHub (Sep 3, 2019):
Running acme-dns inside Kubernetes isn't a good idea. Kubernetes uses port 53 (DNS) for service discovery that collides with acme-dns.
@vm86 commented on GitHub (Sep 5, 2019):
@socketpair