Navigating the OpenShift Console
First, open the OpenShift console and navigate to the Builds section, then select ImageStreams. You will notice that many deployments already have their own ImageStreams.

Creating a New ImageStream for the Carts App
Suppose you want to create a new ImageStream for a specific deployment within SockShop, such as the Carts app. To do this, click on the “Create ImageStream” option. Remove any undesired default content and paste the following configuration:ImageStreams help you manage different versions of container images efficiently, ensuring consistency across your deployments.
Inspecting the Deployment Manifest
If you are curious about the underlying container image configuration, you can examine the deployment manifest in an editor such as VS Code. Here is the deployment configuration for the Carts app:Deploying the Application Using the ImageStream
Once the ImageStream is in place, you can deploy an application based on it. Open your terminal and execute the command below to deploy the Carts app from the “default” project:An error indicating that the deployment already exists means that a previous deployment is conflicting with the new one.