Hello everyone! Would like your help. I am deployi...
# ask-community
j
Hello everyone! Would like your help. I am deploying dagster with EKS and I am trying to deploy my deployment user code as well which is in AWS ECR. The problem is dagster can't connect to ECR. Even though I specified the ARN of image to the repository in the values.yaml. Please help.
a
So, you don't want to use the image ARN, but rather the tag. As an example, here's what's in my user code chart values:
Copy code
deployments:
      - dagsterApiGrpcArgs:
          - --working-directory
          - /opt/agilemd/dagster
          - -m
          - dagster_user_code
        image:
          pullPolicy: IfNotPresent
          repository: <aws-account-id>.<http://dkr.ecr.us-east-1.amazonaws.com/dagster-user-code|dkr.ecr.us-east-1.amazonaws.com/dagster-user-code>
          tag: v3.55.6-rc
Obviously, substitute with the correct ECR name and tag