From the course: Kubernetes: Your First Project

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Deploying the Explore California image into ECR

Deploying the Explore California image into ECR - Kubernetes Tutorial

From the course: Kubernetes: Your First Project

Deploying the Explore California image into ECR

- [Instructor] All right. Before we deploy Explore California into EKS, we need to upload Explore California's container image into ECR. This is going to be a three-step process. This three-step process works regardless of the public or private registry you choose to use. The first step is going to be the log in to the registry. We already did that, so we can go right into the second step, which is to retag our image to contain the URL of the registry that it's going to be uploaded into. Finally, the third step is to push the image, and hope that it works. So let's head into a terminal and see that in action. All right, we're going to start with step two, which is to retag our image. To begin, we're going to type either docker or podman tag. Then we're going to provide the name of the image that we want to retag, which in our case is going to be localhost/explorecalifornia.com. And then we're going to provide the URI of the registry that we're going to be uploading into. So since I…

Contents