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>
12 lines
213 B
Lua
12 lines
213 B
Lua
local actions = {}
|
|
actions["restart"] = {}
|
|
|
|
actions["scale"] = {
|
|
["params"] = {
|
|
{
|
|
["name"] = "replicas",
|
|
["default"] = tostring(obj.spec.replicas)
|
|
}
|
|
},
|
|
}
|
|
return actions
|