Skip to content
Open
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
e9c946b
-Updated init to call repo
trozet Jan 21, 2015
fdbbb84
forgot to include init.pp
trozet Jan 21, 2015
c046cea
Added support for controller_networker consolidation and opendaylight.
trozet Feb 5, 2015
9827095
Added minor check to see if osfamily is redhat before trying to yum i…
trozet Feb 11, 2015
a326274
Fix for disabling selinux as well as minor change to staging.
trozet Feb 23, 2015
b69d627
Fixes issue with trying to provision a host inside of a firewall by c…
trozet Feb 23, 2015
63502fb
Adds tempest puppet module for a tempest host.
trozet Mar 9, 2015
f4d0cf0
Fixes duplicate this_agent and ml2_mechanism_drivers params.
trozet Mar 16, 2015
5b9af18
Added ceph repos to repolist
trozet Mar 30, 2015
526a429
Adds HA support for control node
trozet Mar 30, 2015
9c9ac7d
Adds HA and Ceph support for compute
trozet Mar 31, 2015
016fdfd
Removes opendaylight install and adds fixes
trozet Mar 31, 2015
2e78e55
Installs opendaylight via opendaylight puppet module
trozet Mar 31, 2015
c73bbf4
Changes keystone, sql, neutron_metadata to default to single_password
trozet Mar 31, 2015
d32a2a3
Fixes ha_flag to check to see if it is true instead of just exists
trozet Mar 31, 2015
1552f3f
Changes admin_password to default to single_password instead of being a
trozet Mar 31, 2015
111c02a
Fixes admin_password to be a default and checks for controller array to
trozet Mar 31, 2015
a6fde2d
Fixes various ordering issues and array usage problems
trozet Mar 31, 2015
58b3c90
Fixes array parsing issue with global parameter
trozet Apr 1, 2015
5899a53
Syntax change to make if statment more clear
trozet Apr 1, 2015
a05a34c
Fixes incorrect amqp variable usage
trozet Apr 1, 2015
1872037
Adds ceph_deploy class for deploying ceph mon+osd
trozet Apr 6, 2015
a347280
Adds ceph
trozet Apr 6, 2015
20343fd
Fixed variable references in parameters
trozet Apr 8, 2015
a0ebcf7
Fixes permissions so that OpenStack can contact the cluster + adds pool
trozet Apr 8, 2015
9a9c62d
Fixes osd_journal variable bug
trozet Apr 8, 2015
5941417
Ceph is actually included in EPEL for CentOS 7 and these repos are
trozet Apr 8, 2015
58a4aee
Adds python-rados which now replaces python ceph + includes NTP
trozet Apr 8, 2015
6e5d2f9
Changes HA to not use interface parameters
trozet Apr 16, 2015
16a02f9
Fixes missing glance_user_password
trozet Apr 29, 2015
271285d
Adds Heat to the HA deployment
trozet May 1, 2015
5c107c5
Adds external network setup functionality
trozet May 1, 2015
ec954a7
Adds working external network support
trozet May 20, 2015
40e3d4f
Moves external network presetup from init to controller_networker
trozet May 20, 2015
b67fcba
Compute nodes networking is stopping. I think this is because
trozet May 21, 2015
06fa22c
Fixes syntax error
trozet May 21, 2015
b2b6064
Modifies default values for quota with neutron
trozet May 22, 2015
f3067fe
Fixes missing neutron_metadata_proxy_secret variable
trozet Jun 2, 2015
05278b8
Adds provider router needed for rally tests to run correctly.
trozet Jun 2, 2015
edd8c48
Fixes external router "provider_router" so that it's external interface
trozet Jun 5, 2015
d36cf99
Simplifies the non-HA deployment for parameters
trozet Jun 9, 2015
a33ca8a
Simplifies parameters for compute.pp
trozet Jun 9, 2015
6a5d471
Fixes check for ha_flag being true as a boolean
trozet Jun 9, 2015
9cdc1ce
Fixes non-ha odl_control_ip var on compute, and adds keystonerc to no…
trozet Jun 11, 2015
3f7a754
Fixes variables to point to controller (controller_ip)
trozet Jun 12, 2015
b4bccac
Fixes nova_host to point to public ip of nova (for vncproxy access)
trozet Jun 17, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes permissions so that OpenStack can contact the cluster + adds pool
creation for volumes/images
  • Loading branch information
trozet committed Apr 8, 2015
commit a0ebcf715e8747de78d94f3a5db017786b6d46d2
12 changes: 11 additions & 1 deletion manifests/ceph_deploy.pp
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,22 @@
cap_mon => 'allow *',
cap_osd => 'allow *',
cap_mds => 'allow',
mode => '0644',
}
ceph::key { 'client.images':
secret => $images_key,
cap_mon => 'allow r',
cap_osd => 'allow class-read object_prefix rbd_children, allow rwx pool=images',
inject => true,
mode => '0644',
}

ceph::key { 'client.volumes':
secret => $volumes_key,
cap_mon => 'allow r',
cap_osd => 'allow class-read object_prefix rbd_children, allow rwx pool=volumes',
inject => true,
mode => '0644',
}
ceph::key { 'client.bootstrap-osd':
secret => $boostrap_key,
Expand All @@ -68,5 +71,12 @@
}
->
ceph::osd { '/osd0': }

->
exec { 'create volumes pool':
command => "/usr/bin/ceph osd pool create volumes $osd_pool_default_pg_num",
}
->
exec { 'create images pool':
command => "/usr/bin/ceph osd pool create images $osd_pool_default_pg_num",
}
}