-
Notifications
You must be signed in to change notification settings - Fork 7
API changes for new infra, other changes #210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 140 commits
c8f5ae2
71179a9
65884ce
9c68e12
4c41fd4
6bac2e2
c41344e
0498eb0
097ff58
30ee6c2
e156b44
c6525e0
e9052be
528fb7d
e9f46e2
a511006
dbd424a
7cca5d3
7b1f48d
d6c8c4a
3db2e47
719224f
161838b
fed186e
39e8e38
f206ca2
cb8412b
ddf5730
ae5c30a
e07f9f6
7fd5d14
eb95338
0b5ef75
f0cf529
0f77939
dcf2317
574d273
7a86b9e
9c7ab13
2b653aa
8921f1c
ee6d515
97d1492
461c6ea
d8df9f7
4e15bf9
64c3179
cc69eda
d36b825
1f67feb
481ac16
6aeecf5
ada5cbd
2483bba
d445926
ea90ac4
8b9cbbb
aac86b2
6bb29d7
c07c6a1
7b54c86
6f20115
3c90352
3763331
9cbe003
a4866a0
c96e7a4
0594b7d
03471ee
c8a20f3
ecf54d1
73aaefa
de776e0
508d1a6
a20c3fc
5486bf7
3118931
764ff17
7c5daa5
d23f201
9452ce9
d3435fa
63e0e60
39cafd2
464b046
092013c
71ee567
ebc319e
e9b234a
9da226a
071fb74
b24a184
bf8f997
e8633f0
ce8d3e2
92c6d0b
e88da86
e1d82c2
17f9bc4
26898ab
67f3df2
b6b8570
4fc2d13
26497f9
e539500
82df60f
fc081a0
8da0d11
70cf9b0
04bcc74
76fc502
83e99c5
dac969a
66f82cd
4e95548
748db5a
5882d68
97efd33
bd148db
2b822e9
ff23197
eff293d
2b1359b
9f0116f
9be366c
7fb59f9
600164f
fd53cb0
4032e78
24bcb43
533be63
d94e53b
00c9eaa
f5c66a8
bcc186c
8d957da
dbde92d
14b0811
ab5a60a
94316b6
15aaa64
68c4bf5
8405427
4b0487a
3142060
8cc7a0b
faf79e6
6d7999b
3cac8e6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
"swarm_node_port" : "4000", | ||
"etcd_node_ip" : "10.100.1.10", | ||
"etcd_node_port" : "2379", | ||
"etcd_user" : "meteor", | ||
"etcd_pass" : "fff86d549374f03f4ba82bfe170b5018", | ||
"etcd_user" : "root", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aaron initializes this, no need for me to have any data, it'll be wrong anyway |
||
"etcd_pass" : "d8a1975ae8a6c0377d95d84736e419bb", | ||
"default_image" : "alpine", | ||
"mongo_log_url" : "ds025792.mlab.com:25792/tuxlab", | ||
"mongo_log_collection" : "logs" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
//secure keys are not defined, but may be implemented | ||
|
||
/** supported linux families for lab virtual machines | ||
* although instructors can pass system objects like the ones below, | ||
* no other os has been tested and may not function as expected | ||
* if the os_family field is not provided, all systems default to alpine | ||
*/ | ||
var os_families = { | ||
//alpine defaults to the tuxlab_labvm image | ||
alpine: { | ||
username: "root", | ||
password: "", | ||
key: "", | ||
os_family: "alpine", | ||
image: "tuxlab_labvm", | ||
ssh_port: 22 | ||
}, | ||
|
||
redhat: { | ||
username: "", | ||
password: "", | ||
key: "", | ||
os_family: "redhat", | ||
image: "" | ||
}, | ||
|
||
ubuntu: { | ||
username: "", | ||
password: "", | ||
key: "", | ||
os_family: "ubuntu", | ||
image: "ubuntu" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just delete "ubuntu" from the images section- it wouldn't work because SSH isn't enabled There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. kk |
||
}, | ||
|
||
debian: { | ||
username: "", | ||
password: "", | ||
key: "", | ||
os_family: "debian", | ||
image: "" | ||
}, | ||
|
||
arch: { | ||
username: "", | ||
password: "", | ||
key: "", | ||
os_family: "arch", | ||
image: "" | ||
} | ||
} | ||
|
||
module.exports = os_families; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already talked about this: I want an array of date objects indicating when the user attempted the task as opposed to just a number.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done