Deploying Helm Charts
Information for using Helm Charts with DuploCloud
Last updated
Was this helpful?
Was this helpful?
ingress:
enabled: true
className: alb
annotations:
# name the alb and group so more than one ingress single alb
alb.ingress.kubernetes.io/load-balancer-name: myapp
alb.ingress.kubernetes.io/group.name: myapp
# use tenant alb security groups and networking
alb.ingress.kubernetes.io/security-groups: ${alb_security_groups}
alb.ingress.kubernetes.io/target-type: "ip"
# enable https
alb.ingress.kubernetes.io/certificate-arn: ${cert_arn}
alb.ingress.kubernetes.io/listen-ports: "[{\"HTTPS\": 443}]"
# makes a private alb
alb.ingress.kubernetes.io/scheme: "internal"
alb.ingress.kubernetes.io/subnets: ${internal_subnets}
hosts:
- host: myapp.${domain}
paths:
- path: /*
pathType: ImplementationSpecific
port: 3301