Spoolie
Spoolie

Reputation: 31

Find Kubernetes namespace creator

How do you find the creator of a namespace in Kubernetes? There was a debate today about who had created a namespace and we weren't able to find who the creator was.

Upvotes: 2

Views: 414

Answers (1)

F1ko
F1ko

Reputation: 4224

If you didn't configure it already you cannot, the information is not being saved by Kubernetes unless you explicitly want to log it.

In order to do so you would have to activate audit logs. Audit logs can be customized to a high degree and can contain information such as when did who do what. This also includes the creation of namespaces.

Upvotes: 2

Related Questions