Hi, I need to add support for our flyte-core deplo...
# flyte-support
s
Hi, I need to add support for our flyte-core deployment to talk to our internal blob-storage using https but I'm struggling to figure out where in the flyte-core configs would I specify custom CA certificates so that the flyte-core deployment can trust connections to this internal blob-storage service. Does anyone know what the config file field I need to specify is?
c
great question @shy-morning-17240 It doesn't seem this is implemented. Only the S3 type has the
disable-ssl
flag but even so, there's no argument to load a custom certificate.
s
@average-finland-92144 Yeah, this was tricky, but I was able to get around this by uploading the ca certificates as configmaps and mounting the files into the /etc/ssl/certs directory of flyte propeller/admin/scheduler/datacatalog pods by specifying this information in the additionalVolumes and additionalVolumeMounts sections. So at least there was a simple workaround that can be applied automatically anytime a helm upgrade is done
a
woah, that is wild. Thanks for sharing