How to retrieve the JDK versions used across Build plans and Deployment plans

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問


プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

    

目的

To quickly retrieve the JDK versions used in the build plans and deployment plans you can run the below query in your Bamboo database.

ソリューション

Please run the below query to get all the build plans using JDK.

SELECT b.full_key,
       r.key_identifier
FROM   build b
       JOIN requirement r
         ON b.requirement_set = r.requirement_set
WHERE  key_identifier LIKE '%jdk%'; 


Please run the below query to get all the deployment plans using JDK.

SELECT dp.name AS Deployment_plan_name,
       d.name  AS Enviorement_name,
       r.key_identifier
FROM   deployment_environment d
       JOIN requirement r
         ON d.requirement_set = r.requirement_set
       JOIN deployment_project dp
         ON d.package_definition_id = dp.deployment_project_id
WHERE  key_identifier LIKE '%jdk%'; 




最終更新日 2021 年 11 月 22 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.