Search code examples
amazon-web-serviceskuberneteslinux-kernelamazon-eks

How to find Linux kernel version of my EKS Pod Containers?


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?


Solution

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