Replies: 1 comment 12 replies
-
Probably the error you're seeing is before the bootstrap, and it's not the real error. You might need to wait more to see the pull error (if it fails). I suspect you might need to have HTTP_PROXY env vars injected as well as the self-signed CA cert. So you probably need to do:
You can create a config patch which looks like that: - op: add
path: /machine/env
value:
http_proxy: ...
https_proxy: ...
- op: add
path: /machine/files
value:
- content: |
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
permissions: 0644
path: /etc/ssl/certs/ca-certificates
op: append And pass it to |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, using talosctl v 1.0.3.
From " docker logs talos-default-master-1":
talos-default-master-1.log
I'm behind a corporate proxy with a self-signed ca-cert. The proxy env vars are injected into docker containers through "~/.docker/config.json" but I suspect it fails because of the proxy ca-cert. How can I provide it to the containers?
Beta Was this translation helpful? Give feedback.
All reactions