Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
26 views

I want to have a downstream component that has an optional dsl.Dataset input. That optional input is the output of an upstream task within a dsl.If. All of these are within a dsl.ParallelFor, so that ...
dbkoop's user avatar
  • 101
0 votes
1 answer
72 views

We are trying to update the image: field in Kubernetes YAML manifests by dynamically appending an IP address (10.20.30.40/) to the image URL, except in certain cases. Specifically, we have three ...
Aditi Sharma's user avatar
0 votes
0 answers
119 views

I'm working on a Kustomize setup where I need to: Replace the registry for images that already have a registry (e.g., docker.io → 10.20.30.40). Prepend the registry for images without one (e.g., mysql:...
Aditi Sharma's user avatar
1 vote
0 answers
207 views

I'm using the pythagorean example in kubeflow v2: @dsl.component def square(x: float) -> float: return x ** 2 @dsl.component(packages_to_install=['numpy==1.21.6', 'pyyaml==6.0']) def add(x: ...
Elad Project's user avatar
1 vote
0 answers
162 views

We're deploying Kubeflow on an EKS cluster that already has both istio 1.23 and cert-manager installed on it. We therefore skipped istio and cert-manager installation and used option 3 from oauth2 ...
Lucas Abreu's user avatar
1 vote
0 answers
38 views

I am migrating towards kubeflow v2. This is the pipeline I am using (from the tutorial page): from kfp import dsl @dsl.component def say_hello(name: str) -> str: hello_text = f'Hello, {name}!' ...
Zeid's user avatar
  • 11
-1 votes
1 answer
180 views

I wanted to ask if there is a way to use python as a .wheel or .egg or just .py dependency in kubeflow spark operator. The resulting file i have in mind would look something like this, the dependecy ...
Jakub Vlček's user avatar
0 votes
1 answer
200 views

kfp==2.8.0 # and on 2.7.0 kfp-pipeline-spec==0.3.0 kfp-server-api==2.0.5 Example code: from kfp import dsl import kfp @dsl.component def add(a: float, b: float) -> float: '''Calculates sum of ...
Chris's user avatar
  • 31.7k
1 vote
1 answer
443 views

I have generated the secret, but cannot configure it in kubeflow's implementation. If I look in kfp, I see that all references to imagePull are in the deprecated folder: $ grep -rn 'imagePull' kfp/ ./...
Chris's user avatar
  • 31.7k
0 votes
1 answer
1k views

I see that I can increase the resources of the Colima VM, but the docker containers are executed with the default configuration: $: colima start --cpu 10 --memory 20 --disk 50 $: colima list PROFILE ...
Chris's user avatar
  • 31.7k
1 vote
1 answer
324 views

I am trying to use the kubeflow v2 following the document below but but I am not able to run this succesfully. Below is my code snippet, Could you please let me know if something wrong. https://www....
Mohit Verma's user avatar
0 votes
1 answer
429 views

I am very very new to both AI and MLOP's, please forgive me if my question is dumb. I am trying to learn about kubeflow but there is too much information on kubeflow documentation, then there are ...
Mohit Verma's user avatar
0 votes
1 answer
342 views

I have installed kubeflow on k3s cluster. I have configured the cluster to be able to access GPUs and it's working fine for test pods on gpu, and I can see nvidia-smi output on pods. But, I want ...
khalid_01's user avatar
1 vote
1 answer
328 views

I configured my kubeflow gpu server recently, but the GPU does not get detected in there - the reason is cluster using wrong runtime. I prefer not to change the default runtime system-wide and tried ...
user3002166's user avatar
0 votes
1 answer
294 views

