Sébastien Allamand

@allamand

Joined on Sep 22, 2018

  • install eks-node-viewer sudo curl -L https://github.com/awslabs/eks-node-viewer/releases/download/v0.7.1/eks-node-viewer_Linux_x86_64 -o /usr/local/bin/eks-node-viewer && sudo chmod +x $_ alias eks-node-viewer='eks-node-viewer -extra-labels=karpenter.sh/nodepool,kubernetes.io/hostname,beta.kubernetes.io/arch,topology.kubernetes.io/zone' eks-node-viewer image Accessing the app If you're experiencing 500 HTTP error from the UI app, this might be because the catalog component didn't bootstrap properly (as it uses local data, and not an actual EBS volume which you'll get to experiment with in the next section). To fix it, simply restart the deployment of the catalog app by running the following command: kubectl rollout restart deployment retail-store-app-catalog
     Like  Bookmark
  • Using AWS NLB manually targeting an EKS Service exposing UDP traffic Repost on medium : https://medium.com/@allamand/using-aws-nlb-manually-targeting-an-eks-service-exposing-udp-traffic-17053ecd8f52 Problem encountered with EKS 1.16 If we try to create a service of type Network Load Balancer (NLB) for UDP traffic we can get this error : Error creating load balancer (will retry): failed to ensure load balancer for service default/test: Only TCP LoadBalancer is supported for AWS ELB This is because the UDP support for NLB is more recent than the functionality developed inside kubernetes for creating NLB load balancers.
     Like  Bookmark