https://prefect.io logo
d

Daniel Nilsen

03/22/2022, 9:39 AM
does the helm chart support
ssl
?
👀 1
a

Anna Geller

03/22/2022, 9:55 AM
You would need to configure it on your own afaik Maybe someone from the community can share how they approached this
m

Marko Mušnjak

03/24/2022, 11:19 AM
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

Anna Geller

03/24/2022, 12:33 PM
Thank you so much for sharing @Marko Mušnjak!
d

Daniel Nilsen

03/24/2022, 12:49 PM
ah I see 🤔 Thank you for sharing!
35 Views