Rolled back documentation change in favor of correcting the default

This commit is contained in:
Charlie Voiselle
2017-11-07 17:17:49 -05:00
parent 264d999b8b
commit 7c98e466fc
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ func (r *Resources) Canonicalize() {
r.CPU = helper.IntToPtr(100)
}
if r.MemoryMB == nil {
r.MemoryMB = helper.IntToPtr(10)
r.MemoryMB = helper.IntToPtr(300)
}
if r.IOPS == nil {
r.IOPS = helper.IntToPtr(0)

View File

@@ -49,7 +49,7 @@ job "docs" {
- `iops` `(int: 0)` - Specifies the number of IOPS required given as a weight
between 0-1000.
- `memory` `(int: 10)` - Specifies the memory required in MB
- `memory` `(int: 300)` - Specifies the memory required in MB
- `network` <code>([Network][]: <required>)</code> - Specifies the network
requirements, including static and dynamic port allocations.