mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
Signed-off-by: Ratul Basak <ratulbasak93@gmail.com> Signed-off-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com> Co-authored-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com>
9 lines
205 B
Lua
9 lines
205 B
Lua
local os = require("os")
|
|
|
|
local replicas = tonumber(actionParams["replicas"])
|
|
if not replicas then
|
|
error("invalid number: " .. actionParams["replicas"], 0)
|
|
end
|
|
|
|
obj.spec.replicas = replicas
|
|
return obj
|