Need help with service account on flyte eks Hi, ...
# ask-the-community
p
Need help with service account on flyte eks Hi, As a flute newbie, I am trying to deploy flyte on eks using this community maintain tutorial However, despite having
Copy code
inline:
    cluster_resources:
      customData:
      - production:
        - defaultIamRole:
            value: <role-arn>
      - staging:
        - defaultIamRole:
            value: <role-arn>
      - development:
        - defaultIamRole:
            value: <role-arn>
clusterResourceTemplates:
  inline:
    002_serviceaccount.yaml: |
      apiVersion: v1
      kind: ServiceAccount
      metadata:
        name: default
        namespace: '{{ namespace }}'
        annotations:
          eks.amazonaws.com/role-arn: '{{ defaultIamRole }}'
In value.yaml. After running
Copy code
kubectl describe sa default -n flytesnacks-development
The annotation of service account remains none
Copy code
Name:                default
Namespace:           flytesnacks-development
Labels:              <none>
Annotations:         <none>
Image pull secrets:  <none>
Mountable secrets:   <none>
Tokens:              <none>
Events:              <none>