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
137c2155
Commit
137c2155
authored
Aug 26, 2016
by
Ned Batchelder
Committed by
GitHub
Aug 26, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3350 from edx/ned/pin-demo-course
Pin the demo course whenever we install it
parents
0953e569
c9b2252b
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
0 deletions
+9
-0
playbooks/vagrant-fullstack.yml
+1
-0
util/install/sandbox.sh
+1
-0
util/jenkins/ansible-provision.sh
+1
-0
util/vagrant/upgrade.sh
+1
-0
vagrant/base/analyticstack/Vagrantfile
+1
-0
vagrant/base/devstack/Vagrantfile
+1
-0
vagrant/base/fullstack/Vagrantfile
+1
-0
vagrant/release/analyticstack/Vagrantfile
+1
-0
vagrant/release/devstack/Vagrantfile
+1
-0
No files found.
playbooks/vagrant-fullstack.yml
View file @
137c2155
...
...
@@ -13,6 +13,7 @@
certs_version
:
'
{{
OPENEDX_RELEASE
|
default("master")
}}'
forum_version
:
'
{{
OPENEDX_RELEASE
|
default("master")
}}'
xqueue_version
:
'
{{
OPENEDX_RELEASE
|
default("master")
}}'
demo_version
:
'
{{
OPENEDX_RELEASE
|
default("master")
}}'
roles
:
-
common
-
vhost
...
...
util/install/sandbox.sh
View file @
137c2155
...
...
@@ -49,6 +49,7 @@ if [ -n "$OPENEDX_RELEASE" ]; then
-e forum_version=
$OPENEDX_RELEASE
\
-e xqueue_version=
$OPENEDX_RELEASE
\
-e configuration_version=
$OPENEDX_RELEASE
\
-e demo_version=
$OPENEDX_RELEASE
\
-e NOTIFIER_VERSION=
$OPENEDX_RELEASE
\
-e INSIGHTS_VERSION=
$OPENEDX_RELEASE
\
-e ANALYTICS_API_VERSION=
$OPENEDX_RELEASE
\
...
...
util/jenkins/ansible-provision.sh
View file @
137c2155
...
...
@@ -168,6 +168,7 @@ xqueue_version: $xqueue_version
xserver_version:
$xserver_version
certs_version:
$certs_version
configuration_version:
$configuration_version
demo_version:
$demo_version
edx_ansible_source_repo:
${
configuration_source_repo
}
edx_platform_repo:
${
edx_platform_repo
}
...
...
util/vagrant/upgrade.sh
View file @
137c2155
...
...
@@ -329,6 +329,7 @@ echo "edx_platform_version: $TARGET" > vars.yml
echo
"certs_version:
$TARGET
"
>>
vars.yml
echo
"forum_version:
$TARGET
"
>>
vars.yml
echo
"xqueue_version:
$TARGET
"
>>
vars.yml
echo
"demo_version:
$TARGET
"
>>
vars.yml
echo
"NOTIFIER_VERSION:
$TARGET
"
>>
vars.yml
echo
"ECOMMERCE_VERSION:
$TARGET
"
>>
vars.yml
echo
"ECOMMERCE_WORKER_VERSION:
$TARGET
"
>>
vars.yml
...
...
vagrant/base/analyticstack/Vagrantfile
View file @
137c2155
...
...
@@ -76,6 +76,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
certs_version:
ENV
[
'OPENEDX_RELEASE'
],
forum_version:
ENV
[
'OPENEDX_RELEASE'
],
xqueue_version:
ENV
[
'OPENEDX_RELEASE'
],
demo_version:
ENV
[
'OPENEDX_RELEASE'
],
ANALYTICS_API_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
INSIGHTS_VERSION
:
ENV
[
'OPENEDX_RELEASE'
],
}
...
...
vagrant/base/devstack/Vagrantfile
View file @
137c2155
...
...
@@ -77,6 +77,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
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'
],
...
...
vagrant/base/fullstack/Vagrantfile
View file @
137c2155
...
...
@@ -40,6 +40,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
certs_version:
ENV
[
'OPENEDX_RELEASE'
],
forum_version:
ENV
[
'OPENEDX_RELEASE'
],
xqueue_version:
ENV
[
'OPENEDX_RELEASE'
],
demo_version:
ENV
[
'OPENEDX_RELEASE'
],
}
end
end
...
...
vagrant/release/analyticstack/Vagrantfile
View file @
137c2155
...
...
@@ -24,6 +24,7 @@ if [ -n "$OPENEDX_RELEASE" ]; then
-e certs_version=$OPENEDX_RELEASE \
-e forum_version=$OPENEDX_RELEASE \
-e xqueue_version=$OPENEDX_RELEASE \
-e demo_version=$OPENEDX_RELEASE \
-e ANALYTICS_API_VERSION=$OPENEDX_RELEASE \
-e INSIGHTS_VERSION=$OPENEDX_RELEASE \
"
...
...
vagrant/release/devstack/Vagrantfile
View file @
137c2155
...
...
@@ -24,6 +24,7 @@ if [ -n "$OPENEDX_RELEASE" ]; then
-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 \
...
...
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