Rahul Mehta
08/30/2022, 4:27 PMIn the absence of an override, the global default values in the FlyteAdmin config are used.https://github.com/flyteorg/flyte/blob/1e3d515550cb338c2edb3919d79c6fa1f0da5a19/charts/flyte-core/values.yaml#L35,L43 this looked like the resource requests/limits for the flyteadmin pods themselves, is flyte actually using those as the defaults for tasks? I just tried updating
task_resource_defaults
in the helm chart w/ new limits and I didn't see the change reflected in the configmap after applying the changes to the clusterkatrina
Rahul Mehta
08/30/2022, 4:28 PMflyte-admin-base-config
ConfigMapkatrina
Rahul Mehta
08/30/2022, 4:30 PMvalues.yaml
task_resource_defaults:
task_resources:
defaults:
cpu: 1
memory: 1Gi
storage: 1Gi
limits:
cpu: 10
memory: 50Gi
storage: 2Gi
Yet this is what's reflected in the configmap after a helm upgrade:
task_resources:
defaults:
cpu: 100m
memory: 500Mi
storage: 500Mi
limits:
cpu: 2
gpu: 1
memory: 1Gi
storage: 20Mi
katrina
Rahul Mehta
08/30/2022, 4:35 PMconfigmap
, we had an indentation issue. Apologies!katrina
Rahul Mehta
08/30/2022, 4:52 PMkatrina
Rahul Mehta
08/30/2022, 5:49 PMkatrina
Rahul Mehta
08/30/2022, 6:28 PM