Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
automatizace:kubernetes [2022/02/18 16:42]
tomas [Kubectl]
automatizace:kubernetes [2022/04/08 17:07]
tomas
Line 48: Line 48:
 kubectl config set-context --current --namespace=NS ... nastavi vychozi namespace\\ kubectl config set-context --current --namespace=NS ... nastavi vychozi namespace\\
  
 +=====nodes=====
 kubectl get nodes ... Seznam nodu\\ kubectl get nodes ... Seznam nodu\\
 +
 +=====pods=====
 +kubectl get pods\\
 +kubectl describe pod aaaa -n nnnn ... podrobne informace o podu\\
 kubectl get pod,deploy,rs -n default ... seznam podu, deployu a replika setu v namespace default\\ kubectl get pod,deploy,rs -n default ... seznam podu, deployu a replika setu v namespace default\\
 kubectl describe replicaset.extensions/aaa-6d5f854689 -n default ... popis repliky podu\\ kubectl describe replicaset.extensions/aaa-6d5f854689 -n default ... popis repliky podu\\
Line 91: Line 96:
  
 ==network policies== ==network policies==
-kubectl get networkpolicy -n namespace +kubectl get networkpolicy -n namespace ... seznam sitovych pravidel (firewall)\\ 
-kubectl delete networkpolicy default-deny-all -n namespace+kubectl describe networkpolicy Policy1 -n namespace ... popis sitovych pravidel\\ 
 +kubectl edit netpol access-nginx -n default ... editace sitovych pravidel\\ 
 +KUBE_EDITOR='vim' kubectl edit netpol access-nginx -n default -o json ... editace policy v VI ve formatu JSON\\ 
 +kubectl delete networkpolicy default-deny-all -n namespace ... smazani sitoveho pravidla\\