'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 1:[1]

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 gohm'c