Skip to content

Jaeger security proxy #275

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

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open

Jaeger security proxy #275

wants to merge 17 commits into from

Conversation

asafchen-dig
Copy link
Contributor

@asafchen-dig asafchen-dig commented Nov 19, 2024

must be exposed as HTTPS in order to let the auth cookie to be passed.

How to use:

  1. Create an empty helm chart.
  2. Add digma as a dependency.
  3. Disable load balancer creation for jaeger:
    # values.yaml
    digma:
      embeddedJaeger:
        loadbalancer: false
  4. Add an ingress resource to route traffic to jaegers' proxy:
    # template/ingress.yaml
    
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: {{ .Release.Name }}-jaeger-ingress
      annotations:    
        alb.ingress.kubernetes.io/scheme: internet-facing
        alb.ingress.kubernetes.io/target-type: ip
        alb.ingress.kubernetes.io/group.name: {{ .Release.Name }}
        alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS": 443}]'
    spec:
      ingressClassName: alb
      rules:
      - host: jaeger.example.com
        http:
          paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: {{ tpl .Values.digma.embeddedJaeger.proxyHost . }}
                port:
                  number: 16686

@@ -6,4 +6,4 @@ description: A Helm chart containing Digma's services and dbs
home: https://github.com/digma-ai/digma
type: application
# appVersion: digma version (affects image tag)
appVersion: 0.3.153
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change it to an official BE version

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to add a design for this login page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants