Quick question about the prefect CLI. It seems tha...
# ask-community
r
Quick question about the prefect CLI. It seems that when I run a command like
Copy code
prefect describe flows --name foo-bar
That I get output like this, which includes information about the storage and parameters, but contains no information about the run configuration (I’m using kubernetes)
Copy code
{
  "archived": false,
  "created": "2021-04-20T19:01:08.156447+00:00",
  "description": null,
  "environment": null,
  "name": "inference-alpha-poc",
  "parameters": [
    .......
  ],
  "project": {
    "name": "recursion-mlops-poc"
  },
  "storage": {
    "__version__": "0.14.16",
    "access_token_secret": "GITHUB_ACCESS_TOKEN",
    "base_url": null,
    "flows": {
      "inference-alpha-poc": "prefect_cloud/inference_flow.py"
    },
    "path": "prefect_cloud/inference_flow.py",
    "ref": "prefect-cloud",
    "repo": "recursionpharma/inference-alpha",
    "secrets": [],
    "type": "GitHub"
  },
  "version": 9
}
Is this expected, or a bug? Why isn’t the run configuration shown in this output?
k
Hi @Ryan Baker, just a friendly reminder to post the large “code blocks” to the thread if possible to keep the main channel more compact. The answer here is that it is lacking run config info in the query that populates this. This is known and planned to be fixed.
🎉 1
@Marvin open “Prefect describe flows CLI Command Lacks RunConfig Info ”