aboutsummaryrefslogtreecommitdiffstats
path: root/samples/fio_volume.yaml
blob: edb3837e99311e2879c51b56c0aee8be92594e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
##############################################################################
# Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---
# Sample benchmark task config file
# measure storage performance using fio
#
# For this sample just like running the command below on the test vm and
# getting benchmark info back to the yardstick.
#
# sudo fio -filename=/home/ubuntu/data.raw -bs=4k -ipdepth=1 -rw=rw \
#          -ramp_time=10 -runtime=60 -name=yardstick-fio -ioengine=libaio \
#          -direct=1 -group_reporting -numjobs=1 -time_based \
#          --output-format=json

schema: "yardstick:task:0.1"

{% set rw = rw or "randrw" %}
{% set bs = bs or "8k" %}
{% set size = size or "100g" %}
{% set rwmixwrite = rwmixwrite or "50" %}
{% set numjobs = numjobs or "1" %}
{% set direct = direct or "1" %}

scenarios:
-
  type: Fio
  options:
    filename: /dev/vdb
    bs: {{bs}}
    rw: {{rw}}
    size: {{size}}
    rwmixwrite: {{rwmixwrite}}
    numjobs: {{numjobs}}
    direct: {{direct}}
    ramp_time: 10

  host: fio.fio_volume

  runner:
    type: Duration
    duration: 60
    interval: 1

  sla:
    read_bw: 6000
    read_iops: 1500
    read_lat: 500.1
    write_bw: 6000
    write_iops: 1500
    write_lat: 500.1
    action: monitor

context:
  name: fio_volume
  image: yardstick-image
  flavor: yardstick-flavor
  user: ubuntu
  servers:
    fio:
      volume:
        name: fio-volume
        size: 200
      volume_mountpoint: "/dev/vdb"
      floating_ip: true
  networks:
    test:
      cidr: "10.0.1.0/24"
      port_security_enabled: true
' href='#n589'>589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
---
- project:
    name: 'apex'
    project: 'apex'
    jobs:
      - 'apex-fetch-logs-{stream}'
      - 'apex-runner-cperf-{stream}'
      - 'apex-virtual-{stream}'
      - 'apex-deploy-{platform}-{stream}'
      - 'apex-daily-{stream}'
      - 'apex-{snap_type}-promote-daily-{stream}-os-{os_version}-{topology}'
      - 'apex-fdio-promote-daily-{stream}'
      - 'apex-{scenario}-baremetal-{scenario_stream}'
      - 'apex-testsuite-{scenario}-baremetal-{scenario_stream}'
      - 'apex-upload-snapshot'
      - 'apex-create-snapshot'
      - 'apex-fetch-snap-info'
      - 'apex-flex-daily-os-nosdn-nofeature-ha-{stream}'
      - 'apex-dovetail-daily-os-nosdn-nofeature-ha-baremetal-danube'
    # stream:    branch with - in place of / (eg. stable-arno)
    # branch:    branch (eg. stable/arno)
    stream:
      - master: &master
          branch: 'master'
          gs-pathname: ''
          build-slave: 'apex-build-master'
          virtual-slave: 'apex-virtual-master'
          baremetal-slave: 'apex-baremetal-master'
          verify-scenario: 'os-nosdn-nofeature-noha'
          scenario_stream: 'master'
          disable_daily: false
          disable_promote: false
      - gambia: &gambia
          branch: 'stable/gambia'
          gs-pathname: '/gambia'
          build-slave: 'apex-build-master'
          virtual-slave: 'apex-virtual-master'
          baremetal-slave: 'apex-baremetal-master'
          verify-scenario: 'os-nosdn-nofeature-ha'
          scenario_stream: 'gambia'
          disable_daily: false
          disable_promote: false
      - fraser: &fraser
          branch: 'stable/fraser'
          gs-pathname: '/fraser'
          build-slave: 'apex-build-master'
          virtual-slave: 'apex-virtual-master'
          baremetal-slave: 'apex-baremetal-master'
          verify-scenario: 'os-nosdn-nofeature-ha'
          scenario_stream: 'fraser'
          disable_daily: false
          disable_promote: true
      - euphrates: &euphrates
          branch: 'stable/euphrates'
          gs-pathname: '/euphrates'
          build-slave: 'apex-build-master'
          virtual-slave: 'apex-virtual-master'
          baremetal-slave: 'apex-baremetal-master'
          verify-scenario: 'os-odl-nofeature-ha'
          scenario_stream: 'euphrates'
          disable_daily: true
          disable_promote: true
      - danube: &danube
          branch: 'stable/danube'
          gs-pathname: '/danube'
          build-slave: 'apex-build-danube'
          virtual-slave: 'apex-virtual-danube'
          baremetal-slave: 'apex-baremetal-danube'
          verify-scenario: 'os-odl_l3-nofeature-ha'
          scenario_stream: 'danube'
          disabled: true
          disable_daily: true
          disable_promote: true

    scenario:
      {%- for stream in scenarios %}
      {%- for scenario in scenarios[stream] %}
      - '{{scenario}}':
          <<: *{{stream}}
      {%- endfor %}
      {%- endfor %}

    platform:
      - 'baremetal'
      - 'virtual'

    os_version:
      - 'queens':
          os_scenario: 'nofeature'
          odl_branch: 'stable/oxygen'
      - 'rocky':
          os_scenario: 'rocky'
          odl_branch: 'stable/oxygen'
      - 'master':
          os_scenario: 'nofeature'
          odl_branch: 'stable/fluorine'

    topology:
      - 'noha'
      - 'ha'
      - 'noha-allinone'

    snap_type:
      - csit:
          sdn: 'odl'
      - functest:
          sdn: 'nosdn'
