Skip to content

Commit

Permalink
fix typo in deployment file
Browse files Browse the repository at this point in the history
  • Loading branch information
simsk87 committed Dec 29, 2023
1 parent a1fb4a9 commit 74e9496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildspec-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ phases:
- IMAGE_TAG=${IMAGE_TAG:-$(echo $CODEBUILD_WEBHOOK_TRIGGER | awk -F/ {'print $2'})}
- aws eks update-kubeconfig --name $ENVIRONMENT-trader-joe-eks
- |
for d in $(kubectl get deploy -n $ENVIRONMENT -l app=joepai --no-headers -o custom-columns=_:metadata.name); do
for d in $(kubectl get deploy -n $ENVIRONMENT -l app=joeapi --no-headers -o custom-columns=_:metadata.name); do
kubectl set image -n $ENVIRONMENT deployment/$d $d=$REPOSITORY_URI:$IMAGE_TAG
done
finally:
Expand Down

0 comments on commit 74e9496

Please sign in to comment.