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

Kubernetes kind: Cluster

Örnek Şöyle yaparız apiVersion: cluster.k8s.io/v1alpha1 kind: Cluster metadata: name: my-cluster spec: autoscaler: enabled: true ...