razonyang / hugo-theme-bootstrap-comments

1 stars 0 forks source link

posts/kubernetes-networking/ #65

Closed utterances-bot closed 1 year ago

utterances-bot commented 1 year ago

Kubernetes networking - Alekc's Blog

Kubernetes networking Pause container In Kubernetes, the pause container serves as the “parent container” for all of the containers in your pod, and it has two main responsibilities: it serves as the basis of Linux namespace sharing in the pod with PID (process ID) namespace sharing enabled, it serves as PID 1 for each pod and reaps zombie processes. In Linux, each running process communicates within a network namespace that provides a logical networking stack with its own routes, firewall rules, and network devices.

https://blog.alekc.org/posts/kubernetes-networking/

sdarwin commented 1 year ago

When declaring a Kubernetes Service, you can specify whether or not you want in-cluster load balancing to be done using iptables or IPVS.

If ipvs is configured when launching kube-proxy with --proxy-mode=ipvs, it would therefore be more of a "global" type of setting and not happen "when declaring a kubernetes service".

razonyang commented 1 year ago

Hi @alekc, I think the comment comes from your site, in order to get notified when users commenting, you may need to replace the utterances.repo as your own repo.

alekc commented 1 year ago

@razonyang thanks for the ping. This was... unexpected.

Changed config setting.

razonyang commented 1 year ago

thanks for the ping

My pleasure.