mysterious-dinner-77632
11/03/2025, 12:29 PMprojectQuotaCpu per domain. Helmchart itself does not show how to set it up per project. Is it even possible?ancient-wolf-19325
11/03/2025, 12:29 PMprojectQuotaCpu per domain is supported directly in the Flyte-core Helm chart via the cluster_resource_manager.config.cluster_resources.customData field, but setting it per project (within a domain) is not natively supported in the Helm values file. The Helm chart only allows you to specify quotas at the domain level, not at the project+domain granularity. This is confirmed by the structure in values.yaml and related config examples, which only nest quotas under domains, not projects.
For per-project quotas, you must use Flyte's dynamic resource management features after deployment, such as updating settings via flytectl or the FlyteAdmin API, as discussed in this issue. The Helm chart does not provide a direct way to set project-level quotas at install time.
Sources:
- Flyte Issue #2070
- values.yaml π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/03/2025, 12:36 PMtask_resource_defaults - any way of setting different task resources for specific projects?ancient-wolf-19325
11/03/2025, 12:36 PMtask_resource_defaults only sets global (platform-wide) defaults and limits for all tasks; it does not support per-project overrides via the values.yaml file. To set different task resources for specific projects, you must use Flyte's matchable resource system after deployment, typically via flytectl update task-resource-attribute or the FlyteAdmin API, as described in Flyte Issue #2070 and the overridable defaults RFC.
The Helm chart and values.yaml do not provide a mechanism to specify project-level task resource defaults at install time; this must be managed post-deployment.
Sources:
- Flyte Issue #2070
- RFC: Sane overridable defaults π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/04/2025, 11:50 AMinitial-project in helmchart and removed one of the projects that was already used. Will it be removed and will all runs from it be removed or do I have to make manual steps?ancient-wolf-19325
11/04/2025, 11:50 AMinitialProjects in the Helm chart does not delete the project or its runs from Flyte. The initialProjects field only seeds projects at install time; it does not manage or remove existing projects or their data. Manual steps are required to archive or clean up projects and their executions, as Flyte does not support project deletion via Helm or the APIβonly archiving is supported, and data remains unless explicitly cleaned up, as discussed in Flyte Issue #1619 and Flyte Issue #3234.
Would you like more detail on how to archive or clean up projects and their data?
Sources:
- Flyte Issue #1619
- Flyte Issue #3234 π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/04/2025, 11:51 AMancient-wolf-19325
11/04/2025, 11:51 AMmysterious-dinner-77632
11/04/2025, 11:52 AMancient-wolf-19325
11/04/2025, 11:52 AMflytectl with the update project --archive flag. For example:
flytectl update project -p <project-id> --archive
This will mark the project as archived, making it hidden in the UI and unavailable for new executions, but it will not delete any data. For more details, see Flyte Issue #1619 and Flytectl project update docs.
Would you like more detail on archiving or unarchiving projects?
Sources:
- Flyte Issue #1619
- flytectl update project command π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/04/2025, 11:53 AMancient-wolf-19325
11/04/2025, 11:53 AMflytectl get project, which displays both the project name and ID. For example:
flytectl get project
This will show a table with columns for ID, NAME, and DESCRIPTION, allowing you to match the name to its corresponding ID. For more, see Flytectl get project.
Would you like more detail or examples?
Sources:
- flytectl get project command π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/04/2025, 11:54 AMancient-wolf-19325
11/04/2025, 11:54 AMmysterious-dinner-77632
11/05/2025, 11:27 AMancient-wolf-19325
11/05/2025, 11:27 AMinitialProjects only seeds project names/IDs at install time and does not manage descriptions. To set or update a project description, you must use flytectl or the FlyteAdmin API, as shown in flytectl create project and flytectl update project.
Would you like more detail on using flytectl to manage project descriptions?
Sources:
- flytectl create project command
- flytectl update project command π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/05/2025, 11:30 AMancient-wolf-19325
11/05/2025, 11:30 AMflytectl update project -p <project-id> --description "New project description"
Replace <project-id> with your project's ID. This command updates only the description field. For reference, see flytectl update project command.
Sources:
- flytectl update project command π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.mysterious-dinner-77632
11/05/2025, 11:31 AMancient-wolf-19325
11/05/2025, 11:31 AM