About 2,040,000 results
Open links in new tab
  1. python - Sharing secrets in Kubeflow pipeline - Stack Overflow

    Mar 1, 2021 · I want to share some secrets with my Kubeflow pipeline so I can use them as environment variables in my containers. I've written a pipeline-secrets.yaml that looks like this: apiVersion: v1 …

  2. How can you specify local path of InputPath or OutputPath in Kubeflow ...

    The Kubeflow Pipelines samples follow this pattern. For reusable components, you define the pipeline inputs and outputs as part of the YAML specification for the component. In that case you can specify …

  3. python - How do I define pipeline-level volumes in kubeflow pipelines ...

    Jul 28, 2020 · How do I define pipeline-level volumes in kubeflow pipelines to share across components? Asked 5 years, 4 months ago Modified 5 years, 3 months ago Viewed 6k times

  4. Mounting an existing volume from a Kubeflow Pipeline: kfp.VolumeOP ...

    Dec 30, 2022 · I am new to KubeFlow and trying to port / adapt an existing solution to run in KubeFlow pipelines. The issue I am solving now is that the existing solution shared data via a mounted volume. …

  5. RBAC access denied when deploying an API on kubeflow cluster

    Dec 8, 2022 · I have deployed kubeflow on a cluster and I managed to configure everything to access it properly. The problem is when I tried deploying a small API (Deployment & LoadBalancer) on that …

  6. Newest 'kubeflow' Questions - Stack Overflow

    Kubeflow pipelines docs mentions that there is a way to add metadata annotations as a key-value pairs. From the other hand, I could not find any relevant documentation of how it can be done.

  7. Return parameters in Kubeflow pipeline component

    Nov 30, 2022 · Im trying to return several parameters from a kubeflow component. Following the documentation it says you should use OutputPath where T is one of the types in python (str, float, …

  8. authentication - istio getting "RBAC: access denied" even the ...

    Aug 7, 2020 · Enable the RBAC create envoy filter to append header "kubeflow-userid" as the login user Here is a verification of step 3 and 4 Check RBAC enabled and envoyfilter added for kubeflow-userid …

  9. access persistent volume in kubeflow from different components

    Jul 1, 2021 · I am adding persistent volume claim to my kubeflow pipeline components and I would like to be able to access the volume from the different components so I can store data in it and retreive it …

  10. How to get the outputs and artifacts of a pipeline in kubeflow?

    Dec 12, 2024 · client = Client(host=host) run = client.create_run_from_pipeline_func( kfp_pipline, arguments=kwargs ) res = run.wait_for_run_completion(timeout=3600) The pipeline is running and I …