OpenShift Image Stream Definition: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 7: | Line 7: | ||
* [[OpenShift_Concepts#Image_Stream|OpenShift Concepts]] | * [[OpenShift_Concepts#Image_Stream|OpenShift Concepts]] | ||
* [[OpenShift_Configuration#Definitions|OpenShift Definitions]] | * [[OpenShift_Configuration#Definitions|OpenShift Definitions]] | ||
=Overview= | |||
An image stream can be referred from other OpenShift objects, such as a deployment configuration. An image stream tag is referred by name, which is <''image-stream-name''>:<''tag-name''>. For example, the tag | |||
=Examples= | =Examples= |
Revision as of 05:31, 26 November 2017
External
Internal
Overview
An image stream can be referred from other OpenShift objects, such as a deployment configuration. An image stream tag is referred by name, which is <image-stream-name>:<tag-name>. For example, the tag
Examples
apiVersion: v1
kind: ImageStream
metadata:
name: gogs
labels:
app: gogs
spec:
tags:
- annotations:
description: The Gogs git server docker image
tags: gogs,go,golang
from:
kind: DockerImage
name: openshiftdemos/gogs:0.11.29
importPolicy: {}
name: "0.11.29"