Hello,
It seems like you are encountering an issue related to the service account "pipeline-runner" not being found in your project. This might be due to a missing or incorrectly configured service account.
Here are a few suggestions to help you resolve this issue:
- Ensure that the service account "pipeline-runner" has been created in the appropriate namespace. You can check this using the following command:
kubectl get serviceaccounts -n <NAMESPACE>
Replace <NAMESPACE> with the namespace you are working in. If "pipeline-runner" is not listed, you may need to create it.
- To create the service account, you can apply the following YAML file:
apiVersion: v1
kind: ServiceAccount
metadata:
name: pipeline-runner
namespace: <NAMESPACE>
Replace <NAMESPACE> with your desired namespace and save the file as pipeline-runner.yaml. Apply the file using the command:
kubectl apply -f pipeline-runner.yaml
- Ensure that the required permissions are granted to the "pipeline-runner" service account. You may need to create a ClusterRoleBinding or RoleBinding depending on your requirements.
- Double-check your TaskSpec definition and ensure that it is configured correctly. Make sure that the service account name specified in the TaskSpec matches the one you created (i.e., "pipeline-runner").
If you follow these steps and still encounter issues, please provide more information about your project setup, including the version of the software being used, so that we can further assist you.
Best of luck with your machine learning project!
------------------------------
Scott Dunn
------------------------------
Original Message:
Sent: Fri April 21, 2023 03:18 AM
From: wang xiangtao
Subject: Train AutoAI and reference model run error
hi there,
I am a new learner of machine learning.
when I built a project of Train AutoAI and reference model ,and run it.
I always got the following errors:
translating TaskSpec to Pod: serviceaccounts "pipeline-runner" not found. Maybe invalid TaskSpec
I really don't know why , anyone could tell me? . thank you very much.
------------------------------
wang xiangtao
------------------------------
#AIandDSSkills