yujinchoi-94 commented on issue #488:
URL: 
https://github.com/apache/apisix-helm-chart/issues/488#issuecomment-1447943650

   @Gallardot You can check below. (What I provided on the first comment)
   ```
   apisix:
   
     gateway:
       type: NodePort
       ingress:
         enabled: true
         annotations:
           kubernetes.io/ingress.class: alb
           alb.ingress.kubernetes.io/scheme: internal
           alb.ingress.kubernetes.io/certificate-arn: ***
           alb.ingress.kubernetes.io/security-groups: 'common-internal-alb-sg'
           alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS": 443}]'
           alb.ingress.kubernetes.io/healthcheck-path: /
           alb.ingress.kubernetes.io/success-codes: '404' # 404 Route Not Found
           alb.ingress.kubernetes.io/backend-protocol: HTTP
         hosts:
           - host: ***
             paths:
               - /*
   
     discovery:
       enabled: true
       registry:
         eureka:
           host:
             - ***
             - ***
           prefix: "/eureka/"
           fetch_interval: 30
           weight: 100
           timeout:
             connect: 2000
             send: 2000
             read: 5000
   
     # Observability configuration.
     # ref: https://apisix.apache.org/docs/apisix/plugins/prometheus/
     serviceMonitor:
       enabled: true
       labels:
         release: kube-prometheus-stack
   
     dashboard:
       enabled: true
   
       config:
         conf:
           etcd:
             endpoints:
               - dev-apisix-etcd:2379
   
       service:
         type: NodePort
         port: 80
   
       ingress:
         enabled: true
         annotations:
           kubernetes.io/ingress.class: alb
           alb.ingress.kubernetes.io/scheme: internal
           alb.ingress.kubernetes.io/certificate-arn: ***
           alb.ingress.kubernetes.io/security-groups: 'common-internal-alb-sg'
           alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS": 443}]'
           alb.ingress.kubernetes.io/healthcheck-path: /ping
           alb.ingress.kubernetes.io/success-codes: '200'
           alb.ingress.kubernetes.io/backend-protocol: HTTP
         hosts:
           - host: ***
             paths:
               - /*
   
     ingress-controller:
       enabled: true
       config:
         apisix:
           serviceName: dev-apisix-admin
           serviceNamespace: ingress-apisix
     plugins:
       - api-breaker
       - prometheus
       - forward-auth
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to