A Deployable can produce a Deployment
| 6 | |
| 7 | // A Deployable can produce a Deployment |
| 8 | type Deployable interface { |
| 9 | // Deployment creates a new Deployment based on the types current state. Errors are returned if not possible. |
| 10 | Deployment() (*Deployment, error) |
| 11 | // Images returns the images required for deployment |
| 12 | Images() []*image.Image |
| 13 | } |
no outgoing calls
no test coverage detected