We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ade72e commit 4f6c555Copy full SHA for 4f6c555
1 file changed
cmd/deploy.go
@@ -335,6 +335,10 @@ func runDeploy(cmd *cobra.Command, args []string) error {
335
if err != nil && !errors.Is(err, deployer.ErrLocalImagesUnsupported) {
336
return fmt.Errorf("obtaining image preloader for cluster: %w", err)
337
}
338
+ // ErrLocalImagesUnsupported indicates that roxie does not contain preloading
339
+ // support for the respective cluster type. If preloading is required (because
340
+ // the images do not exist on the remote registry), the user needs to take care
341
+ // of the preloading.
342
343
if preLoader == nil {
344
log.Warningf("Image preloading not supported for cluster %s.", d.GetKubeContext())
0 commit comments