( ctx context.Context, input string, functionOptions *functionOptions, )
| 901 | } |
| 902 | |
| 903 | func (c *controller) getImage( |
| 904 | ctx context.Context, |
| 905 | input string, |
| 906 | functionOptions *functionOptions, |
| 907 | ) (bufimage.Image, error) { |
| 908 | ref, err := c.buffetchRefParser.GetRef(ctx, input) |
| 909 | if err != nil { |
| 910 | return nil, err |
| 911 | } |
| 912 | return c.getImageForRef(ctx, ref, functionOptions) |
| 913 | } |
| 914 | |
| 915 | func (c *controller) getImageForInputConfig( |
| 916 | ctx context.Context, |
no test coverage detected