Kubernetes: How to implement a Network ResourceQuota Kubernetes: How to implement a Network ResourceQuota kubernetes kubernetes

Kubernetes: How to implement a Network ResourceQuota


The only thing you can do is to apply Support traffic shaping using kubernetes.io/ingress-bandwidth and kubernetes.io/egress-bandwidth annotations. It can only be applied to your PODS.

Example:

apiVersion: v1kind: Podmetadata:  annotations:    kubernetes.io/ingress-bandwidth: 1M    kubernetes.io/egress-bandwidth: 1M.. 

Also official k8s documentation gives link to bandwidth plugin. Try to apply in for your needs.

And read github related topic.