-
Notifications
You must be signed in to change notification settings - Fork 413
Description
Hello,
I'm trying to install the gpu-operator helm chart into an air-gapped environment using private repositories. To get around SSL for these repositories, I need to mount the certificate configmap like so in my values:
driver:
certConfig:
name: cert-config
Issue is that these certificates are going into /etc/pki/ca-trust/extracted/pem, which isn't a directory that Red Hat will read from when trying to validate the repositories. Can you please update the chart to instead place these in /etc/pki/ca-trust/source/anchors and run an 'update-ca-trust' command at the beginning of the nvidia-driver script used as the entrypoint for the driver container?
The extracted/pem directory is the output directory for certificates after they've gone through the update-ca-trust process, placing the certs directly there will not make them available to the system.