Skip to content
Discussion options

You must be logged in to vote

Hi @zhzhuang-zju 👋

The CLOWarden server itself does not support HTTPS directly, but you can handle TLS termination at the ingress level.

Example using some custom ingress annotations for the AWS LB:

ingress:
  annotations:
    kubernetes.io/ingress.class: alb
    alb.ingress.kubernetes.io/scheme: internet-facing
    alb.ingress.kubernetes.io/target-type: ip
    alb.ingress.kubernetes.io/listen-ports: '[{ "HTTP": 80 }, { "HTTPS": 443 }]'
    alb.ingress.kubernetes.io/actions.ssl-redirect: '{"Type": "redirect", "RedirectConfig": {"Protocol": "HTTPS", "Port": "443", "StatusCode": "HTTP_301" }}'
    alb.ingress.kubernetes.io/certificate-arn: "arn:..."
    alb.ingress.kubernetes.io/healthcheck…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@zhzhuang-zju
Comment options

Answer selected by zhzhuang-zju
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #340 on June 17, 2025 11:58.