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
840d91e8
Commit
840d91e8
authored
9 years ago
by
Kevin Falcone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to ORA in the Analytics devstacks
parent
93a1ac56
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
13 deletions
+0
-13
playbooks/vagrant-analytics.yml
+0
-1
playbooks/vagrant-devstack.yml
+0
-3
vagrant/base/analyticstack/Vagrantfile
+0
-3
vagrant/release/analyticstack/Vagrantfile
+0
-6
No files found.
playbooks/vagrant-analytics.yml
View file @
840d91e8
...
...
@@ -11,7 +11,6 @@
EDXAPP_NO_PREREQ_INSTALL
:
0
COMMON_MOTD_TEMPLATE
:
'
devstack_motd.tail.j2'
COMMON_SSH_PASSWORD_AUTH
:
"
yes"
ENABLE_LEGACY_ORA
:
!!null
EDXAPP_LMS_BASE
:
127.0.0.1:8000
EDXAPP_OAUTH_ENFORCE_SECURE
:
false
EDXAPP_LMS_BASE_SCHEME
:
http
...
...
This diff is collapsed.
Click to expand it.
playbooks/vagrant-devstack.yml
View file @
840d91e8
...
...
@@ -11,7 +11,6 @@
EDXAPP_NO_PREREQ_INSTALL
:
0
COMMON_MOTD_TEMPLATE
:
'
devstack_motd.tail.j2'
COMMON_SSH_PASSWORD_AUTH
:
"
yes"
ENABLE_LEGACY_ORA
:
!!null
EDXAPP_LMS_BASE
:
127.0.0.1:8000
EDXAPP_OAUTH_ENFORCE_SECURE
:
false
EDXAPP_LMS_BASE_SCHEME
:
http
...
...
@@ -32,8 +31,6 @@
-
programs
-
role
:
notifier
NOTIFIER_DIGEST_TASK_INTERVAL
:
"
5"
-
role
:
ora
when
:
ENABLE_LEGACY_ORA
-
browsers
-
browsermob-proxy
-
local_dev
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/analyticstack/Vagrantfile
View file @
840d91e8
...
...
@@ -114,9 +114,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
ansible
.
verbose
=
"vvvv"
ansible
.
extra_vars
=
{}
if
ENV
[
'ENABLE_LEGACY_ORA'
]
ansible
.
extra_vars
[
'ENABLE_LEGACY_ORA'
]
=
true
end
if
ENV
[
'OPENEDX_RELEASE'
]
ansible
.
extra_vars
=
{
edx_platform_version:
ENV
[
'OPENEDX_RELEASE'
],
...
...
This diff is collapsed.
Click to expand it.
vagrant/release/analyticstack/Vagrantfile
View file @
840d91e8
...
...
@@ -24,7 +24,6 @@ SCRIPT
edx_platform_mount_dir
=
"edx-platform"
themes_mount_dir
=
"themes"
forum_mount_dir
=
"cs_comments_service"
ora_mount_dir
=
"ora"
insights_mount_dir
=
"insights"
analytics_api_mount_dir
=
"analytics_api"
...
...
@@ -33,7 +32,6 @@ if ENV['VAGRANT_MOUNT_BASE']
edx_platform_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
edx_platform_mount_dir
themes_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
themes_mount_dir
forum_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
forum_mount_dir
ora_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
ora_mount_dir
insights_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
insights_mount_dir
analytics_api_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
analytics_api_mount_dir
...
...
@@ -71,8 +69,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
create:
true
,
owner:
"edxapp"
,
group:
"www-data"
config
.
vm
.
synced_folder
"
#{
forum_mount_dir
}
"
,
"/edx/app/forum/cs_comments_service"
,
create:
true
,
owner:
"forum"
,
group:
"www-data"
config
.
vm
.
synced_folder
"
#{
ora_mount_dir
}
"
,
"/edx/app/ora/ora"
,
create:
true
,
owner:
"ora"
,
group:
"www-data"
config
.
vm
.
synced_folder
"
#{
insights_mount_dir
}
"
,
"/edx/app/insights/edx_analytics_dashboard"
,
create:
true
,
owner:
"insights"
,
group:
"www-data"
config
.
vm
.
synced_folder
"
#{
analytics_api_mount_dir
}
"
,
"/edx/app/analytics_api/analytics_api"
,
...
...
@@ -84,8 +80,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
create:
true
,
nfs:
true
config
.
vm
.
synced_folder
"
#{
forum_mount_dir
}
"
,
"/edx/app/forum/cs_comments_service"
,
create:
true
,
nfs:
true
config
.
vm
.
synced_folder
"
#{
ora_mount_dir
}
"
,
"/edx/app/ora/ora"
,
create:
true
,
nfs:
true
config
.
vm
.
synced_folder
"
#{
insights_mount_dir
}
"
,
"/edx/app/insights/edx_analytics_dashboard"
,
create:
true
,
nfs:
true
config
.
vm
.
synced_folder
"
#{
analytics_api_mount_dir
}
"
,
"/edx/app/analytics_api/analytics_api"
,
...
...
This diff is collapsed.
Click to expand it.
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