Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Change awsImage and qemuMemory defaults values #316

Merged
merged 1 commit into from
Oct 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ MACHINES=[{"name": "My Machine", "type": "manual", "ip": "1.2.3.4", "username":
- awsSecretAccessKey AWS private key
- awsKeyName private key name
- awsPrivateKey (Defaults to /opt/back/id_rsa) path to where the key will be stored
- awsImage (Defaults to ami-09e61366) Nanocloud's execution servers default image)
- awsImage Nanocloud's execution servers default image
- awsFlavor (Defaults to t2.medium) size of virtual machines
- awsMachineUsername (Defaults to Administrator) administrator account on the machine
- awsMachinePassword (Defaults to empty string, will be generated if possible) administrator password on the machine
Expand All @@ -105,7 +105,7 @@ MACHINES=[{"name": "My Machine", "type": "manual", "ip": "1.2.3.4", "username":

- qemuServiceURL (Default to localhost) url of qemu manager service
- qemuServicePort (Default to 3000) port of qemu manager service
- qemuMemory (Default to 4096) memory to allocate to your VMs in MB
- qemuMemory (Default to 2048) memory to allocate to your VMs in MB
- qemuCPU (Default to 2) number of vCPU to allocate to your VMs
- qemuMachineUsername (Defaults to Administrator) windows account username
- qemuMachinePassword (Defaults empty) windows account password
Expand Down
4 changes: 2 additions & 2 deletions config/env/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module.exports = {
awsRegion: '',
awsKeyName: '',
awsPrivateKey: '/opt/back/id_rsa',
awsImage: 'ami-09e61366',
awsImage: '',
awsFlavor: 't2.medium',
awsMachineUsername: 'Administrator',
awsMachinePassword: '',
Expand All @@ -115,7 +115,7 @@ module.exports = {

qemuServiceURL: 'localhost',
qemuServicePort: 3000,
qemuMemory: '4096',
qemuMemory: '2048',
qemuCPU: '2',
qemuMachineUsername: 'Administrator',
qemuMachinePassword: ''
Expand Down