mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-28 12:27:18 +00:00
11 lines
158 B
Lua
11 lines
158 B
Lua
local actions = {}
|
|
actions["restart"] = {}
|
|
|
|
actions["scale"] = {
|
|
["params"] = {
|
|
{
|
|
["name"] = "replicas"
|
|
}
|
|
},
|
|
}
|
|
return actions
|