<@U06RKAMK0UC> How can I set resources for the fly...
# ask-ai
m
@ancient-wolf-19325 How can I set resources for the flyte server in the helmchart to increase CPU and memory
j
To set resources for the Flyte server in the Helm chart, you can modify the
values.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:
Copy code
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.
m
this is for flyte-binary
@ancient-wolf-19325 this is for flyte-binary
j
It seems likely that to set resources for the Flyte server in the
flyte-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:
Copy code
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.