I am using kubernetes-client/python and want to write a method which will block control until a set of Pods is in Ready state (Running state). I found that kubernetes supports wait –for command for doing same thing via command. Can someone please help me with how to achieve same functionality using kubernetes python client. To be precise i am mostly
Tag: kubernetes
How to obtain the Kubeflow pipeline run name from within a component?
I’m working with Kubeflow pipelines. I would like to access the “Run name” from inside the a task component. For example in the below image the run name is “My first XGBoost run” – as seen in the title. I know for example it’s possible to obtain the workflow ID by passing the parameter {{workflow.uid}} as a command line argument.
URL for IBM Cloud Kubernetes deployment
This is a bit of a beginner’s question. I’m attempting to get a simple Hello World Python flask application deployed in a kubernetes cluster on IBM Cloud. The application (main.py): I build my Docker image with docker build –rm -t kube-hw . and Dockerfile: I run it locally with docker run –rm -p 5000:5000 kube-hw. That works fine. I can