(cmd *cobra.Command, args []string)
| 136 | } |
| 137 | |
| 138 | func pullAction(cmd *cobra.Command, args []string) error { |
| 139 | options, err := processPullCommandFlags(cmd) |
| 140 | if err != nil { |
| 141 | return err |
| 142 | } |
| 143 | |
| 144 | client, ctx, cancel, err := clientutil.NewClient(cmd.Context(), options.GOptions.Namespace, options.GOptions.Address) |
| 145 | if err != nil { |
| 146 | return err |
| 147 | } |
| 148 | defer cancel() |
| 149 | |
| 150 | return image.Pull(ctx, client, args[0], options) |
| 151 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…