krishna Yerramsetty
06/28/2022, 9:30 PM@task(requests=Resources(cpu="8"))
But when I try registering the files I get the following error:
Requested CPU default [8] is greater than current limit set in the platform configuration [2]
How and where do I change the default platform configuration? I am running on an AWS EKS cluster with a minimum compute group node size of 2, desired size of 2, and maximum of 24. Each node is a 16 cpu EC2 instanceYee
krishna Yerramsetty
06/28/2022, 10:10 PMKetan (kumare3)
Smriti Satyan
06/29/2022, 1:47 AMkrishna Yerramsetty
06/30/2022, 11:06 PMKetan (kumare3)
krishna Yerramsetty
07/01/2022, 4:35 PM# -- Configuration for the Cluster resource manager component. This is an optional component, that enables automatic
# cluster configuration. This is useful to set default quotas, manage namespaces etc that map to a project/domain
cluster_resource_manager:
# -- Enables the Cluster resource manager component
enabled: true
# -- Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints
standalone_deploy: false
config:
cluster_resources:
customData:
- production:
- projectQuotaCpu:
value: "300"
- projectQuotaMemory:
value: "600Gi"
- defaultIamRole:
value: "arn:aws:iam::{{ .Values.userSettings.accountNumber }}:role/flyte-user-role"
- staging:
- projectQuotaCpu:
value: "8"
- projectQuotaMemory:
value: "3000Mi"
- defaultIamRole:
value: "arn:aws:iam::{{ .Values.userSettings.accountNumber }}:role/flyte-user-role"
- development:
- projectQuotaCpu:
value: "8"
- projectQuotaMemory:
value: "3000Mi"
- defaultIamRole:
value: "arn:aws:iam::{{ .Values.userSettings.accountNumber }}:role/flyte-user-role"
That I think should hopefully solve the problemKetan (kumare3)