ingress-nginx-helm/rootfs/etc/nginx/lua/balancer/resty.lua

26 lines
501 B
Lua
Raw Normal View History

local util = require("util")
local _M = {}
function _M.new(self, o)
o = o or {}
setmetatable(o, self)
self.__index = self
return o
end
function _M.sync(self, backend)
self.traffic_shaping_policy = backend.trafficShapingPolicy
self.alternative_backends = backend.alternativeBackends
local nodes = util.get_nodes(backend.endpoints)
local changed = not util.deep_compare(self.instance.nodes, nodes)
if not changed then
return
end
self.instance:reinit(nodes)
end
return _M