Skip to content

Instantly share code, notes, and snippets.

@rhopp
Created October 30, 2019 07:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rhopp/24b5d2cbde53839a41eac33d13dcd67c to your computer and use it in GitHub Desktop.
Save rhopp/24b5d2cbde53839a41eac33d13dcd67c to your computer and use it in GitHub Desktop.
#!/bin/bash
## This script expects oc to be logged in into proper cluster, where you want the root cert to be imported from
oc get secret router-ca -n openshift-ingress-operator -o jsonpath="{.data.tls\.crt}" | base64 -d > ca.crt
certutil -d sql:$HOME/.pki/nssdb -A -t CT,C,C -n $(openssl x509 -in ca.crt -text |grep Issuer| grep -o 'ingress-operator@.*') -i ca.crt
rm ca.crt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment