传统运维 - 查看ssh密钥在gitlab上的归属
2023-09-04
申请gitlab token
获取 SSH 密钥的指纹(图中粉色的那块内容)
ssh-keygen -l -f id_rsa.pub
对上述获得的密钥指纹,进行URL编码
python3 -c "import urllib.parse; print(urllib.parse.quote_plus('${密钥指纹}'))"
调用gitlab api即可查到密钥归属
curl -H "PRIVATE-TOKEN: ${GITLAB_TOKEN}" "https://gitlab.xx.com/api/v4/keys?fingerprint=URL编码后的密钥指纹" | jq
.gitconfig
标题:传统运维 - 查看ssh密钥在gitlab上的归属
地址:https://blog.njqhome.com:8443/articles/2023/09/04/1693807252641.html