Deploying Immuta with a custom Certificate Authority or Trust Chain
Issue
Cause
Resolution
kubectl -n immuta create secret generic ca-certs --from-file=ca-bundle.pem=custom-ca.pemqueryEngine: extraVolumes: - name: ca-certs secret: secretName: ca-certs items: - key: ca-bundle.pem path: ca-bundle.pem extraVolumeMounts: - name: ca-certs mountPath: /etc/pki/tls/certs readOnly: true extraConfig: plugins: targetHandler: #replace with appropriate backing technology, see step 2 dbms: driverArguments: TrustedCerts: /etc/pki/tls/certs/ca-bundle.pem web: extraVolumes: - name: ca-certs secret: secretName: ca-certs items: - key: ca-bundle.pem path: ca-bundle.pem extraVolumeMounts: - name: ca-certs mountPath: /etc/pki/tls/certs readOnly: true extraEnv: - name: NODE_EXTRA_CA_CERTS value: /etc/pki/tls/certs/ca-bundle.pem extraConfig: plugins: targetHandler: #replace with appropriate backing technology, see step 2 dbms: driverArguments: TrustedCerts: /etc/pki/tls/certs/ca-bundle.pemhelm upgrade -n immuta immuta/immuta --values helm-values.yaml
Last updated

