jaegertracing / helm-charts

Helm Charts for Jaeger backend
Apache License 2.0
265 stars 340 forks source link

[Bug]: jaeger-query already exists #388

Closed githubcdr closed 11 months ago

githubcdr commented 2 years ago

What happened?

Helm install/upgrade does not work with allInOne enabled;

provisionDataStore:
  cassandra: false
  elasticsearch: false
  kafka: false

allInOne:
  enabled: true

Steps to reproduce

  1. Install with helm
helm -n jaeger install jaeger jaegertracing/jaeger --values values.yaml

Expected behavior

Working install and setup

Relevant log output

Error: INSTALLATION FAILED: services "jaeger-query" already exists

Screenshot

No response

Additional context

No response

Jaeger backend version

No response

SDK

No response

Pipeline

No response

Stogage backend

No response

Operating system

No response

Deployment model

No response

Deployment configs

No response

jplayout commented 1 year ago

You have to set to false the others pods normally installed with the operator :

provisionDataStore:
  cassandra: false
allInOne:
  enabled: true
agent:
  enabled: false
collector:
  enabled: false
query:
  enabled: false