# Fetch Logs Job
- job-template:
    name: 'apex-fetch-logs-{stream}'

    concurrent: true

    disabled: false
    scm:
      - git-scm-gerrit
    parameters:
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
    # yamllint enable rule:line-length
    properties:
      - logrotate-default
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - 'apex-fetch-logs'

- job-template:
    name: 'apex-runner-cperf-{stream}'

    # runner cperf job
    project-type: 'multijob'
    node: 'intel-pod2'

    disabled: false

    parameters:
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - string:
          name: GIT_BASE
          default: https://gerrit.opnfv.org/gerrit/$PROJECT
          description: "Used for overriding the GIT URL coming from parameters macro."

    scm:
      - git-scm

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: false
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-deploy.*'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Deployed on $NODE_NAME"
      - multijob:
          name: 'Baremetal Deploy'
          condition: ALWAYS
          projects:
            - name: 'apex-deploy-baremetal-{stream}'
              node-parameters: false
              current-parameters: true
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                OPNFV_CLEAN=yes
                DEPLOY_SCENARIO={verify-scenario}
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: CPERF
          condition: SUCCESSFUL
          projects:
            - name: 'cperf-apex-intel-pod2-daily-master'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO={verify-scenario}
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false

# Deploy job
- job-template:
    name: 'apex-deploy-{platform}-{stream}'

    concurrent: true

    disabled: false
    quiet-period: 30
    scm:
      - git-scm-gerrit

    wrappers:
      - timeout:
          timeout: 140
          fail: true

    parameters:
      - '{project}-{platform}-{stream}-defaults'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: DEPLOY_SCENARIO
          default: '{verify-scenario}'
          description: "Scenario to deploy with."
      # yamllint disable rule:line-length
      - string:
          name: OPNFV_CLEAN
          default: 'no'
          description: "Use yes in lower case to invoke clean. Indicates if the deploy environment should be cleaned before deployment"

    # yamllint enable rule:line-length
    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-deploy.*'
            - 'functest.*'
            - 'yardstick.*'
            - 'dovetail.*'
            - 'storperf.*'
            - 'odl-netvirt.*'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Deployed on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - 'apex-download-artifact'
      - 'apex-deploy'
      - 'clean-workspace'


