straight-london-89862
11/08/2023, 1:59 PMflyte-binary) on EKS.
I want to customise the creation of projects and domains with configuration (like iam_role).
I found projects and domains mentioned in 2 places:
https://github.com/flyteorg/flyte/blob/6b5994ff1d529416113b790897367a7c847c4650/charts/flyte-binary/values.yaml#L21-L22
seedProjects:
- flytesnacks
and
https://github.com/flyteorg/flyte/blob/6b5994ff1d529416113b790897367a7c847c4650/charts/flyte-binary/eks-production.yaml#L32-L43
inline:
cluster_resources:
customData:
- production:
- defaultIamRole:
value: <FLYTE_USER_IAM_ARN>
- staging:
- defaultIamRole:
value: <FLYTE_USER_IAM_ARN>
- development:
- defaultIamRole:
value: <FLYTE_USER_IAM_ARN>
How should I configure my values.yaml if I want to achieve this?
project1:
sandbox:
defaultIamRole: role1
dev:
defaultIamRole: role2
project2:
dev:
defaultIamRole: role3straight-london-89862
11/08/2023, 3:47 PMcustomData is used only in the clusterResourceTemplates - is that right? https://github.com/flyteorg/flyte/blob/6b5994ff1d529416113b790897367a7c847c4650/charts/flyte-binary/eks-production.yaml#L105-L112average-finland-92144
11/08/2023, 4:21 PMaverage-finland-92144
11/08/2023, 4:22 PMstraight-london-89862
11/08/2023, 4:25 PMinline part of the flyte-binary config I can modify the domains?average-finland-92144
11/08/2023, 4:28 PM1. If I add this snippet toI guess we can try. It should land in thepart of theinlineconfig I can modify the domains?flyte-binary
flite-binary configmap and the Cluster Resource Manager should create the corresponding namespacesstraight-london-89862
11/08/2023, 4:30 PMvalues.yaml of flyte-binary and flyte-core. AFAIK flyte-binary helm chart makes some transformation before saving the config in the ConfigMap?average-finland-92144
11/08/2023, 4:37 PM