Why does okteto not push built images to local docker registry or minikube registry?

When executing okteto build with the following okteto manifest:

build:
  manager:
    image: platform/manager:1.0
    context: manager
    target: base

deploy:
  - kubectl kustomize --load_restrictor LoadRestrictionsNone k8s/overlays/local | kubectl apply -f -

dev:
  manager:
    workdir: /home/node/app
    command:
      - sh
    sync:
      - manager:/home/node/app
    forward:
      - 3000:3000
      - 9229:9229
    imagePullPolicy: Never

The build was successful:

 ✓  Build succeeded
 i  Your image won't be pushed. To push your image specify the flag '-t'.

However, when I check which images are available in my machine this one is missing. Both in minikube image registry and in the local one.

Thanks in advance.

Hi @alereca

The image should be pushed to platform/manager:1.0, the one specify in your okteto manifest.

Which okteto version are you using?