# Virtual Deploy and Test
- job-template:
    name: 'apex-virtual-{stream}'

    project-type: 'multijob'

    concurrent: true

    disabled: false

    scm:
      - git-scm-gerrit

    parameters:
      - '{project}-defaults'
      - '{project}-virtual-{stream}-defaults'
      - 'functest-suite-parameter'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: DEPLOY_SCENARIO
          default: '{verify-scenario}'
          description: "Scenario to deploy with."
      - string:
          name: ARTIFACT_VERSION
          default: dev
          description: "Used for overriding the ARTIFACT_VERSION"

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-runner.*'
            - 'apex-run.*'
            - 'apex-virtual-.*'
            - 'apex-verify-gate-.*'
            - 'odl-netvirt.*'
            - 'apex-.*-promote.*'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Deployed on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - multijob:
          name: deploy-virtual
          condition: SUCCESSFUL
          projects:
            - name: 'apex-deploy-virtual-{stream}'
              current-parameters: false
              predefined-parameters: |
                ARTIFACT_VERSION=$ARTIFACT_VERSION
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
                PROMOTE=$PROMOTE
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: true
      - multijob:
          name: functest-smoke
          condition: ALWAYS
          projects:
            - name: 'functest-apex-virtual-suite-{stream}'
              current-parameters: false
              predefined-parameters: |
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
                FUNCTEST_MODE=$FUNCTEST_MODE
                FUNCTEST_SUITE_NAME=$FUNCTEST_SUITE_NAME
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
      - multijob:
          name: apex-fetch-logs
          projects:
            - name: 'apex-fetch-logs-{stream}'
              current-parameters: false
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false

# Baremetal Deploy and Test
- job-template:
    name: 'apex-{scenario}-baremetal-{scenario_stream}'

    project-type: 'multijob'

    disabled: false

    scm:
      - git-scm

    parameters:
      - '{project}-defaults'
      - '{project}-baremetal-{scenario_stream}-defaults'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: DEPLOY_SCENARIO
          default: '{scenario}'
          description: "Scenario to deploy with."

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-runner.*'
            - 'apex-.*-promote.*'
            - 'apex-run.*'
            - 'apex-.+-baremetal-.+'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Deployed on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - multijob:
          name: 'Baremetal Deploy'
          condition: SUCCESSFUL
          execution-type: SEQUENTIALLY
          projects:
            - name: 'apex-deploy-baremetal-{scenario_stream}'
              node-parameters: true
              current-parameters: true
              predefined-parameters: |
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
            - name: 'apex-fetch-logs-{scenario_stream}'
              current-parameters: true
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
      - shell:
          !include-raw-escape: ./apex-functest-scenario.sh
      - inject:
          properties-file: functest_scenario
          override-build-parameters: true
      - multijob:
          name: 'OPNFV Test Suite'
          condition: ALWAYS
          projects:
            - name: 'apex-testsuite-{scenario}-baremetal-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters: |
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
                DOCKER_TAG=$DOCKER_TAG
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
      - multijob:
          name: apex-fetch-logs
          projects:
            - name: 'apex-fetch-logs-{scenario_stream}'
              current-parameters: true
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
    publishers:
      - groovy-postbuild:
          script:
            !include-raw-escape: ./update-build-result.groovy

