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
83bcda1e
Commit
83bcda1e
authored
Nov 12, 2015
by
Fred Smith
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2440 from edx/derf/edxapp_on_django_1.8
edxapp on django 1.8
parents
f029732c
5a5b5baf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
17 deletions
+11
-17
playbooks/roles/edxapp/tasks/service_variant_config.yml
+3
-3
playbooks/roles/supervisor/files/pre_supervisor_checks.py
+7
-12
playbooks/roles/supervisor/templates/etc/init/pre_supervisor.conf.j2
+1
-1
playbooks/roles/xsy/meta/main.yml
+0
-1
No files found.
playbooks/roles/edxapp/tasks/service_variant_config.yml
View file @
83bcda1e
...
...
@@ -103,9 +103,9 @@
-
service_variants_enabled
# Syncdb with migrate when the migrate user is overridden in extra vars
-
name
:
syncdb and
migrate
command
:
"
{{
COMMON_BIN_DIR
}}/edxapp-
syncdb
-{{
item
}}"
when
:
fake_migrations is not defined and
migrate_db is defined and migrate_db|lower == "yes" and COMMON_MYSQL_MIGRATE_PASS and item != "lms-preview"
-
name
:
migrate
command
:
"
{{
COMMON_BIN_DIR
}}/edxapp-
migrate
-{{
item
}}"
when
:
migrate_db is defined and migrate_db|lower == "yes" and COMMON_MYSQL_MIGRATE_PASS and item != "lms-preview"
environment
:
DB_MIGRATION_USER
:
"
{{
COMMON_MYSQL_MIGRATE_USER
}}"
DB_MIGRATION_PASS
:
"
{{
COMMON_MYSQL_MIGRATE_PASS
}}"
...
...
playbooks/roles/supervisor/files/pre_supervisor_checks.py
View file @
83bcda1e
...
...
@@ -11,8 +11,8 @@ import time
# Services that should be checked for migrations.
MIGRATION_COMMANDS
=
{
'lms'
:
"{python} {code_dir}/manage.py lms migrate --noinput --settings=aws --db-dry-run --merge
"
,
'cms'
:
"{python} {code_dir}/manage.py cms migrate --noinput --settings=aws --db-dry-run --merge
"
,
'lms'
:
". {env_file}; {python} {code_dir}/manage.py lms migrate --noinput --list --settings=aws
"
,
'cms'
:
". {env_file}; {python} {code_dir}/manage.py cms migrate --noinput --list --settings=aws
"
,
'xqueue'
:
"{python} {code_dir}/manage.py xqueue migrate --noinput --settings=aws --db-dry-run --merge"
,
'ecommerce'
:
". {env_file}; {python} {code_dir}/manage.py migrate --noinput --list"
,
'programs'
:
". {env_file}; {python} {code_dir}/manage.py migrate --noinput --list"
,
...
...
@@ -73,6 +73,8 @@ if __name__ == '__main__':
help
=
"Location of the edx-platform code."
)
migration_args
.
add_argument
(
"--edxapp-python"
,
help
=
"Path to python to use for executing migration check."
)
migration_args
.
add_argument
(
"--edxapp-env"
,
help
=
"Location of the ecommerce environment file."
)
xq_migration_args
=
parser
.
add_argument_group
(
"xqueue_migrations"
,
"Args for running xqueue migration checks."
)
...
...
@@ -205,16 +207,7 @@ if __name__ == '__main__':
for
service
in
services_for_instance
(
instance_id
):
if
service
in
MIGRATION_COMMANDS
:
# Do extra migration related stuff.
if
(
service
==
'lms'
or
service
==
'cms'
)
and
args
.
edxapp_code_dir
:
cmd
=
MIGRATION_COMMANDS
[
service
]
.
format
(
python
=
args
.
edxapp_python
,
code_dir
=
args
.
edxapp_code_dir
)
if
os
.
path
.
exists
(
args
.
edxapp_code_dir
):
os
.
chdir
(
args
.
edxapp_code_dir
)
# Run migration check command.
output
=
subprocess
.
check_output
(
cmd
,
shell
=
True
)
if
'Migrating'
in
output
:
raise
Exception
(
"Migrations have not been run for {}"
.
format
(
service
))
elif
service
==
'xqueue'
and
args
.
xqueue_code_dir
:
if
service
==
'xqueue'
and
args
.
xqueue_code_dir
:
cmd
=
MIGRATION_COMMANDS
[
service
]
.
format
(
python
=
args
.
xqueue_python
,
code_dir
=
xqueue_code_dir
)
if
os
.
path
.
exists
(
args
.
xqueue_code_dir
):
...
...
@@ -225,6 +218,8 @@ if __name__ == '__main__':
raise
Exception
(
"Migrations have not been run for {}"
.
format
(
service
))
else
:
new_services
=
{
"lms"
:
{
'python'
:
args
.
edxapp_python
,
'env_file'
:
args
.
edxapp_env
,
'code_dir'
:
args
.
edxapp_code_dir
},
"cms"
:
{
'python'
:
args
.
edxapp_python
,
'env_file'
:
args
.
edxapp_env
,
'code_dir'
:
args
.
edxapp_code_dir
},
"ecommerce"
:
{
'python'
:
args
.
ecommerce_python
,
'env_file'
:
args
.
ecommerce_env
,
'code_dir'
:
args
.
ecommerce_code_dir
},
"programs"
:
{
'python'
:
args
.
programs_python
,
'env_file'
:
args
.
programs_env
,
'code_dir'
:
args
.
programs_code_dir
},
"insights"
:
{
'python'
:
args
.
insights_python
,
'env_file'
:
args
.
insights_env
,
'code_dir'
:
args
.
insights_code_dir
},
...
...
playbooks/roles/supervisor/templates/etc/init/pre_supervisor.conf.j2
View file @
83bcda1e
...
...
@@ -11,4 +11,4 @@ setuid {{ supervisor_user }}
{% set programs_command = "" %}
{% endif %}
exec {{ supervisor_venv_dir }}/bin/python {{ supervisor_app_dir }}/pre_supervisor_checks.py --available={{ supervisor_available_dir }} --enabled={{ supervisor_cfg_dir }} {% if SUPERVISOR_HIPCHAT_API_KEY is defined %}--hipchat-api-key {{ SUPERVISOR_HIPCHAT_API_KEY }} --hipchat-room {{ SUPERVISOR_HIPCHAT_ROOM }} {% endif %} {% if edxapp_code_dir is defined %}--edxapp-python {{ COMMON_BIN_DIR }}/python.edxapp --edxapp-code-dir {{ edxapp_code_dir }}{% endif %} {% if xqueue_code_dir is defined %}--xqueue-code-dir {{ xqueue_code_dir }} --xqueue-python {{ COMMON_BIN_DIR }}/python.xqueue {% endif %} {% if ecommerce_code_dir is defined %}--ecommerce-env {{ ecommerce_home }}/ecommerce_env --ecommerce-code-dir {{ ecommerce_code_dir }} --ecommerce-python {{ COMMON_BIN_DIR }}/python.ecommerce {% endif %} {% if insights_code_dir is defined %}--insights-env {{ insights_home }}/insights_env --insights-code-dir {{ insights_code_dir }} --insights-python {{ COMMON_BIN_DIR }}/python.insights {% endif %} {% if analytics_api_code_dir is defined %}--analytics-api-env {{ analytics_api_home }}/analytics_api_env --analytics-api-code-dir {{ analytics_api_code_dir }} --analytics-api-python {{ COMMON_BIN_DIR }}/python.analytics_api {% endif %} {{ programs_command }}
exec {{ supervisor_venv_dir }}/bin/python {{ supervisor_app_dir }}/pre_supervisor_checks.py --available={{ supervisor_available_dir }} --enabled={{ supervisor_cfg_dir }} {% if SUPERVISOR_HIPCHAT_API_KEY is defined %}--hipchat-api-key {{ SUPERVISOR_HIPCHAT_API_KEY }} --hipchat-room {{ SUPERVISOR_HIPCHAT_ROOM }} {% endif %} {% if edxapp_code_dir is defined %}--edxapp-python {{ COMMON_BIN_DIR }}/python.edxapp --edxapp-code-dir {{ edxapp_code_dir }}
--edxapp-env {{ edxapp_app_dir }}/edxapp_env
{% endif %} {% if xqueue_code_dir is defined %}--xqueue-code-dir {{ xqueue_code_dir }} --xqueue-python {{ COMMON_BIN_DIR }}/python.xqueue {% endif %} {% if ecommerce_code_dir is defined %}--ecommerce-env {{ ecommerce_home }}/ecommerce_env --ecommerce-code-dir {{ ecommerce_code_dir }} --ecommerce-python {{ COMMON_BIN_DIR }}/python.ecommerce {% endif %} {% if insights_code_dir is defined %}--insights-env {{ insights_home }}/insights_env --insights-code-dir {{ insights_code_dir }} --insights-python {{ COMMON_BIN_DIR }}/python.insights {% endif %} {% if analytics_api_code_dir is defined %}--analytics-api-env {{ analytics_api_home }}/analytics_api_env --analytics-api-code-dir {{ analytics_api_code_dir }} --analytics-api-python {{ COMMON_BIN_DIR }}/python.analytics_api {% endif %} {{ programs_command }}
playbooks/roles/xsy/meta/main.yml
View file @
83bcda1e
...
...
@@ -21,4 +21,3 @@
dependencies
:
-
supervisor
-
redis
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