mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
31 lines
No EOL
542 B
Lua
31 lines
No EOL
542 B
Lua
local actions = {}
|
|
|
|
actions["restart"] = {
|
|
["iconClass"] = "fa fa-fw fa-redo"
|
|
}
|
|
|
|
local paused = false
|
|
if obj.spec.paused ~= nil then
|
|
paused = obj.spec.paused
|
|
end
|
|
|
|
actions["pause"] = {
|
|
["disabled"] = paused,
|
|
["iconClass"] = "fa fa-fw fa-pause-circle"
|
|
}
|
|
|
|
actions["resume"] = {
|
|
["disabled"] = not(paused),
|
|
["iconClass"] = "fa fa-fw fa-play-circle"
|
|
}
|
|
|
|
actions["scale"] = {
|
|
["iconClass"] = "fa fa-fw fa-plus-circle",
|
|
["params"] = {
|
|
{
|
|
["name"] = "replicas"
|
|
}
|
|
},
|
|
}
|
|
|
|
return actions |