|
@@ -6,15 +6,20 @@ pipeline {
|
|
|
git_url=""
|
|
|
}
|
|
|
parameters {
|
|
|
+ bool(
|
|
|
+ name: "build",
|
|
|
+ defaultValue: "true",
|
|
|
+ description: "To build image set built to 'true'. To not build - set parameter to 'false'."
|
|
|
+ )
|
|
|
string(
|
|
|
- name: "build_repo",
|
|
|
+ name: "repo",
|
|
|
defaultValue: "prod",
|
|
|
- description: "Repository to build from. To not build - set parameter to 'none'."
|
|
|
+ description: "Repository to build and/or deploy from."
|
|
|
)
|
|
|
string(
|
|
|
name: "service_update",
|
|
|
defaultValue: "",
|
|
|
- description: "Services to update - i.e. info_node or/and info_node-api"
|
|
|
+ description: "Services to update - i.e. info_node or/and info_node-api. Lave empty to not update services."
|
|
|
)
|
|
|
}
|
|
|
stages {
|