Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1.56 KB

aws_eks.md

File metadata and controls

34 lines (29 loc) · 1.56 KB

List AWS EKS information

define

  • node
  • pod
  • Service in Kubernetes is an abstraction
    • A Service is defined using YAML (preferred) or JSON
    • Services match a set of Pods using labels and selectors
    • defines a logical set of Pods
    • policy by which to access them
  • LabelSelector

command

  • The common format of a kubectl command is: kubectl action resource
  • kubectl get - list resources
  • kubectl describe - show detailed information about a resource
  • kubectl logs - print the logs from a container in a pod
  • kubectl exec - execute a command on a container in a pod

ECR login

reference