diff --git a/README.md b/README.md index bd6629c..3ae2d09 100644 --- a/README.md +++ b/README.md @@ -202,3 +202,9 @@ kubectl get secret -o jsonpath='{.data.token}' | base64 -d ```bash kubectl get secret -o jsonpath='{.data.token}' | base64 -d > ./service-account-secret-base64 ``` + +**Get Cluster certificate Base64:** + +```bash +kubectl config view --raw -o jsonpath='{.clusters[0].cluster.certificate-authority-data}' +```