# Baremetal test job
- job-template:
    name: 'apex-testsuite-{scenario}-baremetal-{scenario_stream}'

    project-type: 'multijob'

    disabled: false

    parameters:
      - '{project}-defaults'
      - '{project}-baremetal-{scenario_stream}-defaults'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: DEPLOY_SCENARIO
          default: '{scenario}'
          description: "Scenario to deploy with."
      - string:
          name: DOCKER_TAG
          default: ''
          description: Default docker tag to pass to functest

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-runner.*'
            - 'apex-run.*'
            - 'apex-testsuite-.+-baremetal-.+'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Testing on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - multijob:
          name: Functest
          condition: ALWAYS
          projects:
            - name: 'functest-apex-baremetal-daily-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters: |
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
                DOCKER_TAG=$DOCKER_TAG
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false
      - multijob:
          name: Yardstick
          condition: ALWAYS
          projects:
            - name: 'yardstick-apex-baremetal-daily-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false
      - multijob:
          name: Dovetail-proposed_tests
          condition: ALWAYS
          projects:
            - name: 'dovetail-apex-baremetal-default-mandatory-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              enable-condition: "def m = '$DEPLOY_SCENARIO' ==~ /os-(nosdn-nofeature|odl-bgpvpn)-ha/"
              abort-all-job: false
              git-revision: false
      - multijob:
          name: Dovetail-default
          condition: ALWAYS
          projects:
            - name: 'dovetail-apex-baremetal-default-optional-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              enable-condition: "def m = '$DEPLOY_SCENARIO' ==~ /os-(nosdn-nofeature|odl-bgpvpn)-ha/"
              abort-all-job: false
              git-revision: false
      - multijob:
          name: StorPerf
          condition: ALWAYS
          projects:
            - name: 'storperf-apex-baremetal-daily-{scenario_stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              enable-condition: "def m = '$DEPLOY_SCENARIO' ==~ /os-nosdn-nofeature-ha/"
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false
# Build status is always success due conditional plugin prefetching
# build status before multijob phases execute
#        - conditional-step:
#            condition-kind: current-status
#            condition-worst: SUCCESS
#            condtion-best: SUCCESS
#            on-evaluation-failure: mark-unstable
#            steps:
#                - shell: 'echo "Tests Passed"'

- job-template:
    name: 'apex-daily-{stream}'

    # Job template for daily build
    #
    # Required Variables:
    #     stream:    branch with - in place of / (eg. stable)
    #     branch:    branch (eg. stable)
    project-type: 'multijob'

    disabled: '{obj:disable_daily}'

    scm:
      - git-scm

    parameters:
      - '{project}-defaults'
      - '{project}-baremetal-{stream}-defaults'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-daily.*'

    triggers:
      - 'apex-{stream}'

    builders:
      - multijob:
          name: build
          condition: SUCCESSFUL
          projects:
            - name: 'apex-build-{stream}'
              current-parameters: false
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: true
      - multijob:
          name: 'Verify and upload ISO'
          condition: SUCCESSFUL
          projects:
            - name: 'apex-verify-iso-{stream}'
              current-parameters: false
              predefined-parameters: |
                BUILD_DIRECTORY=$WORKSPACE/../apex-build-{stream}/.build
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: true
      - apex-builder-{stream}

# snapshot info fetch
- job-template:
    name: 'apex-fetch-snap-info'

    disabled: false

    parameters:
      - '{project}-defaults'

    builders:
      - shell:
          !include-raw-escape: ./apex-fetch-snap-info.sh

# snapshot create
- job-template:
    name: 'apex-create-snapshot'

    disabled: false

    parameters:
      - '{project}-defaults'

    builders:
      - shell:
          !include-raw-escape: ./apex-snapshot-create.sh

# snapshot upload
- job-template:
    name: 'apex-upload-snapshot'

    disabled: false

    parameters:
      - '{project}-defaults'

    builders:
      - inject:
          properties-content: ARTIFACT_TYPE=snapshot
      - 'apex-upload-artifact'

