17 Mart 2022 Perşembe

kubectl annotate pod seçeneği

Annotation Eklemek
Örnek - pod
Şöyle yaparız
kubectl annotate pod <podname> drain.planetscale.com/started="Draining for blog"
Annotation Kaldırmak
Açıklaması şöyle
Use minus - sign at the end of the annotation in kubectl annotate
Örnek - service
Annotation'nı kaldırmak için şöyle yaparız
kubectl annotate service shopping-cart prometheus.io/scrape-
Örnek - pod
Annotation'nı kaldırmak için şöyle yaparız
kubectl annotate pod <podname> drain.planetscale.com/started=-

Hiç yorum yok:

Yorum Gönder

KEDA - Kubernetes Event-Driven Autoscaling

Örnek Şöyle yaparız apiVersion: keda.sh/v1alpha1 kind: ScaledObject metadata:   name: reactive-springboot-app-scaler   namespace: default sp...