does the helm chart support `ssl` ?
# prefect-server
d
does the helm chart support
ssl
?
👀 1
a
You would need to configure it on your own afaik Maybe someone from the community can share how they approached this
m
with AKS, nginx ingress controller and letsencrypt set up, we used these values for ui.ingress (and similar for apollo.ingress):
Copy code
annotations:
  <http://cert-manager.io/cluster-issuer|cert-manager.io/cluster-issuer>: letsencrypt-prod
  <http://nginx.ingress.kubernetes.io/ssl-redirect|nginx.ingress.kubernetes.io/ssl-redirect>: "true"
enabled: true
hosts:
- <http://prefect-ui.dev-domain.com|prefect-ui.dev-domain.com>
ingressClassName: public-nginx
tls:
- hosts:
  - <http://prefect-ui.dev-domain.com|prefect-ui.dev-domain.com>
  secretName: prefecthq-ui-general-tls
i guess the hard work was in the nginx/letsencrypt part 🙂
a
Thank you so much for sharing @Marko MuĆĄnjak!
d
ah I see đŸ€” Thank you for sharing!