aws-observability / cdk-aws-observability-accelerator

CDK AWS Observability Accelerator
https://aws-observability.github.io/cdk-aws-observability-accelerator/
MIT No Attribution
138 stars 34 forks source link

NGINX Mon Pattern Traffic Routing and NGINX resource issue #125

Closed elamaran11 closed 8 months ago

elamaran11 commented 8 months ago

Describe the bug NGINX Mon Pattern Traffic Routing and NGINX resource issue

To Reproduce Steps to reproduce the behavior: While working on the NGINX Mon Pattern after step 5 Deploy an example Nginx application Ingress resource fails after using the below Ingress resource it works, documentation needs to be updated.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: ingress-nginx-demo
  namespace: {{namespace}}
spec:
  ingressClassName: nginx
  rules:
  - host: '<Complete URL of NGINX LB SERVICE>'
    http:
      paths:
        - path: /apple
          pathType: Prefix
          backend:
            service:
              name: apple-service
              port: 
                number: 5678
        - path: /banana
          pathType: Prefix
          backend:
            service:
              name: banana-service
              port: 
                number: 5678

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context Add any other context about the problem here.

elamaran11 commented 8 months ago

@joozero Is working on this issue.