Images contained by ReplicationController's Pods.
()
| 81 | |
| 82 | // Images contained by ReplicationController's Pods. |
| 83 | func (c *ReplicationController) Images() (images []*image.Image) { |
| 84 | if c.pod != nil { |
| 85 | images = c.pod.Images() |
| 86 | } |
| 87 | return images |
| 88 | } |
| 89 | |
| 90 | // Attach allows Pods, Containers, and Images to be attached. |
| 91 | func (c *ReplicationController) Attach(e Entity) error { |