Deploy the application
Before we can deploy the application lets delete the existing UI component and recreate the namespace:
Now let's run the pipeline, which will build the image and deploy it to our EKS cluster.
It will take CodePipeline 3-5 minutes to build the image and deploy all changes to the EKS cluster. You can watch the pipeline progress in the AWS console or use these commands to wait until it has completed:
Once complete the pipeline will show the stages have succeeded.
Now we can review the changes that have been made by the pipeline. First we can check the ECR repository:

Open the repository retail-store-sample-ui
and inspect the image that has been pushed.
We can also verify that a Helm release has been installed in the cluster:
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
ui ui 1 2025-07-01 05:16:56.016555446 +0000 UTC deployed retail-store-sample-ui-chart-0.8.5
Check the values used to configure it to see that our custom image repository and tag were used:
USER-SUPPLIED VALUES:
image:
repository: 1234567890.dkr.ecr.us-west-2.amazonaws.com/retail-store-sample-ui-sm7zww
tag: e37f1e7932270d24d7bd7583d484dc2a
This will have resulted in a deployment:
NAME READY UP-TO-DATE AVAILABLE AGE
ui 1/1 1 1 42s
The pod will be using the image built in the pipeline:
1234567890.dkr.ecr.us-west-2.amazonaws.com/retail-store-sample-ui-sm7zww:e37f1e7932270d24d7bd7583d484dc2a
We can also click the deploy_eks
action to view more details such as the logs:
With that we have successfully create a pipeline that builds our application container image and deploys it to an EKS cluster using a Helm chart.