Building a Fully Routed Kubernetes Cluster with Calico CNI | Part 1: Cluster Setup & BGP Routing

Поделиться
HTML-код
  • Опубликовано: 8 ноя 2024

Комментарии • 24

  • @OrgNetworks
    @OrgNetworks 3 месяца назад +1

    I got bird router running and all connections established in calico, thanks again.

  • @eldarmustafayev7782
    @eldarmustafayev7782 3 месяца назад

    amazing. please add more calico deep dives.

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад

      I'm glad you liked it! Part 2 (load balancing and traffic policies) is on the way!

  • @nidaldarwish9849
    @nidaldarwish9849 3 месяца назад

    amazing demo! please continue and add another demo about how to migrate from Weav network to Calico

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад

      Thanks! Will do! Do you have on-prem deployment? Are you interested in overlay or routed network? How do you handle load balancing? Just asking to see what can be interesting.

    • @nidaldarwish9849
      @nidaldarwish9849 3 месяца назад

      @@LinuxCloudHacks Actually I am planning to have an on-prem cluster, and regarding the load balancer I have an idea to use an external load balancer like HAProxy, do you think it is a good idea to have such a load balancer?

  • @gmas
    @gmas 3 месяца назад +1

    ¡Gracias! Amazing presentation 👏

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад +1

      Thank you too! Please let me know if there are any topics that you are interested in or have any questions! Have a great day!

  • @robertscott5535
    @robertscott5535 3 месяца назад

    Well done!

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад

      Thanks! Later today there should be part two. Stay tuned.

  • @OrgNetworks
    @OrgNetworks 3 месяца назад

    Hello and thank you for this video. I can't seem to find part:2 of this series. Could you please link it if it exists? Thank you!

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад +1

      Hello! Video should be published this Sunday/Monday. Just need to find some time to finish edit. Stay tuned!

    • @OrgNetworks
      @OrgNetworks 3 месяца назад

      @@LinuxCloudHacks Awesome, thanks! Also, another great video would be how to set up non-host node for calico. I was able to do it but I am not sure it is setup correctly to be used appropriately. Documentation isn't very helpful on checking if it is working properly. Thanks again for your videos!

    • @LinuxCloudHacks
      @LinuxCloudHacks  3 месяца назад

      Certainly. Great idea for a video. Will definitely create one. First I need to cover ebpf, networking policies, traffic encryption and then move to more advanced topics.

  • @bluesquadron593
    @bluesquadron593 3 месяца назад

    RUclips algorithm brought me here

  • @AdrianuX1985
    @AdrianuX1985 4 месяца назад +1

    Pierwszy +

  • @layalsadek935
    @layalsadek935 21 день назад

    Should Bird BGP VM be on the same network as our k8s nodes?

    • @LinuxCloudHacks
      @LinuxCloudHacks  19 дней назад +1

      Technically BGP routers do not need to be directly connected as they use TCP to communicate. There can be multiple hops in-between. Although for simplicity of configuration, stability, security etc. it's best to have them directly connected (one of the interface of the VM to be on the k8s network).

  • @layalsadek935
    @layalsadek935 20 дней назад

    Also how do you know the AS numbers that you mentioned at minute 13:00?

    • @LinuxCloudHacks
      @LinuxCloudHacks  20 дней назад +1

      Like in RFC1918 (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) you have private IPs for your own internal use that are not routed outside of your network, in BGP you have private BGP AS ranges that you can use and they are not advertised to the outside. It's called BGP Private AS Range and they are AS 64512 to 65534 and 4200000000 to 4294967294.

    • @layalsadek935
      @layalsadek935 16 дней назад

      @@LinuxCloudHacks Thank you for the response!