Jaeger-operator: Switch to disable the ingress resource

Created on 14 Sep 2018  路  13Comments  路  Source: jaegertracing/jaeger-operator

Is it currently possible to disable the creation of the ingress resource?

If not, I think it would be a good feature to update the CRD spec with an ingress configuration section.

enhancement good first issue

Most helpful comment

@jpkrohling and @sneko I have just submitted PR #49 for this issue.

All 13 comments

Would you like to give it a shot? Should be relatively easy to do.

Yes, sure I can implement the feature.

For the switch specification, I was thinking of something like:

apiVersion: io.jaegertracing/v1alpha1
kind: Jaeger
metadata:
  name: my-jaeger
spec:
  ingress:
    enabled: false

What do you think about it?

Right now, the ingress is applied only to the query deployment. So, to avoid any ambiguity, it would be better to have it as a child of the JaegerQuery struct.

So it would look like:

apiVersion: io.jaegertracing/v1alpha1
kind: Jaeger
metadata:
  name: my-jaeger
spec:
  query:
    ingress:
      enabled: false

That's my preference, yes.

Should I close this issue?

I'm closing. Thanks for the PR!

Hi @secat @jpkrohling, I tried to disable ingress but it doesn't work:

spec:
  strategy: all-in-one
  all-in-one:
    image: jaegertracing/all-in-one:1.7
    options:
      log-level: info
      memory:
        max-traces: 10000
  query:
    ingress:
      enabled: false

Could you help me please? Thanks

Created #48 to handle the missing support in the all-in-one.

@jpkrohling to be honest I'm quite busy on other stuff, I was just looking at the operator to see advancement. I'm on my side using for now the Jaeger instance embedded with Istio Helm Chart.

But if I find some spare time I will dig into it (even if I'm not a Go programmer ^^)

BTW, thanks for your work 馃憤

That's completely understandable! I have a number of other improvements on my queue right now, so, I'll leave it open and see if someone would pick it up as part of hacktoberfest :)

@jpkrohling and @sneko I have just submitted PR #49 for this issue.

Was this page helpful?
0 / 5 - 0 ratings