25 Şubat 2022 Cuma

kubectl api-resources seçeneği - Kurulu olan API'leri Gösterir

Giriş
Kurulu olan API'leri gösterir. Açıklaması şöyle
All interactions with Kubernetes objects, directly or indirectly, happen through Kubernetes API - a highly structured masterpiece of software design.
...
You can always check the list of available API resources using kubectl api-resources command
Çok fazla API var. Şeklen şöyle


Örnek
Şöyle yaparız
# kubectl api-resources
NAME SHORTNAMES APIVERSION NAMESPACED KIND
namespaces ns     v1 false Namespace
nodes no v1 false Node
pods po v1 true Pod
deployments deploy apps/v1 true Deployment
jobs batch/v1 true Job

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