Differences between revisions 10 and 14 (spanning 4 versions)
Revision 10 as of 2019-10-07 22:08:11
Size: 879
Editor: PieterSmit
Comment:
Revision 14 as of 2024-03-09 11:40:02
Size: 1212
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 * 2024 - k8s admin - https://overcast.blog/17-kubernetes-libraries-you-should-be-using-in-2024-1c181f15a0aa
 * K8s networking
   * CNI - Calico + ebpf
   * https://sookocheff.com/post/kubernetes/understanding-kubernetes-networking-model/
   * https://itnext.io/routing-external-traffic-into-my-kubernetes-services-deb3e872f7bd

Kubernetes / k8s

Child Pages

Security

---

Patch a deployment to add cpu reservation

  • kubectl patch deployment metrics-server -p '{"spec":{"template":{"spec":{"containers":[{ "name": "metrics-server","resources":{"requests":{"cpu":"20m"}} }]}} }}'

Edit a deployment, e.g. remove a startup container failing

  • Edit deployment

    # kubectl --namespace nsp-tst edit deployments myservice 


CategoryK8sKubernetes

k8s (last edited 2024-05-09 21:29:26 by PieterSmit)