@Marvin I keep getting internal server error when i try to instantiate a k8s workpool using the rest API as follow with my prefect 2.0 server:
curl -X POST
http://10.30.8.177:4200/api/work_pools/ \
-H "Content-Type: application/json" \
-d '{
"name": "test-k8s-work-pool",
"type": "kubernetes",
"base_job_template": {
"job_configuration": {
"pod_template": {
"spec": {
"containers": [
{
"name": "base",
"image": "
docker.io/prefecthq/prefect:2-latest",
"env": [
{
"name": "KUBECONFIG",
"value": "kube_config.yaml"
},
{
"name": "AWS_ACCESS_KEY_ID",
"value": "minio"
},
{
"name": "AWS_SECRET_ACCESS_KEY",
"value": "minio123"
},
{
"name": "MLFLOW_S3_ENDPOINT_URL",
"value": "
http://10.30.8.146:9000"
}
.... etc
{"exception_message":"Internal Server Error"}%