Skip to content

Commit

Permalink
Change awsImage and qemuMemory defaults values
Browse files Browse the repository at this point in the history
  • Loading branch information
Leblantoine committed Oct 3, 2016
1 parent 1107647 commit 70abdd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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 (Defaults to empty string) 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

0 comments on commit 70abdd5

Please # to comment.