lvthillo
lvthillo

Reputation: 30723

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.

Upvotes: 4

Views: 2318

Answers (1)

Clayton
Clayton

Reputation: 3316

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.

Upvotes: 3

Related Questions