Differences between revisions 2 and 11 (spanning 9 versions)
Revision 2 as of 2019-04-01 08:21:49
Size: 129
Editor: PieterSmit
Comment:
Revision 11 as of 2019-10-10 09:56:23
Size: 980
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 =
 * K8s networking https://sookocheff.com/post/kubernetes/understanding-kubernetes-networking-model/
Line 4: Line 6:
 * https://www.replex.io/blog/everything-you-need-to-know-about-kubernetes-quality-of-service-qos-classes
Line 5: Line 8:
== Child Pages ==
Line 6: Line 10:

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

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)