mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-30 13:27:18 +00:00
11 lines
258 B
Lua
11 lines
258 B
Lua
|
|
local os = require("os")
|
||
|
|
if obj.metadata == nil then
|
||
|
|
obj.metadata = {}
|
||
|
|
end
|
||
|
|
if obj.metadata.annotations == nil then
|
||
|
|
obj.metadata.annotations = {}
|
||
|
|
end
|
||
|
|
|
||
|
|
obj.metadata.annotations["kubectl.kubernetes.io/restartedAt"] = os.date("!%Y-%m-%dT%XZ")
|
||
|
|
return obj
|