This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from rcbops/sprint
End of Sprint 16 Merge
- Loading branch information
Showing
46 changed files
with
66 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule apache2
updated
from 964df6 to 2620e9
Submodule apt
updated
from e1ba5f to 3ed5b8
Submodule aws
updated
from 052959 to a95305
Submodule build-essential
updated
from abfa17 to 2e9aad
Submodule cinder
updated
6 files
+4 −4 | attributes/default.rb | |
+1 −1 | metadata.rb | |
+12 −89 | recipes/cinder-api.rb | |
+7 −4 | recipes/cinder-scheduler.rb | |
+167 −0 | recipes/cinder-setup.rb | |
+7 −4 | recipes/cinder-volume.rb |
Submodule collectd
updated
3 files
+177 −0 | files/ubuntu/collectd-init | |
+1 −1 | metadata.rb | |
+7 −0 | recipes/default.rb |
Submodule database
updated
from 06b87a to 8aa7ec
Submodule erlang
updated
from b122d9 to 582905
Submodule horizon
updated
2 files
+1 −1 | metadata.rb | |
+0 −1 | templates/default/folsom/local_settings.py.erb |
Submodule keystone
updated
16 files
+217 −85 | README.md | |
+1 −1 | metadata.rb | |
+347 −0 | providers/endpoint.rb | |
+267 −5 | providers/register.rb | |
+184 −0 | providers/role.rb | |
+168 −0 | providers/service.rb | |
+142 −0 | providers/tenant.rb | |
+125 −0 | providers/user.rb | |
+118 −0 | recipes/keystone-api.rb | |
+21 −21 | recipes/server.rb | |
+42 −0 | resources/endpoint.rb | |
+2 −2 | resources/register.rb | |
+41 −0 | resources/role.rb | |
+36 −0 | resources/service.rb | |
+36 −0 | resources/tenant.rb | |
+38 −0 | resources/user.rb |
Submodule mysql
updated
from 5cc96c to dd6de5
Submodule nova
updated
10 files
+43 −0 | README.md | |
+33 −10 | attributes/default.rb | |
+1 −1 | metadata.rb | |
+12 −12 | recipes/api-ec2.rb | |
+10 −10 | recipes/api-os-compute.rb | |
+4 −4 | recipes/essex-final-volume.rb | |
+1 −0 | recipes/folsom-volume.rb | |
+17 −5 | recipes/nova-common.rb | |
+1 −1 | templates/default/essex-final/nova.conf.erb | |
+11 −2 | templates/default/folsom/nova.conf.erb |
Submodule ntp
updated
from 13acc5 to 288935
Submodule openssh
updated
from 4b4541 to a61b47
Submodule openssl
updated
from ec3952 to 7f5b84
Submodule osops-utils
updated
5 files
+61 −21 | README.md | |
+26 −2 | libraries/ip_location.rb | |
+1 −1 | metadata.rb | |
+15 −18 | recipes/packages.rb | |
+7 −0 | templates/default/essex/epel-openstack-essex.repo.erb |
Submodule postgresql
updated
from 686165 to 42d55f
Submodule rabbitmq
updated
from 5b56ae to 58af2a
Submodule rsyslog
updated
4 files
+1 −1 | metadata.rb | |
+9 −7 | recipes/default.rb | |
+16 −0 | templates/default/50-default.conf.erb | |
+0 −32 | templates/default/rsyslog.conf.erb |
Submodule selinux
updated
from a65da3 to bc9d76
Submodule swift
updated
11 files
+1 −1 | metadata.rb | |
+1 −7 | recipes/account-server.rb | |
+1 −7 | recipes/common.rb | |
+1 −7 | recipes/container-server.rb | |
+1 −7 | recipes/disks.rb | |
+7 −13 | recipes/management-server.rb | |
+1 −7 | recipes/memcached.rb | |
+1 −7 | recipes/object-server.rb | |
+11 −17 | recipes/proxy-server.rb | |
+1 −7 | recipes/ring-repo.rb | |
+1 −7 | recipes/rsync.rb |
Submodule xfs
updated
from 3cbf1a to d211fe
Submodule yum
updated
from 072926 to 37297d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name "cinder-setup" | ||
description "Where the setup operations for cinder get run" | ||
run_list( | ||
"role[base]", | ||
"recipe[cinder::cinder-setup]" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name "haproxy" | ||
description "install and configure haproxy load balancer for openstack services" | ||
run_list( | ||
"role[base]", | ||
"recipe[haproxy::default]" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name "keystone-api" | ||
description "Keystone API" | ||
run_list( | ||
"role[base]", | ||
"recipe[keystone::keystone-api]" | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters