Differences between revisions 1 and 15 (spanning 14 versions)
Revision 1 as of 2019-04-01 08:15:23
Size: 111
Editor: PieterSmit
Comment:
Revision 15 as of 2024-03-17 08:01:06
Size: 1364
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Kubernetes = ## page was renamed from Kubernetes
= Kubernetes / k8s =
 * 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
Line 4: Line 10:
 * https://www.replex.io/blog/everything-you-need-to-know-about-kubernetes-quality-of-service-qos-classes

== Child Pages ==
<<ChildPages>>

== k8s overview ==
* Things to know about k8s in 2024 - [[https://overcast.blog/13-kubernetes-configurations-you-should-know-in-2024-54eec72f307e]]

== Security ==
 * NCC - https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2019/august/tools-and-methods-for-auditing-kubernetes-rbac-policies/


---
== 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

Kubernetes / k8s

Child Pages

k8s overview

* Things to know about k8s in 2024 - https://overcast.blog/13-kubernetes-configurations-you-should-know-in-2024-54eec72f307e

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-03-17 08:01:06 by PieterSmit)