mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-03 14:48:25 +00:00
10 lines
219 B
Lua
10 lines
219 B
Lua
actions = {}
|
|
actions["restart"] = {}
|
|
|
|
local paused = false
|
|
if obj.spec.paused ~= nil then
|
|
paused = obj.spec.paused
|
|
actions["pause"] = {paused}
|
|
end
|
|
actions["resume"] = {["disabled"] = not(paused)}
|
|
return actions
|