• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

258
Views
Cliente de Kubernetes python equivalente al comando "kubectl wait --for"

Estoy usando kubernetes-client/python y quiero escribir un método que bloquee el control hasta que un conjunto de Pods esté en estado Listo (estado En ejecución). Descubrí que kubernetes admite el comando wait --for para hacer lo mismo a través del comando. ¿Puede alguien ayudarme con la forma de lograr la misma funcionalidad usando el cliente Python de Kubernetes?

Para ser precisos, estoy principalmente interesado en el equivalente de-

 kubectl wait --for condition=Ready pod -l 'app in (kafka,elasticsearch)'
about 3 years ago · Santiago Trujillo
1 answers
Answer question

0

Puede utilizar la funcionalidad de watch disponible en la biblioteca del cliente.

 from kubernetes import client, config, watch config.load_kube_config() w = watch.Watch() core_v1 = client.CoreV1Api() for event in w.stream(func=core_v1.list_namespaced_pod, namespace=namespace, label_selector=label, timeout_seconds=60): if event["object"].status.phase == "Running": w.stop() end_time = time.time() logger.info("%s started in %0.2f sec", full_name, end_time-start_time) return # event.type: ADDED, MODIFIED, DELETED if event["type"] == "DELETED": # Pod was deleted while we were waiting for it to start. logger.debug("%s deleted before it started", full_name) w.stop() return
about 3 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error