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
dc65ff7d
Commit
dc65ff7d
authored
Dec 22, 2015
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2627 from edx/named-release/dogwood.rc
Dogwood.rc fixes
parents
26bca6cd
3bd83b5d
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
1 deletions
+24
-1
playbooks/roles/vhost/tasks/main.yml
+1
-1
playbooks/roles/vhost/templates/etc/devstack_motd.tail.j2
+0
-0
vagrant/base/devstack/Vagrantfile
+6
-0
vagrant/release/devstack/Vagrantfile
+11
-0
vagrant/release/fullstack/Vagrantfile
+6
-0
No files found.
playbooks/roles/vhost/tasks/main.yml
View file @
dc65ff7d
...
...
@@ -31,7 +31,7 @@
mode
:
"
{{
item.mode
|
default(644)
}}"
register
:
config_templates
with_items
:
-
{
src
:
'
etc/
motd.tail.j2
'
,
dest
:
'
/etc/motd.tail'
,
mode
:
'
755'
}
-
{
src
:
'
etc/
{{
COMMON_MOTD_TEMPLATE
}}
'
,
dest
:
'
/etc/motd.tail'
,
mode
:
'
755'
}
-
{
src
:
'
etc/ssh/sshd_config.j2'
,
dest
:
'
/etc/ssh/sshd_config'
}
-
name
:
restart ssh
...
...
playbooks/roles/
common/templates
/devstack_motd.tail.j2
→
playbooks/roles/
vhost/templates/etc
/devstack_motd.tail.j2
View file @
dc65ff7d
File moved
vagrant/base/devstack/Vagrantfile
View file @
dc65ff7d
...
...
@@ -20,6 +20,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
box_url
=
"http://files.vagrantup.com/precise64.box"
config
.
vm
.
network
:private_network
,
ip:
vm_guest_ip
# If you want to run the box but don't need network ports, set VAGRANT_NO_PORTS=1.
# This is useful if you want to run more than one box at once.
if
not
ENV
[
'VAGRANT_NO_PORTS'
]
config
.
vm
.
network
:forwarded_port
,
guest:
8000
,
host:
8000
# LMS
config
.
vm
.
network
:forwarded_port
,
guest:
8001
,
host:
8001
# Studio
config
.
vm
.
network
:forwarded_port
,
guest:
8002
,
host:
8002
# Ecommerce
...
...
@@ -34,6 +38,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
network
:forwarded_port
,
guest:
8110
,
host:
8110
# Insights
config
.
vm
.
network
:forwarded_port
,
guest:
50070
,
host:
50070
# HDFS Admin UI
config
.
vm
.
network
:forwarded_port
,
guest:
8088
,
host:
8088
# Hadoop Resource Manager
end
config
.
ssh
.
insert_key
=
true
# Enable X11 forwarding so we can interact with GUI applications
...
...
vagrant/release/devstack/Vagrantfile
View file @
dc65ff7d
...
...
@@ -60,6 +60,12 @@ end
# to a name and a file path, which are used for retrieving
# a Vagrant box from the internet.
openedx_releases
=
{
"named-release/dogwood.rc"
=>
{
:name
=>
"dogwood-devstack-rc2"
,
:file
=>
"20151221-dogwood-devstack-rc2.box"
,
},
"named-release/dogwood.rc2"
=>
{
:name
=>
"dogwood-devstack-rc2"
,
:file
=>
"20151221-dogwood-devstack-rc2.box"
,
},
"named-release/cypress"
=>
{
:name
=>
"cypress-devstack"
,
:file
=>
"cypress-devstack.box"
,
},
...
...
@@ -88,6 +94,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
box_url
=
"http://files.edx.org/vagrant-images/
#{
openedx_releases
[
rel
][
:file
]
}
"
config
.
vm
.
network
:private_network
,
ip:
"192.168.33.10"
# If you want to run the box but don't need network ports, set VAGRANT_NO_PORTS=1.
# This is useful if you want to run more than one box at once.
if
not
ENV
[
'VAGRANT_NO_PORTS'
]
config
.
vm
.
network
:forwarded_port
,
guest:
8000
,
host:
8000
# LMS
config
.
vm
.
network
:forwarded_port
,
guest:
8001
,
host:
8001
# Studio
config
.
vm
.
network
:forwarded_port
,
guest:
8002
,
host:
8002
# Ecommerce
...
...
@@ -102,6 +112,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
network
:forwarded_port
,
guest:
9876
,
host:
9876
# ORA2 Karma tests
config
.
vm
.
network
:forwarded_port
,
guest:
50070
,
host:
50070
# HDFS Admin UI
config
.
vm
.
network
:forwarded_port
,
guest:
8088
,
host:
8088
# Hadoop Resource Manager
end
config
.
ssh
.
insert_key
=
true
config
.
vm
.
synced_folder
"."
,
"/vagrant"
,
disabled:
true
...
...
vagrant/release/fullstack/Vagrantfile
View file @
dc65ff7d
...
...
@@ -9,6 +9,12 @@ CPU_COUNT = 2
# to a name and a file path, which are used for retrieving
# a Vagrant box from the internet.
openedx_releases
=
{
"named-release/dogwood.rc"
=>
{
:name
=>
"dogwood-fullstack-rc2"
,
:file
=>
"20151221-dogwood-fullstack-rc2.box"
,
},
"named-release/dogwood.rc2"
=>
{
:name
=>
"dogwood-fullstack-rc2"
,
:file
=>
"20151221-dogwood-fullstack-rc2.box"
,
},
"named-release/cypress"
=>
{
:name
=>
"cypress-fullstack"
,
:file
=>
"cypress-fullstack.box"
,
},
...
...
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