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
edx
configuration
Commits
b2dbe243
Commit
b2dbe243
authored
Oct 04, 2013
by
e0d
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring and renaming
parent
d22f3c5c
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
0 additions
and
98 deletions
+0
-98
playbooks/roles/analytics-server/defaults/main.yml
+0
-0
playbooks/roles/analytics-server/files/git_ssh.sh
+0
-0
playbooks/roles/analytics-server/handlers/main.yml
+0
-0
playbooks/roles/analytics-server/tasks/deploy.yml
+0
-0
playbooks/roles/analytics-server/tasks/main.yml
+0
-0
playbooks/roles/analytics-server/templates/etc/init/analytics.conf
+0
-0
playbooks/roles/analytics-server/templates/etc/init/analytics.conf.j2
+0
-0
playbooks/roles/analytics-server/templates/opt/wwc/analytics-server/analytics-server_env.j2
+0
-0
playbooks/roles/analytics-server/templates/opt/wwc/analytics.auth.json.j2
+0
-0
playbooks/roles/task/handlers/main.yml
+0
-18
playbooks/roles/task/tasks/main.yml
+0
-47
playbooks/roles/task/vars/main.yml
+0
-33
No files found.
playbooks/roles/analytics-
experiments/var
s/main.yml
→
playbooks/roles/analytics-
server/default
s/main.yml
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/files/git_ssh.sh
→
playbooks/roles/analytics-
server
/files/git_ssh.sh
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/handlers/main.yml
→
playbooks/roles/analytics-
server
/handlers/main.yml
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/tasks/deploy.yml
→
playbooks/roles/analytics-
server
/tasks/deploy.yml
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/tasks/main.yml
→
playbooks/roles/analytics-
server
/tasks/main.yml
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/templates/etc/init/analytics.conf
→
playbooks/roles/analytics-
server
/templates/etc/init/analytics.conf
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/templates/etc/init/analytics.conf.j2
→
playbooks/roles/analytics-
server
/templates/etc/init/analytics.conf.j2
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments/templates/opt/wwc/analytics-experiments/analytics-experiments
_env.j2
→
playbooks/roles/analytics-
server/templates/opt/wwc/analytics-server/analytics-server
_env.j2
View file @
b2dbe243
File moved
playbooks/roles/analytics-
experiments
/templates/opt/wwc/analytics.auth.json.j2
→
playbooks/roles/analytics-
server
/templates/opt/wwc/analytics.auth.json.j2
View file @
b2dbe243
File moved
playbooks/roles/task/handlers/main.yml
deleted
100644 → 0
View file @
d22f3c5c
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Handlers for role task
#
# Overview:
#
#
-
name
:
task | notify me
debug
:
msg="stub handler"
playbooks/roles/task/tasks/main.yml
deleted
100644 → 0
View file @
d22f3c5c
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Tasks for role task
#
# Overview:
#
#
# Dependencies:
#
#
# Example play:
#
#
-
name
:
task | install task specific system packages
apt
:
pkg={{','.join(task_debian_pkgs)}} state=present
tags
:
-
task
-
install
-
update
-
name
:
task | create s3fs mount points
file
:
path={{ item.mount_point }} owner={{ item.owner }}
group={{ item.group }} mode={{ item.mode }} state="directory"
with_items
:
"
{{
task_s3fs_mounts
}}"
-
name
:
task | mount s3 buckets
mount
:
name={{ item.mount_point }} src={{ item.bucket }} fstype=fuse.s3fs
opts=use_cache=/tmp,iam_role={{ task_iam_role }} state=mounted
with_items
:
"
{{
task_s3fs_mounts
}}"
#- name: task | mount s3 buckets
# shell:
# /usr/local/bin/s3fs {{ item.bucket }} {{ item.mount_point }} -ouse_cache=/tmp,iam_role={{ task_iam_role }}
# with_items: "{{ task_s3fs_mounts }}"
playbooks/roles/task/vars/main.yml
deleted
100644 → 0
View file @
d22f3c5c
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
##
# Vars for role task
#
#
# vars are namespace with the module name.
#
task_role_name
:
task
task_iam_role
:
stage-task
task_s3fs_mounts
:
-
{
bucket
:
"
edx-all-tracking-logs"
,
mount_point
:
"
/mnt/edx-all-tracking-logs"
,
owner
:
"
root"
,
group
:
"
adm"
,
mode
:
"
0755"
}
#
# OS packages
#
task_debian_pkgs
:
-
libmysqlclient-dev
task_redhat_pkgs
:
[]
task_pip_pkgs
:
-
git+https://github.com/s3tools/s3cmd.git#egg=s3cmd
\ No newline at end of file
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