Skip to content
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

loadgenerator and imageprovider won't start in helm-chart if ipv6 is disabled #1741

Open
hurra opened this issue Oct 10, 2024 · 0 comments
Open
Labels
bug Something isn't working helm-update-required Requires an update to the Helm chart when released

Comments

@hurra
Copy link

hurra commented Oct 10, 2024

Bug Report

Which version of the demo you are using? (please provide either a specific
Chart 0.32.8
App-Version 1.11.1

Symptom

On our kubernetes cluster ipv6 is disabled. The two services imageprovider and loadgenerator won't start if ipv6 isn't available.

errormessage for imageprovider:

$kubectl logs my-otel-demo-imageprovider-57f7b78c6c-2dfmw
load_module modules/ngx_otel_module.so;

events {
    worker_connections 1024;
}

http {
    otel_exporter {
        endpoint my-otel-demo-otelcol:4317;
    }
    otel_trace on;
    otel_trace_context propagate;
    otel_service_name imageprovider;
    otel_span_name imageprovider;


    include mime.types;
    sendfile on;
    server {
        listen 8081;
        listen [::]:8081;

        resolver 127.0.0.11;
        autoindex off;

        server_name _;
        server_tokens off;

        root /static;
        gzip_static on;
    }
}
2024/10/10 12:20:33 [emerg] 1#1: socket() [::]:8081 failed (97: Address family not supported by protocol)
nginx: [emerg] socket() [::]:8081 failed (97: Address family not supported by protocol)

The error for loadgenerator was already fixed for docker-compose, but not for the helm chart:
#1509

@hurra hurra added the bug Something isn't working label Oct 10, 2024
@julianocosta89 julianocosta89 added the helm-update-required Requires an update to the Helm chart when released label Oct 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working helm-update-required Requires an update to the Helm chart when released
Projects
None yet
Development

No branches or pull requests

2 participants