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
5a5133c6
Commit
5a5133c6
authored
Nov 29, 2016
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the analytics Vagrantfiles like the devstack
parent
590a5be6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
73 deletions
+76
-73
vagrant/base/analyticstack/Vagrantfile
+27
-30
vagrant/release/analyticstack/Vagrantfile
+49
-43
No files found.
vagrant/base/analyticstack/Vagrantfile
View file @
5a5133c6
...
...
@@ -13,6 +13,24 @@ if ENV["VAGRANT_GUEST_IP"]
vm_guest_ip
=
ENV
[
"VAGRANT_GUEST_IP"
]
end
# These are versioning variables in the roles. Each can be overridden, first
# with OPENEDX_RELEASE, and then with a specific environment variable of the
# same name but upper-cased.
VERSION_VARS
=
[
'edx_platform_version'
,
'configuration_version'
,
'certs_version'
,
'forum_version'
,
'xqueue_version'
,
'demo_version'
,
'NOTIFIER_VERSION'
,
'ECOMMERCE_VERSION'
,
'ECOMMERCE_WORKER_VERSION'
,
'PROGRAMS_VERSION'
,
'ANALYTICS_API_VERSION'
,
'INSIGHTS_VERSION'
,
]
Vagrant
.
configure
(
VAGRANTFILE_API_VERSION
)
do
|
config
|
# Creates a devstack from a base Ubuntu 12.04 image for virtualbox
...
...
@@ -70,36 +88,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
ansible
.
verbose
=
"vvvv"
ansible
.
extra_vars
=
{}
if
ENV
[
'OPENEDX_RELEASE'
]
ansible
.
extra_vars
=
{
edx_platform_version:
ENV
[
'OPENEDX_RELEASE'
],
configuration_version:
ENV
[
'OPENEDX_RELEASE'
],
certs_version:
ENV
[
'OPENEDX_RELEASE'
],
forum_version:
ENV
[
'OPENEDX_RELEASE'
],
xqueue_version:
ENV
[
'OPENEDX_RELEASE'
],
demo_version:
ENV
[
'OPENEDX_RELEASE'
],
NOTIFIER_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
ECOMMERCE_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
ECOMMERCE_WORKER_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
PROGRAMS_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
ANALYTICS_API_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
INSIGHTS_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
}
end
if
ENV
[
'CONFIGURATION_VERSION'
]
ansible
.
extra_vars
[
'configuration_version'
]
=
ENV
[
'CONFIGURATION_VERSION'
]
end
if
ENV
[
'EDX_PLATFORM_VERSION'
]
ansible
.
extra_vars
[
'edx_platform_version'
]
=
ENV
[
'EDX_PLATFORM_VERSION'
]
end
if
ENV
[
'ECOMMERCE_VERSION'
]
ansible
.
extra_vars
[
'ECOMMERCE_VERSION'
]
=
ENV
[
'ECOMMERCE_VERSION'
]
end
if
ENV
[
'ECOMMERCE_WORKER_VERSION'
]
ansible
.
extra_vars
[
'ECOMMERCE_WORKER_VERSION'
]
=
ENV
[
'ECOMMERCE_WORKER_VERSION'
]
end
if
ENV
[
'PROGRAMS_VERSION'
]
ansible
.
extra_vars
[
'PROGRAMS_VERSION'
]
=
ENV
[
'PROGRAMS_VERSION'
]
VERSION_VARS
.
each
do
|
var
|
if
ENV
[
'OPENEDX_RELEASE'
]
ansible
.
extra_vars
[
var
]
=
ENV
[
'OPENEDX_RELEASE'
]
end
env_var
=
var
.
upcase
if
ENV
[
env_var
]
ansible
.
extra_vars
[
var
]
=
ENV
[
env_var
]
end
end
end
end
vagrant/release/analyticstack/Vagrantfile
View file @
5a5133c6
...
...
@@ -8,44 +8,23 @@ VAGRANTFILE_API_VERSION = "2"
MEMORY
=
4096
CPU_COUNT
=
2
$script
=
<<
SCRIPT
if [ ! -d /edx/app/edx_ansible ]; then
echo "Error: Base box is missing provisioning scripts." 1>&2
exit 1
fi
OPENEDX_RELEASE=$1
export PYTHONUNBUFFERED=1
source /edx/app/edx_ansible/venvs/edx_ansible/bin/activate
cd /edx/app/edx_ansible/edx_ansible/playbooks
# Did we specify an openedx release?
if [ -n "$OPENEDX_RELEASE" ]; then
EXTRA_VARS="-e edx_platform_version=$OPENEDX_RELEASE \
-e certs_version=$OPENEDX_RELEASE \
-e forum_version=$OPENEDX_RELEASE \
-e xqueue_version=$OPENEDX_RELEASE \
-e demo_version=$OPENEDX_RELEASE \
-e NOTIFIER_VERSION=$OPENEDX_RELEASE \
-e ECOMMERCE_VERSION=$OPENEDX_RELEASE \
-e ECOMMERCE_WORKER_VERSION=$OPENEDX_RELEASE \
-e PROGRAMS_VERSION=$OPENEDX_RELEASE \
-e ANALYTICS_API_VERSION=$OPENEDX_RELEASE \
-e INSIGHTS_VERSION=$OPENEDX_RELEASE \
"
CONFIG_VER=$OPENEDX_RELEASE
# Need to ensure that the configuration repo is updated
# The vagrant-analyticstack.yml playbook will also do this, but only
# after loading the playbooks into memory. If these are out of date,
# this can cause problems (e.g. looking for templates that no longer exist).
/edx/bin/update configuration $CONFIG_VER
else
CONFIG_VER="master"
fi
ansible-playbook -i localhost, -c local run_role.yml -e role=edx_ansible -e configuration_version=$CONFIG_VER $EXTRA_VARS
ansible-playbook -i localhost, -c local vagrant-analytics.yml -e configuration_version=$CONFIG_VER $EXTRA_VARS -e ELASTICSEARCH_CLUSTER_MEMBERS=[]
SCRIPT
# These are versioning variables in the roles. Each can be overridden, first
# with OPENEDX_RELEASE, and then with a specific environment variable of the
# same name but upper-cased.
VERSION_VARS
=
[
'edx_platform_version'
,
'configuration_version'
,
'certs_version'
,
'forum_version'
,
'xqueue_version'
,
'demo_version'
,
'NOTIFIER_VERSION'
,
'ECOMMERCE_VERSION'
,
'ECOMMERCE_WORKER_VERSION'
,
'PROGRAMS_VERSION'
,
'ANALYTICS_API_VERSION'
,
'INSIGHTS_VERSION'
,
]
MOUNT_DIRS
=
{
:edx_platform
=>
{
:repo
=>
"edx-platform"
,
:local
=>
"/edx/app/edxapp/edx-platform"
,
:owner
=>
"edxapp"
},
...
...
@@ -82,14 +61,41 @@ openedx_releases = {
openedx_releases
.
default
=
{
:name
=>
"analyticstack"
,
:file
=>
"analyticstack-latest.box"
,
}
rel
=
ENV
[
'OPENEDX_RELEASE'
]
openedx_release
=
ENV
[
'OPENEDX_RELEASE'
]
# Build -e override lines for each overridable variable.
extra_vars_lines
=
""
VERSION_VARS
.
each
do
|
var
|
rel
=
ENV
[
var
.
upcase
]
||
openedx_release
if
rel
extra_vars_lines
+=
"-e
#{
var
}
=
#{
rel
}
\\\n
"
end
end
$script
=
<<
SCRIPT
if [ ! -d /edx/app/edx_ansible ]; then
echo "Error: Base box is missing provisioning scripts." 1>&2
exit 1
fi
export PYTHONUNBUFFERED=1
source /edx/app/edx_ansible/venvs/edx_ansible/bin/activate
cd /edx/app/edx_ansible/edx_ansible/playbooks
EXTRA_VARS="
#{
extra_vars_lines
}
"
CONFIG_VER="
#{
ENV
[
'CONFIGURATION_VERSION'
]
||
openedx_release
||
'master'
}
"
ansible-playbook -i localhost, -c local run_role.yml -e role=edx_ansible -e configuration_version=$CONFIG_VER $EXTRA_VARS
ansible-playbook -i localhost, -c local vagrant-analytics.yml -e configuration_version=$CONFIG_VER $EXTRA_VARS -e ELASTICSEARCH_CLUSTER_MEMBERS=[]
SCRIPT
Vagrant
.
configure
(
VAGRANTFILE_API_VERSION
)
do
|
config
|
reldata
=
openedx_releases
[
rel
]
reldata
=
openedx_releases
[
openedx_release
]
if
Hash
==
reldata
.
class
boxname
=
openedx_releases
[
rel
][
:name
]
boxfile
=
openedx_releases
[
rel
].
fetch
(
:file
,
"
#{
boxname
}
.box"
)
boxname
=
openedx_releases
[
openedx_release
][
:name
]
boxfile
=
openedx_releases
[
openedx_release
].
fetch
(
:file
,
"
#{
boxname
}
.box"
)
else
boxname
=
reldata
boxfile
=
"
#{
boxname
}
.box"
...
...
@@ -153,5 +159,5 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Assume that the base box has the edx_ansible role installed
# We can then tell the Vagrant instance to update itself.
config
.
vm
.
provision
"shell"
,
inline:
$script
,
args:
rel
config
.
vm
.
provision
"shell"
,
inline:
$script
end
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