Skip to content

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

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.

3 participants