Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
53b5f994
Commit
53b5f994
authored
Apr 18, 2013
by
jarv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README.md
parent
a503d204
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
0 deletions
+51
-0
README.md
+51
-0
No files found.
README.md
View file @
53b5f994
...
...
@@ -2,6 +2,57 @@
## Ansible
Ansible is a configuration management tool that edX is evaluating to replace the puppet environment
that was used for MITx and edX prior to going open source.
Important reference links:
http://ansible.cc/docs/bestpractices.html
http://ansible.cc/docs/modules.html
http://ansible.cc/docs/playbooks2.html
## Directory Structure
The directory structure should follow Ansible best practices.
```
ec2.py # inventory script for creating groups from ec2 tags
group_vars/
all # assign any variables that are common to all edX groups
tag_group_edxapp # a variable set to true for every group of machines in the
tag_group_xserver # edX infrastructure
tag_group_worker
(etc..)
site.yml # master playbook, this will include all groups
edxapp.yml # defines what roles will be configured for a group of machines
xserver.yml
worker.yml
(etc..)
roles/
common/ # tasks that are common to all roles
tasks/ #
main.yml # <-- tasks file can include smaller files if warranted
handlers/ #
main.yml # <-- handlers file
templates/ # <-- files for use with the template resource
ntp.conf.j2 # <------- templates end in .j2
files/ #
bar.txt # <-- files for use with the copy resource
secure/ # <-- Not checked in, will have secure data that cannot be public
lms/ # same structure as "common" was above
xserver/ # ""
worker/ # ""
(etc..)
```
### Installation
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment