我一遍又一遍地阅读 REST api,但无法弄清楚如何使用 curl 在工件中搜索工件的确切语法。
这就是我正在做的事情:
result=$(curl -u ${ArtifactoryUsername}:${ArtifactoryAPIKey} -X GET "${artifactory_repo}/api/search/artifact?name=${generated_package_name}")
echo "${result}"
在这里, artifactory_repo 是
https://xxx.artifactory.xxx.com:443/artifactory/hyc-ca-container-helm-local
并且hyc-ca-container-helm-local是我的仓库,我已经将它附加在我的工件 url 的末尾
该文件在工件中,但我找不到消息文件。我确信原因是我使用的语法不正确。
有人可以在这里指导我吗?