Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoradio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
autoradio
Commits
ac095f08
Commit
ac095f08
authored
11 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
add a Vagrant config for a local cluster test
parent
421a58c5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.rst
+16
-0
16 additions, 0 deletions
README.rst
vagrant-test/Vagrantfile
+51
-0
51 additions, 0 deletions
vagrant-test/Vagrantfile
vagrant-test/bootstrap.sh
+30
-0
30 additions, 0 deletions
vagrant-test/bootstrap.sh
with
97 additions
and
0 deletions
README.rst
+
16
−
0
View file @
ac095f08
...
...
@@ -155,6 +155,22 @@ with data on its own memory usage), in JSON format at the
``/debug/vars`` URL.
Testing
-------
There's a Vagrant_ configuration in the ``vagrant-test`` subdirectory
that will turn up a test three-node cluster (with Debian) using
pre-packaged binaries. To run it::
$ cd vagrant-test
$ vagrant up
It will take a while to download the base image the first time, then
it will turn up three nodes called **node1**, **node2** and **node3**.
Use ``vagrant ssh`` to inspect them.
.. _etcd: https://github.com/coreos/etcd
.. _autoca: https://git.autistici.org/ai/autoca
.. _Vagrant: http://www.vagrantup.com/
This diff is collapsed.
Click to expand it.
vagrant-test/Vagrantfile
0 → 100644
+
51
−
0
View file @
ac095f08
API_VERSION
=
"2"
# Note: we shouldn't need to create a host entry for 'etcd', but
# 'test.net' is a real domain with a catch-all...
$setup_host_file
=
<<
SCRIPT
cat >/etc/hosts <<EOF
127.0.0.1 localhost
192.168.50.2 node1.test.net etcd.test.net node1
192.168.50.3 node2.test.net node2
192.168.50.4 node3.test.net node3
EOF
SCRIPT
Vagrant
.
configure
(
API_VERSION
)
do
|
config
|
config
.
vm
.
box
=
"wheezy"
config
.
vm
.
box_url
=
"http://www.incal.net/ale/debian-wheezy-64.box"
config
.
vm
.
provision
"shell"
,
inline:
$setup_host_file
config
.
vm
.
provision
"shell"
do
|
s
|
s
.
path
=
"bootstrap.sh"
s
.
args
=
"test.net"
end
config
.
vm
.
define
"node1"
do
|
m
|
m
.
vm
.
hostname
=
"node1"
m
.
vm
.
network
"private_network"
,
ip:
"192.168.50.2"
m
.
vm
.
provision
"shell"
,
inline:
"echo BOOTSTRAP=1 > /etc/default/etcd"
end
config
.
vm
.
define
"node2"
do
|
m
|
m
.
vm
.
hostname
=
"node2"
m
.
vm
.
network
"private_network"
,
ip:
"192.168.50.3"
#m.vm.provision "shell", inline: "hostname node2"
m
.
vm
.
provision
"shell"
,
inline:
"echo ETCD_SERVER=node1 > /etc/default/etcd"
end
config
.
vm
.
define
"node3"
do
|
m
|
m
.
vm
.
hostname
=
"node3"
m
.
vm
.
network
"private_network"
,
ip:
"192.168.50.4"
m
.
vm
.
provision
"shell"
,
inline:
"echo ETCD_SERVER=node1 > /etc/default/etcd"
m
.
vm
.
provision
"shell"
,
inline:
"sleep 3 && radioctl create-mount sample.ogg"
end
end
This diff is collapsed.
Click to expand it.
vagrant-test/bootstrap.sh
0 → 100644
+
30
−
0
View file @
ac095f08
#!/bin/bash
set
-e
# Install our Debian apt repository.
echo
'deb http://www.incal.net/ale/debian autoradio/'
>
\
/etc/apt/sources.list.d/autoradio.list
cat
>
/etc/default/icecast2
<<
EOF
CONFIGFILE="/etc/icecast2/icecast.xml"
USERID=icecast2
GROUPID=icecast
ENABLE=true
EOF
# Install the required packages.
export
DEBIAN_FRONTEND
=
noninteractive
apt-get update
-q
yes
n | apt-get
install
-q
-y
--force-yes
etcd autoradio
# Install the configuration.
DOMAIN
=
"
${
DOMAIN
:-
$1
}
"
if
[
-n
"
${
DOMAIN
}
"
]
;
then
echo
"Autoconfigured with domain:
${
DOMAIN
}
"
1>&2
echo
"DOMAIN=
${
DOMAIN
}
"
>
/etc/default/autoradio
fi
echo
"All done (?)"
1>&2
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment