X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ci-management.git;a=blobdiff_plain;f=jjb%2Fiec%2Fiec.yaml;h=8e2546b215237fc791fa3761a35508386d4b6e9e;hp=391cdfa084f217b7c2dfd4f1d074753443ac1967;hb=3fa2500d131a4537a1755e340ceccd4d6ba1a0e7;hpb=6e8b0a936249436d4919a7eb0b6ebdb65bb14275 diff --git a/jjb/iec/iec.yaml b/jjb/iec/iec.yaml index 391cdfa..8e2546b 100644 --- a/jjb/iec/iec.yaml +++ b/jjb/iec/iec.yaml @@ -17,17 +17,29 @@ # ------------------------------- # DEPLOY TYPE DEFINITIONS # ------------------------------- - deploy-type: + deploy_type: - fuel-baremetal: slave-label: 'aarch64_dev' scenario: 'k8-calico-iec-noha' - fuel-virtual: slave-label: 'aarch64_dev' scenario: 'k8-calico-iec-noha' + - compass-virtual: + slave-label: 'aarch64_dev' + scenario: 'k8-calico-iec-noha' + + # ------------------------------- + # USECASE DEFINITIONS + # ------------------------------- + usecase: + - seba_on_arm: + slave-label: 'aarch64_dev' + scenario: 'k8-calico-iec-noha' jobs: - - 'iec-{deploy-type}-daily-{stream}' - - 'iec-deploy-{deploy-type}-daily-{stream}' + - 'iec-{deploy_type}-daily-{stream}' + - 'iec-deploy-{deploy_type}-daily-{stream}' + - 'iec-install-{usecase}-{deploy_type}-daily-{stream}' ############## # PARAMETERS # @@ -41,7 +53,7 @@ description: 'IP of the installer' - string: name: SSH_KEY - default: "/var/lib/opnfv/mcp.rsa" + default: '/var/lib/opnfv/mcp.rsa' description: 'Path to private SSH key to access environment nodes' - string: name: EXTERNAL_NETWORK @@ -50,13 +62,32 @@ - string: name: CI_DEBUG default: 'false' - description: "Show debug output information" + description: 'Show debug output information' + - string: + name: ARCHIVE_ARTIFACTS + default: '**/*.log' + description: Artifacts to archive to the logs server. +- parameter: + name: 'seba_on_arm-defaults' + parameters: + - string: + name: K8S_SSH_USER + default: 'ubuntu' + description: 'SSH username to connect to the K8s master ' + - string: + name: K8S_SSH_PASSWORD + default: '' + description: 'SSH password to connect to the K8s master' + - string: + name: K8S_SSH_KEY + default: '' + description: 'SSH key to connect to the K8s master' ######################## # job templates ######################## - job-template: - name: 'iec-{deploy-type}-daily-{stream}' + name: 'iec-{deploy_type}-daily-{stream}' disabled: '{obj:disabled}' concurrent: false node: '{slave-label}' @@ -69,7 +100,7 @@ - build-blocker: use-build-blocker: true blocking-jobs: - - '.*-{deploy-type}-daily-.*' + - '.*-{deploy_type}-daily-.*' blocking-level: 'NODE' wrappers: @@ -77,7 +108,7 @@ name: '$BUILD_NUMBER - Scenario: $DEPLOY_SCENARIO' triggers: - - 'iec-{deploy-type}-daily-{stream}-trigger' + - 'iec-{deploy_type}-daily-{stream}-trigger' parameters: - lf-infra-parameters: @@ -87,20 +118,28 @@ - '{project}-defaults' - string: name: DEPLOY_SCENARIO - default: 'k8-calico-iec-noha' + default: '{scenario}' builders: - trigger-builds: - - project: 'iec-deploy-{deploy-type}-daily-{stream}' + - project: 'iec-deploy-{deploy_type}-daily-{stream}' current-parameters: false - predefined-parameters: | + predefined-parameters: DEPLOY_SCENARIO={scenario} - INSTALLER_VERSION={stream} + same-node: true + block: true + - project: + !j2: | + {%- for uc in usecase -%} + iec-install-{{ uc | first }}-{{ deploy_type }}-daily-{{ stream }} + {%- if not loop.last -%},{%- endif -%} + {%- endfor %} + current-parameters: false same-node: true block: true - job-template: - name: 'iec-deploy-{deploy-type}-daily-{stream}' + name: 'iec-deploy-{deploy_type}-daily-{stream}' concurrent: true node: '{slave-label}' properties: @@ -112,7 +151,7 @@ - build-blocker: use-build-blocker: true blocking-jobs: - - '.*-deploy-{deploy-type}-daily-*' + - '.*-deploy-{deploy_type}-daily-*' blocking-level: 'NODE' parameters: @@ -123,13 +162,13 @@ - '{project}-defaults' - string: name: DEPLOY_SCENARIO - default: 'k8-calico-iec-noha' + default: '{scenario}' wrappers: - build-name: name: '$BUILD_NUMBER - Scenario: $DEPLOY_SCENARIO' - scm: + scm: &scm - git: credentials-id: '{jenkins-ssh-credential}' url: '{git-url}/{project}.git' @@ -144,13 +183,72 @@ timeout: '{submodule-timeout}' choosing-strategy: default + builders: + - description-setter: + description: "POD: $NODE_NAME" + - conditional-step: + condition-kind: regex-match + regex: 'compass-.*' + label: '{deploy_type}' + steps: + - shell: + !include-raw-escape: ./iec-compass-build.sh + - shell: + !include-raw-escape: ./iec-compass-deploy.sh + - shell: + !include-raw-escape: ./iec-compass-destroy.sh + - conditional-step: + condition-kind: regex-match + regex: 'fuel-.*' + label: '{deploy_type}' + steps: + - shell: + !include-raw-escape: ./iec-fuel-deploy.sh + + publishers: + - email: + recipients: armband@enea.com + - lf-infra-publish + +- job-template: + name: 'iec-install-{usecase}-{deploy_type}-daily-{stream}' + concurrent: true + node: '{slave-label}' + properties: + - throttle: + enabled: true + max-total: 4 + max-per-node: 1 + option: 'project' + - build-blocker: + use-build-blocker: true + blocking-jobs: + - '.*-deploy-{deploy_type}-daily-*' + - '.*-install-{usecase}-{deploy_type}-daily-*' + blocking-level: 'NODE' + + parameters: + - lf-infra-parameters: + project: '{project}' + stream: '{stream}' + branch: '{branch}' + - '{project}-defaults' + - '{usecase}-defaults' + + wrappers: + - build-name: + name: '$BUILD_NUMBER - Usecase: ${usecase} DeployType: ${deploy_type}' + + scm: *scm + builders: - shell: - !include-raw-escape: ./iec-fuel-deploy.sh + !include-raw-escape: ./iec-{usecase}.sh publishers: - email: recipients: armband@enea.com + - lf-infra-publish ######################## # trigger macros @@ -167,3 +265,7 @@ name: 'iec-fuel-baremetal-daily-master-trigger' triggers: - timed: '' +- trigger: + name: 'iec-compass-virtual-daily-master-trigger' + triggers: + - timed: '0 13 * * *'