Support load balancing in caddy
This commit is contained in:
parent
83b6615503
commit
d0e2a1a494
@ -1,9 +1,11 @@
|
|||||||
{
|
{
|
||||||
https_port 8888
|
http_port 8888
|
||||||
http_port 8887
|
https_port 8887
|
||||||
|
local_certs
|
||||||
|
admin off
|
||||||
}
|
}
|
||||||
|
|
||||||
localhost:8888 {
|
http://localhost:8888 {
|
||||||
handle_path /admin/terminal/* {
|
handle_path /admin/terminal/* {
|
||||||
reverse_proxy /* http://127.0.0.1:7681
|
reverse_proxy /* http://127.0.0.1:7681
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,5 @@ COPY Caddyfile ./
|
|||||||
COPY --from=build /home/app/bin/faaso-daemon /home/app/bin/faaso /usr/bin/
|
COPY --from=build /home/app/bin/faaso-daemon /home/app/bin/faaso /usr/bin/
|
||||||
|
|
||||||
RUN mkdir /secrets
|
RUN mkdir /secrets
|
||||||
RUN echo "sarasa" > /secrets/sarlanga
|
|
||||||
|
|
||||||
CMD ["/usr/bin/multirun", "-v", "faaso-daemon", "caddy run --config Caddyfile"]
|
CMD ["/usr/bin/multirun", "-v", "faaso-daemon", "caddy run --config Caddyfile"]
|
||||||
|
@ -20,37 +20,46 @@ module Proxy
|
|||||||
def self.update_proxy_config
|
def self.update_proxy_config
|
||||||
docker_api = Docr::API.new(Docr::Client.new)
|
docker_api = Docr::API.new(Docr::Client.new)
|
||||||
containers = docker_api.containers.list(all: true)
|
containers = docker_api.containers.list(all: true)
|
||||||
|
config = <<-CONFIG
|
||||||
funkos = [] of String
|
|
||||||
containers.each { |container|
|
|
||||||
names = container.names.select &.starts_with? "/faaso-"
|
|
||||||
next if names.empty?
|
|
||||||
funkos << names[0][7..]
|
|
||||||
}
|
|
||||||
funkos.sort!
|
|
||||||
|
|
||||||
config = %(
|
|
||||||
{
|
{
|
||||||
https_port 8888
|
http_port 8888
|
||||||
http_port 8887
|
https_port 8887
|
||||||
local_certs
|
local_certs
|
||||||
|
admin off
|
||||||
}
|
}
|
||||||
|
|
||||||
localhost:8888 {
|
http://localhost:8888 {
|
||||||
handle_path /admin/terminal/* {
|
handle_path /admin/terminal/* {
|
||||||
reverse_proxy /* http://127.0.0.1:7681
|
reverse_proxy /* http://127.0.0.1:7681
|
||||||
}
|
}
|
||||||
handle_path /admin/* {
|
handle_path /admin/* {
|
||||||
reverse_proxy /* http://127.0.0.1:3000
|
reverse_proxy /* http://127.0.0.1:3000
|
||||||
}
|
}
|
||||||
) + funkos.map { |funko| %(
|
|
||||||
handle_path /faaso/#{funko.split("-")[0]}/* {
|
|
||||||
reverse_proxy /* http://#{funko}:3000
|
CONFIG
|
||||||
|
|
||||||
|
funkos = Funko::Funko.from_docker
|
||||||
|
funkos.each do |funko|
|
||||||
|
next if funko.name == "proxy"
|
||||||
|
containers = funko.containers
|
||||||
|
next if containers.empty?
|
||||||
|
funko_urls = containers.map { |container|
|
||||||
|
"http://#{container.names[0].lstrip("/")}:3000"
|
||||||
}
|
}
|
||||||
) }.join("\n") + "}"
|
config += %(
|
||||||
# FIXME that 👆🏼 is not a functional load balancing config if scale > 1
|
handle_path /faaso/#{funko.name}/* {
|
||||||
|
reverse_proxy /* #{funko_urls.join(" ")} {
|
||||||
|
health_uri /ping
|
||||||
|
fail_duration 30s
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
end
|
||||||
|
config += "\n}"
|
||||||
|
|
||||||
if @@current_config != config
|
if @@current_config != config
|
||||||
|
Log.info { "Updating proxy config" }
|
||||||
File.open("Caddyfile", "w") do |file|
|
File.open("Caddyfile", "w") do |file|
|
||||||
file << config
|
file << config
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user