Files
local-proxy/local-proxy.json
gyurix f9263f0cfc
All checks were successful
continuous-integration/drone/push Build is passing
Update node selector and image references in configuration files
2025-03-05 17:32:17 +01:00

52 lines
1.1 KiB
JSON

{
"main": {
"SERVICE_NAME": "local-loadbalancer",
"DOMAIN": "null"
},
"containers": [
{
"IMAGE": "safebox/local-loadbalancer:2.5.4",
"NAME": "localloadbalancer",
"SELECTOR": "localloadbalancer",
"UPDATE": "true",
"ROLES": "frontend-proxy",
"MEMORY": "256M",
"NETWORK": "localloadbalancer",
"DNS": [ "coredns" ],
"READYNESS": [
{"tcp": "80"},
{"HTTP": "8080"},
{"EXEC": "/ready.sh"}
],
"PORTS": [
{
"SOURCE": "80",
"DEST": "80",
"TYPE": "tcp"
},
{
"SOURCE": "443",
"DEST": "443",
"TYPE": "tcp"
}
],
"VOLUMES": [
],
"READYNESS": [
{"tcp": "80"},
{"HTTP": "8080"},
{"EXEC": "/ready.sh"}
],
"EXTRA": "--restart=always --log-opt max-size=500m --label ROLES=loadbalancer" ,
"DEPEND": [ ],
"START_ON_BOOT": "true",
"CMD": "null",
"PRE_START": [ ],
"POST_START": [
"firewall-localloadbalancer-dns",
"firewall-localloadbalancer-to-smarthostbackend"
]
}
]
}