~ajkavanagh/+junk/useful-things

« back to all changes in this revision

Viewing changes to charm-manual-testing/manila/v2_keystone/sec_groups.sh

  • Committer: Alex Kavanagh
  • Date: 2016-12-01 17:01:49 UTC
  • Revision ID: alex.kavanagh@canonical.com-20161201170149-ytewr1hw7z2xre8o
Added serverstack.yaml for juju & manila testing scripts

Note that the manila testing scripts are for serverstack ONLY.
There's a different github repo for manual testing of
manila.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
# Set n-g mtu; add sec groups for basic access
 
3
 
 
4
#juju set neutron-gateway instance-mtu=1300
 
5
for port in 22 80 443 3128; do
 
6
        nova secgroup-add-rule default tcp $port $port 0.0.0.0/0
 
7
        nova secgroup-add-rule default tcp $port $port ::/0
 
8
done
 
9
nova secgroup-add-rule default icmp -1 -1 0.0.0.0/0
 
10
nova secgroup-add-rule default icmp -1 -1 ::/0
 
11
nova secgroup-add-rule default udp 53 53 0.0.0.0/0
 
12
nova secgroup-add-rule default udp 53 53 ::/0
 
13