elegant-australia-91422
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 clusteracceptable-policeman-57188
elegant-australia-91422
08/30/2022, 4:28 PMflyte-admin-base-config
ConfigMapacceptable-policeman-57188
acceptable-policeman-57188
elegant-australia-91422
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
acceptable-policeman-57188
acceptable-policeman-57188
acceptable-policeman-57188
elegant-australia-91422
08/30/2022, 4:35 PMelegant-australia-91422
08/30/2022, 4:37 PMconfigmap
, we had an indentation issue. Apologies!acceptable-policeman-57188
elegant-australia-91422
08/30/2022, 4:52 PMelegant-australia-91422
08/30/2022, 4:53 PMacceptable-policeman-57188
elegant-australia-91422
08/30/2022, 5:49 PMacceptable-policeman-57188
acceptable-policeman-57188
elegant-australia-91422
08/30/2022, 6:28 PMelegant-australia-91422
08/31/2022, 1:07 PM