microscopic-needle-82602
03/25/2025, 9:09 AMjolly-florist-66728
03/25/2025, 9:09 AMvalues.yaml
file used during the Helm installation. Specifically, you need to adjust the resources
section for the Flyte server component you are interested in, such as flyteadmin
, flytepropeller
, or flyteconsole
.
For example, to increase CPU and memory for flyteadmin
, you can set the resources
field as follows:
flyteadmin:
resources:
limits:
cpu: "2"
memory: "2Gi"
requests:
cpu: "1"
memory: "1Gi"
This configuration sets the CPU and memory limits and requests for the flyteadmin
deployment. Adjust the values according to your requirements. Would you like more details on how to apply these changes or any other component?
Sources:
- Flyte Helm Chart Values
- Flyte Admin Configuration 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.microscopic-needle-82602
03/25/2025, 9:11 AMmicroscopic-needle-82602
03/25/2025, 9:11 AMjolly-florist-66728
03/25/2025, 9:11 AMflyte-binary
Helm chart, you would modify the values.yaml
file used during the Helm installation. You can adjust the resources
section for the Flyte server component you are interested in, such as flyte-binary
.
For example, you can set the resources
field as follows:
deployment:
resources:
limits:
cpu: "2"
memory: "2Gi"
requests:
cpu: "1"
memory: "1Gi"
This configuration sets the CPU and memory limits and requests for the flyte-binary
deployment. Adjust the values according to your requirements. Would you like more details on how to apply these changes or any other component?
Sources:
- Flyte Binary Values 👍 1 button 👎 0 button 💡 Hint: Mention @ancient-wolf-19325 in the thread for followups.