-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dashboards-helper container's use of curl fails internal container name resolution when host has invalid DNS settings, prevents Malcolm initialization #499
Comments
I have the same issue on Ubuntu 24.04 LTS host. resolv.conf content (defaults):
I think it's controlled by systemd-resolved. |
I've reproduced it in an Ubuntu 24.04 VM:
Steps to reproduce:
Initially I don't see the difference between the working container (in this case, I'm attaching the result of |
I don't see anything majorly different between the output of those two json files, other than the obvious things like volumes and environment variables. One interesting difference, though: |
Whoa... check this out:
It's not a general networking issue: |
A message I posted on /r/docker on Reddit: -- I'm scratching my head on this one and am hoping somebody smarter than me can help me pinpoint my issue. I've got an application orchestrated with This application can run in offline "air gapped" mode; in other words, the host not having any internet connectivity at all. When this is the case, even if the host's The weird behavior gets when I have something invalid in Then things got really weird. I got a shell in the container, and lo-and-behold: dashboards-helper:/# curl opensearch:9200
curl: (6) Could not resolve host: opensearch
dashboards-helper:/# wget -q -O - opensearch:9200
{
"name" : "opensearch",
"cluster_name" : "docker-cluster",
"cluster_uuid" : "r8q8n71CQgmz6nVOouWCLw",
"version" : {
"distribution" : "opensearch",
"number" : "2.16.0",
"build_type" : "tar",
"build_hash" : "f84a26e76807ea67a69822c37b1a1d89e7177d9b",
"build_date" : "2024-08-06T20:30:45.209655408Z",
"build_snapshot" : false,
"lucene_version" : "9.11.1",
"minimum_wire_compatibility_version" : "7.10.0",
"minimum_index_compatibility_version" : "7.0.0"
},
"tagline" : "The OpenSearch Project: https://opensearch.org/"
} What? So it's not a general network issue after all... it's something specific to Investigating further: dashboards-helper:/# curl --version
curl 8.9.0 (x86_64-alpine-linux-musl) libcurl/8.9.0 OpenSSL/3.3.1 zlib/1.3.1 brotli/1.1.0 zstd/1.5.6 c-ares/1.28.1 libidn2/2.3.7 libpsl/0.21.5 nghttp2/1.62.1
Release-Date: 2024-07-24
Protocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns mqtt pop3 pop3s rtsp smb smbs smtp smtps telnet tftp ws wss
Features: alt-svc AsynchDNS brotli HSTS HTTP2 HTTPS-proxy IDN IPv6 Largefile libz NTLM PSL SSL threadsafe TLS-SRP UnixSockets zstd
dashboards-helper:/# wget
BusyBox v1.36.1 (2024-06-10 07:11:47 UTC) multi-call binary.
Usage: wget [-cqS] [--spider] [-O FILE] [-o LOGFILE] [--header STR]
[--post-data STR | --post-file FILE] [-Y on/off]
[-P DIR] [-U AGENT] [-T SEC] URL...
Retrieve files via HTTP or FTP
--spider Only check URL existence: $? is 0 if exists
--header STR Add STR (of form 'header: value') to headers
--post-data STR Send STR using POST method
--post-file FILE Send FILE using POST method
-c Continue retrieval of aborted transfer
-q Quiet
-P DIR Save to DIR (default .)
-S Show server response
-T SEC Network read timeout is SEC seconds
-O FILE Save to FILE ('-' for stdout)
-o LOGFILE Log messages to FILE
-U STR Use STR for User-Agent header
-Y on/off Use proxy So, I did a Any ideas on what's going on here? I know the "fix" is for users to not have bogus stuff in their |
As a workaround, I suppose I can just rebase the container off of debian instead of alpine. |
…bian:12-slim to avoid weirdness with alpine's busybox curl
I've converted the container to use debian, all seems to be working fine. Container size difference is negligible (< 10mb). |
I've seen this twice now, once in a Malcolm instance installed via ISO and once on an Ubuntu system.
The symptom in both cases is that the
dashboards-helper
container can't resolve other containers by name while other containers can, e.g.:This is weird, because in the docker-compose.yml there isn't anything defining networking stuff differently for
dashboards-helper
as compared to other containers, from what I can tell.In the most recent place I saw it, I found that the host (external to Docker) had bogus DNS settings in
/etc/resolv.conf
. Clearing those up fixed it internally for dashboards-helper.With that information, I need to see if we can reproduce this consistently and if there's anything to be done about it.
The text was updated successfully, but these errors were encountered: