James Phoenix
01/10/2023, 3:47 PMprefect kubernetes manifest orion | kubectl apply -f -
Nate
01/10/2023, 5:06 PM{
"errors": [
{
"code": "UNAUTHORIZED",
"message": "authentication required",
"detail": [
{
"Type": "repository",
"Class": "",
"Name": "prefecthq/prefect",
"Action": "pull"
}
]
}
]
}
which to me suggests you might need some form of docker login
or anotherJames Phoenix
01/10/2023, 5:07 PMNate
01/10/2023, 5:25 PMdocker logout
and then running again
prefecthq/prefect is a public repo and shouldnt require authJames Phoenix
01/10/2023, 5:26 PMNate
01/10/2023, 5:34 PMI’m trying to get my Prefect agent runningI assumed from the command you were trying to run orion,
prefect kubernetes manifest orion
provides a manifest for running the orion server
you might want to check out https://github.com/PrefectHQ/prefect-helm and do
helm install prefecthq/prefect-agent --generate-name --values your_values.yaml
James Phoenix
01/10/2023, 5:43 PM