parse wildcard access URL with helm install issue

values.yaml has
coder:
env:
- name: "CODER_WILDCARD_ACCESS_URL"
value: "https://*-coder.example.com"
ingress:
enable: true
# using AWS Load Balancer Controller
className: "alb"
host: coder.example.com
wildcardHost: "-coder.example.com"
# also tried "
.coder.example.com"
annotations:
alb.ingress.kubernetes.io/target-type: ip
alb.ingress.kubernetes.io/backend-protocol: HTTP
alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS":443}]'
alb.ingress.kubernetes.io/ssl-policy: ELBSecurityPolicy-TLS13-1-2-2021-06
alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:us-east-1:account:certificate/arn
alb.ingress.kubernetes.io/scheme: internal
alb.ingress.kubernetes.io/ip-address-type: ipv4
external-dns.alpha.kubernetes.io/hostname: coder.example.com,-coder.example.com
alb.ingress.kubernetes.io/subnets: subnet-xxxxxxxxxxxxxxxx,subnet-xxxxxxxxxxxxxxxx

getting errors:
running command "coder server": parse wildcard access URL "https://
-coder.example.com":
hostname pattern must not contain a scheme: "https://*-coder.example.com":

I gave up on wildcardHost because of the errors.

env: EKS 1.24, coder_helm_0.27.3.tgz, bitnami postgresql-12.8.2.tgz
Was this page helpful?