21 Mart 2022 Pazartesi

kubectl get cs seçeneği - Kubernetes Bileşenleri Hakkında Bilgi Verir

Giriş
Kubernetes bileşenleri (Component) hakkında bilgi verir

Örnek
Şöyle yaparız
$ kubectl get cs
NAME                 STATUS      MESSAGE              ERROR
etcd-0               Unhealthy   Get https://127.0.0.1:4001/health..
controller-manager   Healthy     ok
scheduler            Healthy     ok
etcd-1               Unhealthy
Örnek
Şöyle yaparız
$ kubectl get cs
NAME STATUS MESSAGE ERROR
scheduler Healthy ok
controller-manager Healthy ok
etcd-0 Healthy {"health": "true"}

Hiç yorum yok:

Yorum Gönder

Cluster Propotional Autoscaler - ReplicaSet Ekler/Siler

Giriş Açıklaması şöyle CPA aims to horizontally scale the number of Pod replicas based on the cluster’s scale. A common example is DNS ser...