# CSIT promote
- job-template:
    name: 'apex-{snap_type}-promote-daily-{stream}-os-{os_version}-{topology}'

    # Job template for promoting CSIT Snapshots
    #
    # Required Variables:
    #     stream:    branch with - in place of / (eg. stable)
    #     branch:    branch (eg. stable)
    node: '{virtual-slave}'
    project-type: 'multijob'
    disabled: '{disable_promote}'

    scm:
      - git-scm

    parameters:
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: ARTIFACT_VERSION
          default: dev
          description: "Used for overriding the ARTIFACT_VERSION"
      - string:
          name: PROMOTE
          default: 'True'
          description: "Used for overriding the PROMOTE"
      - string:
          name: GS_URL
          default: 'artifacts.opnfv.org/apex/{os_version}/{topology}'
          description: "User for overriding GS_URL from apex params"
      - string:
          name: OS_VERSION
          default: '{os_version}'
          description: OpenStack version short name
      - string:
          name: ODL_BRANCH
          default: '{odl_branch}'
          description: ODL branch being used
      - string:
          name: FORCE_PROMOTE
          default: 'False'
          description: "Used to force promotion and skip CSIT"
      - string:
          name: SNAP_TYPE
          default: '{snap_type}'
          description: Type of snapshot to promote
    properties:
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-runner.*'
            - 'apex-daily.*'
            - 'apex-.*-promote.*'
            - 'odl-netvirt.*'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    triggers:
      - '{stream}-{snap_type}-{os_version}'

    builders:
      - multijob:
          name: apex-virtual-deploy
          condition: SUCCESSFUL
          projects:
            - name: 'apex-deploy-virtual-{stream}'
              current-parameters: true
              predefined-parameters: |
                DEPLOY_SCENARIO=os-{sdn}-{os_scenario}-{topology}-{snap_type}
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: true
      - multijob:
          name: fetch snapshot info
          condition: SUCCESSFUL
          projects:
            - name: 'apex-fetch-snap-info'
              current-parameters: true
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: test phase
          condition: SUCCESSFUL
          execution-type: SEQUENTIALLY
          projects:
            - name: cperf-apex-csit-master
              predefined-parameters: |
                ODL_BRANCH=$ODL_BRANCH
                RC_FILE_PATH=/tmp/snap/overcloudrc
                NODE_FILE_PATH=/tmp/snap/node.yaml
                SSH_KEY_PATH=/tmp/snap/id_rsa
                ODL_CONTAINERIZED=true
                OS_VERSION=$OS_VERSION
                SKIP_CSIT=$FORCE_PROMOTE
                SNAP_TYPE=$SNAP_TYPE
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: false
              enable-condition: "def m = '$SNAP_TYPE' ==~ /csit/"
            - name: cperf-upload-logs-csit
              predefined-parameters: |
                ODL_BRANCH=$ODL_BRANCH
                OS_VERSION=$OS_VERSION
                SNAP_TYPE=$SNAP_TYPE
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: false
              enable-condition: "def m = '$SNAP_TYPE' ==~ /csit/"
            - name: 'functest-apex-virtual-suite-{stream}'
              current-parameters: false
              predefined-parameters: |
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
                DOCKER_TAG=$DOCKER_TAG
                FUNCTEST_SUITE_NAME=tempest_smoke
                FUNCTEST_MODE=testcase
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: NEVER
              enable-condition: "def m = '$SNAP_TYPE' ==~ /functest/"
              abort-all-job: true
              git-revision: false
            - name: 'apex-fetch-logs-{stream}'
              current-parameters: false
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: true
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
      - multijob:
          name: create snapshot
          condition: SUCCESSFUL
          projects:
            - name: 'apex-create-snapshot'
              current-parameters: true
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: upload snapshot
          condition: SUCCESSFUL
          projects:
            - name: 'apex-upload-snapshot'
              current-parameters: true
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false

# FDIO promote
- job-template:
    name: 'apex-fdio-promote-daily-{stream}'

    # Job template for promoting CSIT Snapshots
    #
    # Required Variables:
    #     stream:    branch with - in place of / (eg. stable)
    #     branch:    branch (eg. stable)
    node: '{virtual-slave}'
    project-type: 'multijob'
    disabled: false

    scm:
      - git-scm

    parameters:
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'

    properties:
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-deploy.*'
            - 'apex-runner.*'
            - 'apex-daily.*'

    builders:
      - multijob:
          name: build
          condition: SUCCESSFUL
          projects:
            - name: 'apex-build-{stream}'
              current-parameters: false
              predefined-parameters: |
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
              node-parameters: false
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: true
      - multijob:
          name: deploy-virtual
          condition: SUCCESSFUL
          projects:
            - name: 'apex-deploy-virtual-{stream}'
              current-parameters: false
              predefined-parameters: |
                DEPLOY_SCENARIO=os-odl_netvirt-fdio-noha
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=$GERRIT_REFSPEC
                GERRIT_CHANGE_NUMBER=$GERRIT_CHANGE_NUMBER
                GERRIT_CHANGE_COMMIT_MESSAGE=$GERRIT_CHANGE_COMMIT_MESSAGE
                PROMOTE=True
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: create snapshot
          condition: SUCCESSFUL
          projects:
            - name: 'apex-create-snapshot'
              current-parameters: false
              predefined-parameters: |
                SNAP_TYPE=fdio
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: upload snapshot
          condition: SUCCESSFUL
          projects:
            - name: 'apex-upload-snapshot'
              current-parameters: false
              predefined-parameters: |
                SNAP_TYPE=fdio
              node-parameters: true
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false

