Using internal URL for okteto/bin:1.5.0

Hi,
Trying Okteto for the first time, following the documentation.
When running command “okteto up” I see that the pod is created in the target cluster namespace, but it is failing to pull this image: docker.io/okteto/bin:1.5.0
My K8S cluster does not have access to public image repos, can only use internal ones.
Where could I specify the internal URL for image repo?
Thank you!

Hey @russkey007 welcome to the community!

You can use the initContainer key in the okteto manifest to override okteto/bin with another image.


dev
  api:
    initContainer:
      image: local/bin:1.5.0
    command: bash
    sync:
    - .:/usr/src/app
    

Thank you, I have also found initContainer in the documentation.
Continue testing!
Thanks!

A post was split to a new topic: How do I debug a python application with Okteto and VSCode