mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
16 lines
254 B
Lua
16 lines
254 B
Lua
local actions = {}
|
|
|
|
actions["restart"] = {
|
|
["iconClass"] = "fa fa-fw fa-redo"
|
|
}
|
|
|
|
actions["scale"] = {
|
|
["iconClass"] = "fa fa-fw fa-plus-circle",
|
|
["params"] = {
|
|
{
|
|
["name"] = "replicas"
|
|
}
|
|
},
|
|
}
|
|
|
|
return actions
|