I'm using a Docker image that I've pushed to a Docker hub public repository as the base_image for a Kubeflow component: subtract_op = create_component_from_func(func=subtract, base_image="<my ...
Alexandre R's user avatar
1 vote
0 answers
39 views

In short, VertexAI pipelines are not stopping when an exception is thrown inside a function that is inside an ephemeral_component An example pipeline, with this stack trace in the logs 2024-04-09 14:...
WurmD's user avatar
  • 1,493
1 vote
0 answers
395 views

I have multiple computers/machines. Each computer/machine has multiple GPUs. I am currently training my machine learning model using tensorflow. I can train on a single machine/computer, or I can use ...
akrup's user avatar
  • 11
0 votes
0 answers
180 views

I am new to kubeflow and I am trying to access the dashboard, but no success. I am running kubernetes locally installed via minikube. My lasta attempt was running the following command: kubectl create ...
sonwander2's user avatar
1 vote
0 answers
345 views

I have a Vertex AI pipeline that takes in a country argument (a string such as "uk", or "de"...). The first task of the pipeline get_country_dr_keys generates all "dr keys&...
Ferrard's user avatar
  • 2,548
1 vote
0 answers
261 views

I had working pipelines in kubeflow, but recently when I go to the dashboard, I get 'No graph to show' when it should be showing the pipeline components. I have done nothing to pipeline to cause this, ...
Daniel Young's user avatar
0 votes
0 answers
243 views

I am new on Kubernetes and Kubeflow and trying to pull images from my self hosted private gitlab registry in Kubeflow Pipelines. This is my pipeline: @container_component def container_component_trial(...
1dll's user avatar
  • 39
0 votes
0 answers
476 views

I do all this on my server. I followed this guide https://www.deploykf.org/guides/local-quickstart/. I reached the end of the guide and now I can’t reach my kubeflow. I added what I thought were valid ...
Dazdraperm's user avatar
-1 votes
1 answer
325 views

I'm trying to install Kubeflow with S3. The artifact repository has been set up. I would like to know how to specify the s3 prefix of the storage where the pipeline is stored. Is this possible? how ...
shaamy's user avatar
  • 3
1 vote
0 answers
475 views

I installed Kubeflow on my Docker Desktop Kubernetes. Everything seems to work so far, apart from the following problem: When trying to access any artifacts (input/output, logs, etc.) from the Run ...
Vladyslav Libov's user avatar
1 vote
2 answers
595 views

I have installed kubeflow pipeline in mac M1 but not able to see "notebook" option in UI. I have used these step # env/platform-agnostic-pns hasn't been publically released, so you will ...
Bhavana Sharma's user avatar
4 votes
0 answers
2k views

I'm working with KFP components and I want to pass a custom type parameters, it threw this error TypeError: Artifacts must have both a schema_title and a schema_version, separated by @. Got: ...
eng2019's user avatar
  • 1,035
0 votes
1 answer
468 views

` I am following tutorial of Kubeflow Pipelines API: Kubeflow & Kubeflow Pipelines API I've installed Kubeflow on a MicroK8s and started experimenting with the Kubeflow Pipelines API, I was ...
srikargoud javvaji's user avatar
3 votes
2 answers
246 views

On GCP, I created a new Kubernetes cluster 1.26 and deployed kubeflow pipelines 2.0.0 on it. The deployment went fine but on the AI Platform Pipeline page, I don't see the new deployment. Due to this, ...
Behroz Sikander's user avatar
0 votes
1 answer
419 views

I was using kfp==2.0.0b12 and everything was working great. But as soon as i got into 2.0.1 I am always getting 404 when trying to use methods from client, like this: kfp_server_api.exceptions....
d0m3n1's user avatar
  • 1
1 vote
1 answer
480 views

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. Is there ...
Omri's user avatar
  • 43
0 votes
0 answers
522 views

kfp version 1.8.11 I have a pipeline and I need to use some pipeline/task parameters to keep track of my experiments and do the pathing for GCS. I provide this as inputs of the components: kfp.dsl....
100tifiko's user avatar
  • 401
0 votes
0 answers
607 views

I'm relatively new to Kubeflow and I'm trying to create a pipeline that uses Docker images stored in my private GitLab registry. I've looked through the Kubeflow documentation, but I couldn't find a ...
1dll's user avatar
  • 39
0 votes
0 answers
153 views

I am doing a lab titled as "TFX on Cloud AI Platform Pipelines" from Qwiklabs Machine Learning path. The instructions asks me to run a shell file by which I grant access to corresponding ...
VOLKAN BAKIR's user avatar
0 votes
0 answers
397 views

I will be glad if someoone kindly help me with this please. I am a newbie in DEVOPS. I have installed a standalone cluster of kubernetes using kubectl 1.27.4 and minikube version: v1.31.1 on ubuntu 22....
trial and error's user avatar
1 vote
0 answers
82 views

if custom model training happens in Containerized Python Component, producing model file and metrics, what is the proper way of uploading the model and its metrics into Vertex AI so that they are ...
Maxim Volgin's user avatar
  • 4,085
2 votes
0 answers
199 views

Apparently this class I've been using heavily is removed in V2 and it is not exactly clear from the docs what it should be replaced with. "Remove aiplatform.CustomContainerTrainingJobRunOp and ...
Maxim Volgin's user avatar
  • 4,085
0 votes
2 answers
841 views

When I output a KubeFlow Output[Dataset] that I know will be in a CSV format output URI is ending with the text dataset. Is it possible to change the name of the URI to dataset.csv or to training_data....
hjerp's user avatar
  • 11
0 votes
1 answer
585 views

I have a Kubeflow pipeline whose first step does nothing but downloads one file. This step always crashes in an out-of-memory error: This step is in Error state with this message: OOMKilled (exit ...
Seppo Enarvi's user avatar
  • 3,717
2 votes
0 answers
2k views

I installed kubeflow v1.4.0 on ubuntu 20.04 with the following specifications: k v1.21.7 kustomize v3.1.0 however when i try to create a new notebook, i encounter the following error: Could not find ...
grace___'s user avatar
0 votes
1 answer
173 views

I'm using kuberflow notebook (python 3) and trying to connect to my sql server. So far here's my code: import jaydebeapi driver_name = "net.sourceforge.jtds.jdbc.Driver" connection_url = f&...
vunh16's user avatar
  • 3
0 votes
1 answer
372 views

We have set up an on-prem Kubeflow 1.7 installation and are trying out Kubeflow Pipelines v2.x. When executing a run on the provided pipeline "[Tutorial] Data passing in python components", ...
khituras's user avatar
  • 1,101
1 vote
0 answers
188 views

Just install Charmed Kubeflow. Everything is ok but missing knative. Keep crashing with log below {"severity":"ERROR","timestamp":"2023-07-16T18:37:03.684598799Z&...
Joseph Chun-Chung Cheung's user avatar
0 votes
1 answer
197 views

I am playing with Kubeflow's containerized python components. As per the below doc, we can push component to container registry by using "target_image" flag in the definition and running the ...
Mustang92's user avatar
0 votes
1 answer
3k views

I have a local Kubernetes created by Rancher Desktop. I am trying to deploy based on the installation guide. However, after deploying by kubectl apply -k "github.com/kubeflow/training-operator/...
Hongbo Miao's user avatar
  • 50.7k
0 votes
1 answer
222 views

I am using a Component in a vertex ai pipeline with a custom component. @component( base_image=f"gcr.io..." ) def temp_step(): It's supposed to have the same library versions during the ...
Ali Tber's user avatar
1 vote
1 answer
994 views

I am trying to follow the Kubeflow v2 quickstart. First, I deployed Kubeflow to a local Kubernetes cluster by export PIPELINE_VERSION="2.0.0-alpha.4" kubectl apply -k "github.com/...
Hongbo Miao's user avatar
  • 50.7k
0 votes
1 answer
280 views

Error importing aiplatform Tried following the vertex ai documentation and while running: from google_cloud_pipeline_components import aiplatform as gcc_aip I get an error: Import error: Cannot import ...
Geeglu's user avatar
  • 11
2 votes
1 answer
495 views

My graph starts with a common component - after which the process is split in two leaves, one for variables and another for events. Both leaves use a conditional to execute some components if there is ...
Alejandro de la Parra's user avatar
0 votes
2 answers
757 views

I have a Docker container in gcloud with all the code I need (multiple files, etc.). I'm able to run it when I defined the component using the @component decorator. I define the function and I set up ...
100tifiko's user avatar
  • 401
3 votes
1 answer
5k views

I installed the latest minikube version according to its website (https://minikube.sigs.k8s.io/docs/start/): curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 sudo ...
Joysn's user avatar
  • 1,029

1
2 3 4 5
9