Home > Back-end >  How to find Linux kernel version of my EKS Pod Containers?
How to find Linux kernel version of my EKS Pod Containers?

Time:03-10

uname -srm

THis gives Linux kernel version.

How to find Linux kernel version of all the containers running inside my EKS deployments? CAn we do it using kubectl command?

CodePudding user response:

You can check with kubectl if your pod support bash: kubectl exec --namespace <if not default> <pod> -- uname -srm

  • Related