Is anyone using using Kamal (formerly known as MRSK) for Phoenix deployment?
It’s a new tool, it looks nice! Before diving in I’d like to hear any experience pro or con.
Is anyone using using Kamal (formerly known as MRSK) for Phoenix deployment?
It’s a new tool, it looks nice! Before diving in I’d like to hear any experience pro or con.
A few cons depending on your needs:
I’m sure I can find more, it’s useful to help bootstrap your deployments but it isn’t an all in one solution.
no host updates
I think doing apt install unattended-upgrades
in Debian/Ubuntu solves?
requires manual load balancer setup
With something like Caddy it should be easy to set up one
:80 {
encode gzip
reverse_proxy {
to 192.168.1.10:8080 192.168.1.11:8080 192.168.1.12:8080
lb_policy round_robin
health_check /health
health_check_interval 10s
}
}