Commit f37c01a8 by Max Rothman

final fixups

parent 8bb35254
...@@ -57,7 +57,7 @@ INSIGHTS_DATABASES: ...@@ -57,7 +57,7 @@ INSIGHTS_DATABASES:
# #
# This block of config is dropped into /edx/etc/insights.yml # This block of config is dropped into /edx/etc/insights.yml
# and is read in by analytics_dashboard/settings/production.py # and is read in by analytics_dashboard/settings/production.py
INSIGHTS_SERVICE_CONFIG: INSIGHTS_CONFIG:
SUPPORT_URL: '{{ INSIGHTS_SUPPORT_URL }}' SUPPORT_URL: '{{ INSIGHTS_SUPPORT_URL }}'
DOCUMENTATION_LOAD_ERROR_URL: '{{ INSIGHTS_DOC_BASE }}/Reference.html#error-conditions' DOCUMENTATION_LOAD_ERROR_URL: '{{ INSIGHTS_DOC_BASE }}/Reference.html#error-conditions'
SEGMENT_IO_KEY: '{{ INSIGHTS_SEGMENT_IO_KEY }}' SEGMENT_IO_KEY: '{{ INSIGHTS_SEGMENT_IO_KEY }}'
...@@ -117,20 +117,20 @@ INSIGHTS_REPOS: ...@@ -117,20 +117,20 @@ INSIGHTS_REPOS:
REPO: edx-analytics-dashboard.git REPO: edx-analytics-dashboard.git
VERSION: "{{ INSIGHTS_VERSION }}" VERSION: "{{ INSIGHTS_VERSION }}"
DESTINATION: "{{ insights_code_dir }}" DESTINATION: "{{ insights_code_dir }}"
SSH_KEY: "{{ INSIGHTS_GIT_IDENTITY }} SSH_KEY: "{{ INSIGHTS_GIT_IDENTITY }}"
# #
# vars are namespace with the module name. # vars are namespace with the module name.
# #
insights_environment: insights_environment:
DJANGO_SETTINGS_MODULE: "analytics_dashboard.settings.production" DJANGO_SETTINGS_MODULE: "analytics_dashboard.settings.production"
ANALYTICS_DASHBOARD_CFG: "{{ COMMON_CFG_DIR }}/{{ insights_service_name }}.yaml" ANALYTICS_DASHBOARD_CFG: "{{ COMMON_CFG_DIR }}/{{ insights_service_name }}.yml"
insights_service_name: insights insights_service_name: insights
insights_user: "{{ insights_service_name }}" insights_user: "{{ insights_service_name }}"
insights_app_dir: "{{ COMMON_APP_DIR }}/{{ insights_service_name }}" insights_app_dir: "{{ COMMON_APP_DIR }}/{{ insights_service_name }}"
insights_home: "{{ COMMON_APP_DIR }}/{{ insights_service_name }}" insights_home: "{{ COMMON_APP_DIR }}/{{ insights_service_name }}"
insights_code_dir: "{{ insights_app_dir }}/edx-analytics-dashboard" insights_code_dir: "{{ insights_app_dir }}/edx_analytics_dashboard"
insights_python_path: "{{ insights_code_dir }}/analytics_dashboard" insights_python_path: "{{ insights_code_dir }}/analytics_dashboard"
insights_conf_dir: "{{ insights_home }}" insights_conf_dir: "{{ insights_home }}"
insights_log_dir: "{{ COMMON_LOG_DIR }}/{{ insights_service_name }}" insights_log_dir: "{{ COMMON_LOG_DIR }}/{{ insights_service_name }}"
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
dependencies: dependencies:
- role: edx_service - role: edx_service
edx_service_name: "{{ insights_service_name }}" edx_service_name: "{{ insights_service_name }}"
edx_service_config: "{{ INSIGHTS_SERVICE_CONFIG }}" edx_service_config: "{{ INSIGHTS_CONFIG }}"
edx_service_repos: "{{ INSIGHTS_REPOS }}" edx_service_repos: "{{ INSIGHTS_REPOS }}"
edx_service_user: "{{ insights_user }}" edx_service_user: "{{ insights_user }}"
edx_service_home: "{{ insights_home }}" edx_service_home: "{{ insights_home }}"
......
...@@ -123,4 +123,13 @@ ...@@ -123,4 +123,13 @@
file: > file: >
src="{{ insights_manage }}" src="{{ insights_manage }}"
dest="{{ COMMON_BIN_DIR }}/manage.{{ insights_service_name }}" dest="{{ COMMON_BIN_DIR }}/manage.{{ insights_service_name }}"
state=link state=link
\ No newline at end of file
- name: restart insights
supervisorctl_local: >
state=restarted
supervisorctl_path={{ supervisor_ctl }}
config={{ supervisor_cfg }}
name={{ insights_service_name }}
when: not disable_edx_services
sudo_user: "{{ supervisor_service_user }}"
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# {{ ansible_managed }} # {{ ansible_managed }}
{% set insights_venv_bin = insights_home + '/venvs' + insights_service_name + '/bin' } {% set insights_venv_bin = insights_home + '/venvs/' + insights_service_name + '/bin' %}
{% if COMMON_ENABLE_NEWRELIC_APP %} {% if COMMON_ENABLE_NEWRELIC_APP %}
{% set executable = insights_venv_bin + '/newrelic-admin run-program ' + insights_venv_bin + '/gunicorn' %} {% set executable = insights_venv_bin + '/newrelic-admin run-program ' + insights_venv_bin + '/gunicorn' %}
{% else %} {% else %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment