mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
Signed-off-by: Rouke Broersma <mobrockers@gmail.com> Signed-off-by: Rouke Broersma <rouke.broersma@infosupport.com>
10 lines
258 B
Lua
10 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
|