# Flex job
- job-template:
    name: 'apex-flex-daily-os-nosdn-nofeature-ha-{stream}'

    project-type: 'multijob'

    disabled: true

    node: 'flex-pod2'

    scm:
      - git-scm

    triggers:
      - 'apex-{stream}'

    parameters:
      - '{project}-defaults'
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - apex-parameter:
          gs-pathname: '{gs-pathname}'
      - string:
          name: DEPLOY_SCENARIO
          default: 'os-nosdn-nofeature-ha'
          description: "Scenario to deploy with."
      - string:
          name: GIT_BASE
          default: https://gerrit.opnfv.org/gerrit/$PROJECT
          description: 'Git URL to use on this Jenkins Slave'
      - string:
          name: SSH_KEY
          default: /root/.ssh/id_rsa
          description: 'SSH key to use for Apex'

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-runner.*'
            - 'apex-.*-promote.*'
            - 'apex-run.*'
            - 'apex-.+-baremetal-.+'
      - throttle:
          max-per-node: 1
          max-total: 10
          option: 'project'

    builders:
      - description-setter:
          description: "Deployed on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - multijob:
          name: 'Baremetal Deploy'
          condition: SUCCESSFUL
          projects:
            - name: 'apex-deploy-baremetal-{stream}'
              node-parameters: true
              current-parameters: true
              predefined-parameters: |
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: Yardstick
          condition: ALWAYS
          projects:
            - name: 'yardstick-apex-baremetal-daily-{stream}'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false

# Dovetail Danube test job
- job-template:
    name: 'apex-dovetail-daily-os-nosdn-nofeature-ha-baremetal-danube'

    project-type: 'multijob'

    node: 'huawei-pod4'

    disabled: false

    parameters:
      - '{project}-defaults'
      - project-parameter:
          project: '{project}'
          branch: 'stable/danube'
      - apex-parameter:
          gs-pathname: '/danube'
      - string:
          name: DEPLOY_SCENARIO
          default: 'os-nosdn-nofeature-ha'
          description: "Scenario to deploy with."

    properties:
      - logrotate-default
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - 'apex-verify.*'
            - 'apex-runner.*'
            - 'apex-.*-promote.*'
            - 'apex-run.*'

    triggers:
      - timed: ''  # '0 1 * * *'

    builders:
      - description-setter:
          description: "Testing on $NODE_NAME - Scenario: $DEPLOY_SCENARIO"
      - multijob:
          name: 'Baremetal Deploy'
          condition: SUCCESSFUL
          projects:
            - name: 'apex-deploy-baremetal-danube'
              node-parameters: true
              current-parameters: true
              predefined-parameters: |
                OPNFV_CLEAN=yes
                GERRIT_BRANCH=$GERRIT_BRANCH
                GERRIT_REFSPEC=
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: FAILURE
              abort-all-job: true
              git-revision: false
      - multijob:
          name: Dovetail
          condition: ALWAYS
          projects:
            - name: 'dovetail-apex-baremetal-proposed_tests-danube'
              node-parameters: true
              current-parameters: false
              predefined-parameters:
                DEPLOY_SCENARIO=$DEPLOY_SCENARIO
              kill-phase-on: NEVER
              abort-all-job: false
              git-revision: false

