{"id":29074,"date":"2023-11-10T15:03:44","date_gmt":"2023-11-10T14:03:44","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=29074"},"modified":"2023-11-10T15:03:47","modified_gmt":"2023-11-10T14:03:47","slug":"cloudbees-cd-ro-pipelines-advanced-parameters","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/","title":{"rendered":"Cloudbees CD\/RO, Pipelines advanced parameters"},"content":{"rendered":"\n<p>Cloudbees CD\/RO is a highly flexible tool. You can define your own customized parameter forms for pipelines or procedures.<br>For example, the same parameter form can be adapted according to the users: user-friendly for common users or more permissive for admin users.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-exemple-of-dynamic-parameters-form\"><strong>Exemple of dynamic parameters form<\/strong><\/h2>\n\n\n\n<p>I will take a basic example to explain how to configure Cloudbees CD\/RO to render a different parameters form depending of the user.<\/p>\n\n\n\n<p>I want to run a pipeline on a git repository. The user can choose the branch on which to run the pipeline. Common users can select the branch to use with a pre-defined drop down list, while the advanced users have a possibility to switch to &#8220;Advanced Mode&#8221;. In this mode, the drop down list is replaced by a free text field.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"523\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png\" alt=\"\" class=\"wp-image-29093\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-300x153.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-768x392.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1536x785.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-2048x1047.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-constraints\"><strong>Constraints<\/strong><\/h2>\n\n\n\n<p>Although the desired behavior is simple, replace the drop down list by a free text field for debugging. There are a few constraints to bear in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Field type cannot be changed dynamically<\/li>\n\n\n\n<li>Field names are unique for each form<\/li>\n\n\n\n<li>Render Condition only affects display, field exists in all cases<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-detect-user-type\"><strong>Detect user type<\/strong><\/h2>\n\n\n\n<p>In this case, I use a property &#8220;isAdvanced&#8221; set on the user to authorize access to the advanced mode.<\/p>\n\n\n\n<p>I use a hidden intermediate field to store my user&#8217;s status. As a result, the Render Condition of the fields linked to this value is simplified.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"474\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Hidden_Field-1024x474.png\" alt=\"\" class=\"wp-image-29094\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Hidden_Field-1024x474.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Hidden_Field-300x139.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Hidden_Field-768x356.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Hidden_Field.png 1293w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This field contains a boolean value calculated from the user&#8217;s property &#8220;isAdvanced&#8221;. To do this, the default value uses a javascript expression to fill the value:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$&#091;\/javascript (myUser.isAdvanced == \"true\")?\"true\":\"false\"]<\/code><\/pre>\n\n\n\n<p>To hide the field in all cases, simply add &#8220;false&#8221; to the rendering condition.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-advanced-option\">Advanced option<\/h2>\n\n\n\n<p>To activate the advanced mode, add a checkbox to the form.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"474\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Advanced_Checkbox-1024x474.png\" alt=\"\" class=\"wp-image-29095\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Advanced_Checkbox-1024x474.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Advanced_Checkbox-300x139.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Advanced_Checkbox-768x356.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Advanced_Checkbox.png 1294w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Only advanced user can access this checkbox. To do this, add a Render Condition to check the value of the previous advancedUser field:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>advancedUser == true<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-main-drop-down-list\">The main drop down list<\/h2>\n\n\n\n<p>Add the main field to select the branch. This field is used by all users in standard mode.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"492\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/DropDown_Field-1-1024x492.png\" alt=\"\" class=\"wp-image-29103\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/DropDown_Field-1-1024x492.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/DropDown_Field-1-300x144.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/DropDown_Field-1-768x369.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/DropDown_Field-1.png 1527w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This field is only displayed if the &#8220;Advanced Mode&#8221; checkbox is unchecked. To do this:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the &#8220;advancedMode&#8221; field to the dependencies<\/li>\n\n\n\n<li>Define a Render Condition to hide the field on advanced mode :<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>${advancedMode} != true<\/code><\/pre>\n\n\n\n<p><strong>Note<\/strong> : It&#8217;s important to add the &#8220;advancedMode&#8221; field to the dependencies, as it enables dynamic re-rendering of the form when the checkbox is checked or unchecked.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-overriding-the-main-field\">Overriding the main field<\/h2>\n\n\n\n<p>We don&#8217;t really replace the main drop down list, it&#8217;s hidden and after that, we display another text field instead. To do that, add a new text field:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"492\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Text_Field-1024x492.png\" alt=\"\" class=\"wp-image-29124\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Text_Field-1024x492.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Text_Field-300x144.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Text_Field-768x369.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Text_Field.png 1528w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Unlike the drop down list, this field is visible when the &#8220;Advanced Mode&#8221; checkbox is checked. To do that, add this Render Condition:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>${advancedMode} == true<\/code><\/pre>\n\n\n\n<p>As with the drop down list, don&#8217;t forget to add the &#8220;advancedMode&#8221; field to the dependencies.<\/p>\n\n\n\n<p>The default value of the text field retrieves the value from the drop down list :<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"475\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value-1024x475.png\" alt=\"\" class=\"wp-image-29140\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value-1024x475.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value-300x139.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value-768x357.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value-1536x713.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Default_Value.png 1721w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The drop down list and the text field are chained so that only the text field value can be used in pipeline tasks:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"132\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained-1024x132.png\" alt=\"\" class=\"wp-image-29139\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained-1024x132.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained-300x39.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained-768x99.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained-1536x198.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Fields_Chained.png 1922w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This configuration works as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In standard mode, the drop down list value is transferred to the text field, then the text field value is used in the pipeline.<\/li>\n\n\n\n<li>In advanced mode, the drop down list is not used, the user modifies the text field, and the text field value is passed to the pipeline.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>At the end, the form contains some intermediate field to display only one or two fields to the user:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"487\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Field_List-1024x487.png\" alt=\"\" class=\"wp-image-29141\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Field_List-1024x487.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Field_List-300x143.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Field_List-768x365.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Field_List.png 1263w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>In conclusion, Cloudbees CD\/RO is a truly powerful and flexible tool. So, by using a few intermediate fields and linking them smartly, we can create simple, intuitive forms for our users. As a result, a non-technical user can run a pipeline while advanced users can do what they want &#8211; and all without duplicating pipelines!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cloudbees CD\/RO is a highly flexible tool. You can define your own customized parameter forms for pipelines or procedures.For example, the same parameter form can be adapted according to the users: user-friendly for common users or more permissive for admin users. Exemple of dynamic parameters form I will take a basic example to explain how [&hellip;]<\/p>\n","protected":false},"author":72,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1320],"tags":[3158,2667,2981],"type_dbi":[],"class_list":["post-29074","post","type-post","status-publish","format-standard","hentry","category-devops","tag-cloudbees-cd","tag-devops-2","tag-pipeline"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Cloudbees CD\/RO, Pipelines advanced parameters - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cloudbees CD\/RO, Pipelines advanced parameters\" \/>\n<meta property=\"og:description\" content=\"Cloudbees CD\/RO is a highly flexible tool. You can define your own customized parameter forms for pipelines or procedures.For example, the same parameter form can be adapted according to the users: user-friendly for common users or more permissive for admin users. Exemple of dynamic parameters form I will take a basic example to explain how [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-10T14:03:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-10T14:03:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png\" \/>\n<meta name=\"author\" content=\"Nicolas Meunier\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nicolas Meunier\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\"},\"author\":{\"name\":\"Nicolas Meunier\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe\"},\"headline\":\"Cloudbees CD\/RO, Pipelines advanced parameters\",\"datePublished\":\"2023-11-10T14:03:44+00:00\",\"dateModified\":\"2023-11-10T14:03:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\"},\"wordCount\":643,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png\",\"keywords\":[\"Cloudbees Cd\",\"devops\",\"Pipeline\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\",\"name\":\"Cloudbees CD\/RO, Pipelines advanced parameters - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png\",\"datePublished\":\"2023-11-10T14:03:44+00:00\",\"dateModified\":\"2023-11-10T14:03:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details.png\",\"width\":2184,\"height\":1116},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cloudbees CD\/RO, Pipelines advanced parameters\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe\",\"name\":\"Nicolas Meunier\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g\",\"caption\":\"Nicolas Meunier\"},\"description\":\"Nicolas Meunier has more than 20 years of experience in IT web technologies as well as in development. He is specialized in Cloud solutions such as CI\/CD. His expertise also includes Kubernetes, Docker, Jenkins-X and Azure Devops. Florence Porret (FP is IT Consultant in Cloud solutions. Prior to joining dbi services, Nicolas Meunier was developer and maintainer of a CI\/CD pipelines at CEGID in Paris. He also worked as Lead Developer at KPMG. Florence Porret (FP holds a superior technical diploma in IT development. His branch-related experience covers software and cloud platform architecture.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/nicolasmeunier\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cloudbees CD\/RO, Pipelines advanced parameters - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/","og_locale":"en_US","og_type":"article","og_title":"Cloudbees CD\/RO, Pipelines advanced parameters","og_description":"Cloudbees CD\/RO is a highly flexible tool. You can define your own customized parameter forms for pipelines or procedures.For example, the same parameter form can be adapted according to the users: user-friendly for common users or more permissive for admin users. Exemple of dynamic parameters form I will take a basic example to explain how [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/","og_site_name":"dbi Blog","article_published_time":"2023-11-10T14:03:44+00:00","article_modified_time":"2023-11-10T14:03:47+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png","type":"","width":"","height":""}],"author":"Nicolas Meunier","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nicolas Meunier","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/"},"author":{"name":"Nicolas Meunier","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe"},"headline":"Cloudbees CD\/RO, Pipelines advanced parameters","datePublished":"2023-11-10T14:03:44+00:00","dateModified":"2023-11-10T14:03:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/"},"wordCount":643,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png","keywords":["Cloudbees Cd","devops","Pipeline"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/","url":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/","name":"Cloudbees CD\/RO, Pipelines advanced parameters - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details-1024x523.png","datePublished":"2023-11-10T14:03:44+00:00","dateModified":"2023-11-10T14:03:47+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/Form_Details.png","width":2184,"height":1116},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/cloudbees-cd-ro-pipelines-advanced-parameters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Cloudbees CD\/RO, Pipelines advanced parameters"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/2e08c09a2f083004587b54128684fefe","name":"Nicolas Meunier","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cc2139acc6c64bddf3827e2faaaa70f227faafc288457fc351a4a836813112a8?s=96&d=mm&r=g","caption":"Nicolas Meunier"},"description":"Nicolas Meunier has more than 20 years of experience in IT web technologies as well as in development. He is specialized in Cloud solutions such as CI\/CD. His expertise also includes Kubernetes, Docker, Jenkins-X and Azure Devops. Florence Porret (FP is IT Consultant in Cloud solutions. Prior to joining dbi services, Nicolas Meunier was developer and maintainer of a CI\/CD pipelines at CEGID in Paris. He also worked as Lead Developer at KPMG. Florence Porret (FP holds a superior technical diploma in IT development. His branch-related experience covers software and cloud platform architecture.","url":"https:\/\/www.dbi-services.com\/blog\/author\/nicolasmeunier\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/29074","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/72"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=29074"}],"version-history":[{"count":14,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/29074\/revisions"}],"predecessor-version":[{"id":29353,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/29074\/revisions\/29353"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=29074"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=29074"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=29074"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=29074"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}