Using ImaeSpec with private docker registry #4668
Replies: 2 comments
-
🤖 Hello @mattv-neXenio! I'm Dosu, a friendly bot created to assist you with your issues, answer your questions, and guide you through contributing to our repository. While we're waiting for a human maintainer, I'm here to help. Let's get your problems sorted out together! Based on the provided context, it seems that you're encountering an issue with the While Flyte's ImageSpec does support the use of private Docker registries through the The If you've already provided the Here's a basic example of what this Dockerfile might look like: FROM envd_buildkitd:latest
# Add your CA-certificates
ADD ca-certificates.crt /etc/ssl/certs/
# Rest of your Dockerfile... You would then build this Dockerfile and use the resulting image for your builds. Please note that this is a workaround and might not be the best solution. It's possible that there's a better way to handle this that I wasn't able to find in the repository. If you have any additional information or context that could help, please provide it. Sources
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
Hi, @mattv-neXenio I am not sure about how to solve it, but maybe you can use |
Beta Was this translation helpful? Give feedback.
-
With the ImageSpec I plan on pulling the base flytekit images from my private docker registry. Once they are built with
envd
I want to push them there too.The image build fails with
x509 certificate signed by unknown authority
, most likely because the registry's CA-certificates haven't been added to theenvd_buildkitd
container. Thedocker/config.json
has been provided.Is there an option equivalent to
--no-check-certificate
that can be passed to the ImageSpec or toenvd bootstrap
?Beta Was this translation helpful? Give feedback.
All reactions