X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fcperf%2Fcirros-upload.yaml.ansible;h=855bb1f3d2e1037f1ebce9db8f6973c04cd0589e;hb=f0ffd74b84d1d0e4ff1a7c4962db5e077212b47c;hp=bd7d789746e296467e95d11c999636af264de039;hpb=3a641fcd1e3e844f134245d212886a062c79ff77;p=releng.git diff --git a/jjb/cperf/cirros-upload.yaml.ansible b/jjb/cperf/cirros-upload.yaml.ansible index bd7d78974..855bb1f3d 100644 --- a/jjb/cperf/cirros-upload.yaml.ansible +++ b/jjb/cperf/cirros-upload.yaml.ansible @@ -20,3 +20,20 @@ shell: > source /home/heat-admin/overcloudrc && openstack flavor create --id 42 --ram 64 --disk 0 --vcpus 1 m1.nano + - name: Open CSIT TCP port for netcat + iptables: + chain: INPUT + action: insert + protocol: tcp + destination_port: 12345 + jump: ACCEPT + become: yes + - name: Open CSIT UDP port for netcat + iptables: + chain: INPUT + action: insert + protocol: udp + destination_port: 12345 + jump: ACCEPT + become: yes +