-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minio with self signed certificates wont work OOTB with Data Science Pipelines #60
Comments
What worked (and it's a bit ugly): oc get secret router-certs-default -n openshift-ingress -o jsonpath="{.data['tls\.crt']}" | base64 -D > ocp-router.crt
oc create configmap minio-certs --from-file=ocp-api.crt=ocp-api.crt --from-file=ocp-router.crt=ocp-router.crt and then patch apiVersion: datasciencepipelinesapplications.opendatahub.io/v1alpha1
kind: DataSciencePipelinesApplication
metadata:
name: pipelines-definition
spec:
apiServer:
cABundle: <---- HERE
configMapKey: ocp-router.crt
configMapName: minio-certs
... |
Yeah, Pipelines, as well as other components, currently have some issues with self-signed certificates. This is known and worked upon. |
Thanks for your feedback. Are you saying that even if I added |
Oh, no, if you have tested it as you said and it worked, then it works. |
If one follows the OSAI Fraud Detection tutorial and decided to use the local Minio setup, following https://github.com/opendatahub-io-contrib/ai-on-openshift/blob/main/docs/tools-and-applications/minio/minio.md , then there is an issue with creating the Data Science Pipeline, due to the TLS connection issue to Object Store:
and erorr reported in
data-science-pipelines-operator-controller-manager
in the namespaceredhat-ods-applications
:Once I solve this issue myself, will contribute PR to the minio setup instructions (https://github.com/opendatahub-io-contrib/ai-on-openshift/blob/main/docs/tools-and-applications/minio/minio.md, to provide some hint where to put OCP CA bundle reference.
The text was updated successfully, but these errors were encountered: