Skip to content

Instantly share code, notes, and snippets.

@mbulkeley
Last active June 19, 2019 08:37
Show Gist options
  • Save mbulkeley/bc0630793fd1bd22cbf16706cec701d4 to your computer and use it in GitHub Desktop.
Save mbulkeley/bc0630793fd1bd22cbf16706cec701d4 to your computer and use it in GitHub Desktop.
SSL cert expiration list
# Command line or put into an executable file...
for i in `ls /etc/kubernetes/ssl/*.pem|grep -v key|grep -v service-account-token`; do echo $i; openssl x509 -startdate -enddate -noout -in $i; done
@mbulkeley
Copy link
Author

Rancher certificate expiration check.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment