Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are image streams stored in OpenShift?

An image stream will be created after pulling an image (I don't know if it's everytime). The advantage of an image stream is the fact that it looks for updates or new versions of an image. But sometimes I don't want to use an image-stream so I also want do delete it when it already exists. I know this command:

oc get is -n projectname

It shows the image streams in a project. But I don't know where they are stored.

  • Where are image streams physically stored in OpenShift (path)?
like image 889
lvthillo Avatar asked Oct 23 '25 19:10

lvthillo


1 Answers

The metadata is stored in the etcd instance along with other cluster info.

Edit: if you want to delete an image stream, oc delete is NAME will remove it and make the images it references eligible for garbage collection.

like image 60
Clayton Avatar answered Oct 26 '25 15:10

Clayton