Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

Show image label in OpenShift via oc

I have deployed a container image in OpenShift. When I in the console select Builds, clicks an image name and then an image tag I can see the labels on the image.

I would like to get this information on the command line via the oc command. However, I cannot find a way to get this specific information. Via oc describe pod I can find the digest of the image and if I have it my local Docker I can use docker inspect to see the labels. But I need the info for an image that I may not have locally.

question from:https://stackoverflow.com/questions/65921510/show-image-label-in-openshift-via-oc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can find this information by using :

 oc describe is/<image-name> -n <namespace> | grep Labels

Output:

enter image description here

Console information:

enter image description here

In order to get Docker Labels run the following command:

oc describe istag/<image-stream>:<tag-name> -n <namespace>

More information about Managing imagestreams can be found here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...