{"id":2279,"date":"2021-03-03T18:18:22","date_gmt":"2021-03-03T15:18:22","guid":{"rendered":"https:\/\/artem.services\/?p=2156"},"modified":"2022-06-08T22:23:57","modified_gmt":"2022-06-08T19:23:57","slug":"2279","status":"publish","type":"post","link":"https:\/\/artem.services\/?p=2279&lang=en","title":{"rendered":"\u00a0Jenkins &#8212; Active Choice: S3 &#8212; Return necessary key value from JSON file"},"content":{"rendered":"<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-819\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo.png\" alt=\"\" width=\"1280\" height=\"412\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo.png 1280w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-300x97.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-768x247.png 768w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-1024x330.png 1024w, https:\/\/artem.services\/wp-content\/uploads\/2019\/02\/Jenkins-Logo-954x307.png 954w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" \/><\/p>\n<p>For a parameterized assembly with an image tag selection, you will need the <a href=\"https:\/\/plugins.jenkins.io\/uno-choice\/\" target=\"_blank\" rel=\"noopener\">Active Choices<\/a> plugin<\/p>\n<p>Go to &quot;<strong>Manage Jenkins<\/strong>&quot;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1782\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001.png\" alt=\"\" width=\"349\" height=\"383\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001.png 349w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/001-273x300.png 273w\" sizes=\"(max-width: 349px) 100vw, 349px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Section &quot;<strong>Manage Plugins<\/strong>&quot;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1783\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002.png\" alt=\"\" width=\"927\" height=\"493\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002.png 927w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002-300x160.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2020\/03\/002-768x408.png 768w\" sizes=\"(max-width: 927px) 100vw, 927px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Go to the &quot;<strong>Available<\/strong>&quot; tab and select &quot;<strong>Active Choices<\/strong>&quot; in the search.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-1796\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37.png\" alt=\"\" width=\"1412\" height=\"130\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37.png 1412w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-300x28.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-1024x94.png 1024w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-768x71.png 768w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-954x88.png 954w, https:\/\/artem.services\/wp-content\/uploads\/2020\/04\/Screenshot-2020-04-01-at-10.55.37-1354x125.png 1354w\" sizes=\"(max-width: 1412px) 100vw, 1412px\" \/><\/p>\n<p>Install it.<\/p>\n<p>&nbsp;<\/p>\n<p>Create a &quot;<strong>New Item<\/strong>&quot; \u2013 &quot;<strong>Pipeline<\/strong>&quot;, indicate that it will be a parameterized assembly, and add the parameter &quot;<strong>Active Choices Parameter<\/strong>&quot;<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-2134 size-full\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2021\/01\/Screenshot-2021-01-13-at-14.46.06.png\" alt=\"\" width=\"946\" height=\"502\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2021\/01\/Screenshot-2021-01-13-at-14.46.06.png 946w, https:\/\/artem.services\/wp-content\/uploads\/2021\/01\/Screenshot-2021-01-13-at-14.46.06-300x159.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2021\/01\/Screenshot-2021-01-13-at-14.46.06-768x408.png 768w\" sizes=\"(max-width: 946px) 100vw, 946px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>We indicate that this is &quot;<strong>Groovy Script<\/strong>&quot; and paste the following into it:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\nimport com.amazonaws.regions.Regions;\r\nimport com.amazonaws.services.s3.AmazonS3;\r\nimport com.amazonaws.services.s3.AmazonS3ClientBuilder;\r\nimport com.amazonaws.services.s3.model.S3Object;\r\nimport com.cloudbees.plugins.credentials.Credentials;\r\nimport com.cloudbees.plugins.credentials.CredentialsNameProvider;\r\nimport com.cloudbees.plugins.credentials.common.StandardCredentials;\r\nimport com.cloudbees.jenkins.plugins.awscredentials.AmazonWebServicesCredentials;\r\nimport groovy.json.JsonSlurper;\r\nimport java.nio.charset.Charset;\r\nimport java.nio.charset.StandardCharsets;\r\nimport java.util.stream.Collectors;\r\nimport jenkins.model.*\r\n  \r\ndef AWS_REGION = &#039;eu-west-1&#039;\r\ndef BUCKET_NAME = &#039;artem.services&#039;\r\ndef INFO_FILE = &#039;info.json&#039;\r\n\r\ncredentialsId = &#039;aws_credentials&#039;\r\n\r\ndef creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(AmazonWebServicesCredentials.class, Jenkins.instance, null, null ).find({it.id == credentialsId});\r\n\r\n\r\nAmazonS3 s3Client = AmazonS3ClientBuilder.standard().withCredentials(creds).withRegion(AWS_REGION).build(); \r\n\r\nS3Object s3Object = s3Client.getObject(BUCKET_NAME, INFO_FILE)\r\n\r\ntry {\r\n    BufferedReader reader = new BufferedReader(new InputStreamReader(s3Object.getObjectContent()))\r\n    s3Data = reader.lines().collect(Collectors.joining(&quot;\\n&quot;));\r\n} catch (Exception e) {\r\n    System.err.println(e.getMessage());\r\n    System.exit(1);\r\n}\r\n\r\ndef json = new JsonSlurper().parseText(s3Data)\r\n\r\nreturn json.instance.ip\r\n<\/pre>\n<p>&nbsp;<\/p>\n<blockquote><p><span class=\"VIiyi\" lang=\"en\"><span class=\"JLqJ4b ChMk0b\" data-language-for-alternatives=\"en\" data-language-to-translate-into=\"ru\" data-phrase-index=\"0\" data-number-of-phrases=\"1\"><span class=\"Q4iAWc\">Where is the value of the variables, &quot;<strong>credentialsId<\/strong>&quot; &#8212; Jenkins Credentials ID with AWS Access Key and AWS Secret Key (if the Jenkins instance does not use IAM Role, or it is not deployed in AWS Cloud);<\/span><\/span><\/span><\/p>\n<p>&quot;<strong>AWS_REGION<\/strong>&quot; &#8212; <span class=\"VIiyi\" lang=\"en\"><span class=\"JLqJ4b ChMk0b\" data-language-for-alternatives=\"en\" data-language-to-translate-into=\"ru\" data-phrase-index=\"0\" data-number-of-phrases=\"1\"><span class=\"Q4iAWc\">AWS region where S3 Bucket is located;<\/span><\/span><\/span><\/p>\n<p>&quot;<strong>BUCKET_NAME<\/strong>&quot; &#8212; <span class=\"VIiyi\" lang=\"en\"><span class=\"JLqJ4b ChMk0b\" data-language-for-alternatives=\"en\" data-language-to-translate-into=\"ru\" data-phrase-index=\"0\" data-number-of-phrases=\"1\"><span class=\"Q4iAWc\">S3 bucket name;<\/span><\/span><\/span><\/p>\n<p>&quot;<strong>INFO_FILE<\/strong>&quot; &#8212; <span class=\"VIiyi\" lang=\"en\"><span class=\"JLqJ4b ChMk0b\" data-language-for-alternatives=\"en\" data-language-to-translate-into=\"ru\" data-phrase-index=\"0\" data-number-of-phrases=\"1\"><span class=\"Q4iAWc\">the key of the object in the bucket, in our case a JSON file;<\/span><\/span><\/span><\/p>\n<p>&quot;<strong>return json.instance.ip<\/strong>&quot; &#8212; <span class=\"VIiyi\" lang=\"en\"><span class=\"JLqJ4b ChMk0b\" data-language-for-alternatives=\"en\" data-language-to-translate-into=\"ru\" data-phrase-index=\"0\" data-number-of-phrases=\"1\"><span class=\"Q4iAWc\">return key value<\/span><\/span><\/span> <strong>instance: {&#39;ip&#39;: &quot;1.2.3.4}<\/strong><\/p><\/blockquote>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For a parameterized assembly with an image tag selection, you will need the Active Choices plugin Go to &quot;Manage Jenkins&quot; &nbsp; Section &quot;Manage Plugins&quot; &nbsp; Go to the &quot;Available&quot; tab and select &quot;Active Choices&quot; in the search. Install it. &nbsp; Create a &quot;New Item&quot; \u2013 &quot;Pipeline&quot;, indicate that it will be a parameterized assembly, and &hellip; <a href=\"https:\/\/artem.services\/?p=2279&#038;lang=en\" class=\"more-link\">\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0447\u0438\u0442\u0430\u0442\u044c<span class=\"screen-reader-text\"> &quot;\u00a0Jenkins &#8212; Active Choice: S3 &#8212; Return necessary key value from JSON file&quot;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[613],"tags":[1465,617,1857,1859,1247,483],"_links":{"self":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/2279"}],"collection":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2279"}],"version-history":[{"count":2,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/2279\/revisions"}],"predecessor-version":[{"id":2281,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/2279\/revisions\/2281"}],"wp:attachment":[{"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}