########################
# parameter macros
########################
- parameter:
    name: apex-parameter
    parameters:
      - string:
          name: ARTIFACT_NAME
          default: 'latest'
          description: "RPM Artifact name that will be appended to GS_URL to deploy a specific artifact"
      - string:
          name: ARTIFACT_VERSION
          default: 'daily'
          description: "Artifact version type"
      - string:
          name: BUILD_DIRECTORY
          default: $WORKSPACE/.build
          description: "Directory where the build artifact will be located upon the completion of the build."
      - string:
          name: CACHE_DIRECTORY
          default: $HOME/opnfv/apex-cache{gs-pathname}
          description: "Directory where the cache to be used during the build is located."
      # yamllint disable rule:line-length
      - string:
          name: GIT_BASE
          default: https://gerrit.opnfv.org/gerrit/$PROJECT
          description: "Used for overriding the GIT URL coming from Global Jenkins configuration in case if the stuff is done on none-LF HW."
      # yamllint enable rule:line-length
      - string:
          name: GS_PATHNAME
          default: '{gs-pathname}'
          description: "Version directory where opnfv artifacts are stored in gs repository"
      - string:
          name: GS_URL
          default: $GS_BASE{gs-pathname}
          description: "URL to Google Storage."
      - string:
          name: PROMOTE
          default: 'False'
          description: "Flag to know if we should promote/upload snapshot artifacts."

########################
# builder macros
########################
{% for stream in scenarios %}
# {{ stream }} Builder
- builder:
    name: apex-builder-{{ stream }}
    builders:
      - multijob:
          name: Baremetal Deploy and Test Phase
          condition: SUCCESSFUL
          projects:
{%- for scenario in scenarios[stream] %}
            - name: 'apex-{{ scenario }}-baremetal-{{ stream }}'
              node-parameters: false
              current-parameters: false
              predefined-parameters: |
                OPNFV_CLEAN=yes
              kill-phase-on: NEVER
              abort-all-job: true
              git-revision: false
{%- endfor %}
{% endfor -%}

- builder:
    name: 'apex-upload-artifact'
    builders:
      - shell:
          !include-raw: ./apex-upload-artifact.sh

- builder:
    name: 'apex-download-artifact'
    builders:
      - shell:
          !include-raw: ./apex-download-artifact.sh

- builder:
    name: 'apex-deploy'
    builders:
      - shell:
          !include-raw: ./apex-deploy.sh

- builder:
    name: 'apex-fetch-logs'
    builders:
      - shell:
          !include-raw: ./apex-fetch-logs.sh

#######################
# trigger macros
# timed is in format: 'min hour daymonth month dayweek'
########################
- trigger:
    name: 'apex-master'
    triggers:
      - timed: '0 0 1-31/2 * *'

- trigger:
    name: 'apex-gambia'
    triggers:
      - timed: '0 4 2-30/2 * *'

- trigger:
    name: 'apex-fraser'
    triggers:
      - timed: '0 0 2-30/2 * *'

- trigger:
    name: 'apex-euphrates'
    triggers:
      - timed: '0 0 2-30/2 * *'

- trigger:
    name: 'apex-danube'
    triggers:
      - timed: '0 3 1 1 7'

- trigger:
    name: 'master-csit-master'
    triggers:
      - timed: '0 5 * * *'

- trigger:
    name: 'master-csit-rocky'
    triggers:
      - timed: '0 5 * * *'

- trigger:
    name: 'master-csit-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-csit-master'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-csit-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-csit-queens'
    triggers:
      - timed: '0 5 * * *'

- trigger:
    name: 'fraser-csit-master'
    triggers:
      - timed: ''

- trigger:
    name: 'fraser-csit-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'fraser-csit-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-csit-master'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-csit-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-csit-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-csit-master'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-csit-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-csit-queens'
    triggers:
      - timed: ''
- trigger:
    name: 'master-functest-master'
    triggers:
      - timed: '0 3 * * *'

- trigger:
    name: 'master-functest-rocky'
    triggers:
      - timed: '0 3 * * *'

- trigger:
    name: 'master-functest-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-functest-master'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-functest-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'gambia-functest-queens'
    triggers:
      - timed: '0 3 * * *'

- trigger:
    name: 'fraser-functest-master'
    triggers:
      - timed: ''

- trigger:
    name: 'fraser-functest-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'fraser-functest-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-functest-master'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-functest-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'euphrates-functest-queens'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-functest-master'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-functest-rocky'
    triggers:
      - timed: ''

- trigger:
    name: 'danube-functest-queens'
    triggers:
      - timed: ''