Commit Graph

6950 Commits

Author SHA1 Message Date
Alex Dadgar
9190866c8d Changelog 2017-03-24 12:25:34 -07:00
Michael Schurter
e2968ee53b Merge pull request #2468 from moritzheiber/master
Updated logo in README.md
2017-03-22 09:47:33 -07:00
Moritz Heiber
db03d98e8c Updated logo in README.md
The logo file has been moved with [d96407769a](d96407769a) by @sethvargo. Hence the logo reference in the README.md is broken. This PR fixes that.
2017-03-22 17:41:41 +01:00
Alex Dadgar
84789d4d07 Changelog 2017-03-21 12:54:14 -07:00
Alex Dadgar
2e472f636a Merge pull request #2465 from hashicorp/b-plan-diff
Fix diff alignment and remove no change DC
2017-03-21 12:53:18 -07:00
Alex Dadgar
c4435ee768 Fix diff alignment and remove no change DC
Old Output:
```
+/- Job: "example"
    Datacenters {
  Datacenters: "dc1"
}
+/- Task Group: "cache" (1 create/destroy update)
  +/- RestartPolicy {
    +/- Attempts: "10" => "9"
        Delay:    "25000000000"
        Interval: "300000000000"
        Mode:     "delay"
  }
  +/- EphemeralDisk {
        Migrate: "false"
    +/- SizeMB:  "300" => "301"
        Sticky:  "false"
  }
  +/- Task: "redis" (forces create/destroy update)
    +   Meta[key]: "value"
    +/- Config {
          image:           "redis:3.2"
      +/- port_map[0][db]: "6379" => "6380"
    }
    +/- Resources {
          CPU:      "500"
          DiskMB:   "0"
          IOPS:     "0"
      +/- MemoryMB: "256" => "257"
    }
    +/- Service {
          Name:      "global-redis-check"
          PortLabel: "db"
      +/- Check {
            Command:       ""
            InitialStatus: ""
            Interval:      "10000000000"
            Name:          "alive"
            Path:          ""
            PortLabel:     ""
            Protocol:      ""
        +/- Timeout:       "2000000000" => "3000000000"
            Type:          "tcp"
      }
    }
```

New Output:
```
+/- Job: "example"
+/- Task Group: "cache" (1 create/destroy update)
  +/- RestartPolicy {
    +/- Attempts: "10" => "9"
        Delay:    "25000000000"
        Interval: "300000000000"
        Mode:     "delay"
      }
  +/- EphemeralDisk {
        Migrate: "false"
    +/- SizeMB:  "300" => "301"
        Sticky:  "false"
      }
  +/- Task: "redis" (forces create/destroy update)
    +   Meta[key]: "value"
    +/- Config {
          image:           "redis:3.2"
      +/- port_map[0][db]: "6379" => "6380"
        }
    +/- Resources {
          CPU:      "500"
          DiskMB:   "0"
          IOPS:     "0"
      +/- MemoryMB: "256" => "257"
        }
    +/- Service {
          Name:      "global-redis-check"
          PortLabel: "db"
      +/- Check {
            Command:       ""
            InitialStatus: ""
            Interval:      "10000000000"
            Name:          "alive"
            Path:          ""
            PortLabel:     ""
            Protocol:      ""
        +/- Timeout:       "2000000000" => "3000000000"
            Type:          "tcp"
          }
        }
```
2017-03-21 11:42:10 -07:00
Alex Dadgar
456da65303 Fix output alignment and remove no-change DC
Old Output:

```
+/- Job: "example"
    Datacenters {
  Datacenters: "dc1"
}
+/- Task Group: "cache" (1 create/destroy update)
  +/- RestartPolicy {
    +/- Attempts: "10" => "9"
        Delay:    "25000000000"
        Interval: "300000000000"
        Mode:     "delay"
  }
  +/- EphemeralDisk {
        Migrate: "false"
    +/- SizeMB:  "300" => "301"
        Sticky:  "false"
  }
  +/- Task: "redis" (forces create/destroy update)
    +   Meta[key]: "value"
    +/- Config {
          image:           "redis:3.2"
      +/- port_map[0][db]: "6379" => "6380"
    }
    +/- Resources {
          CPU:      "500"
          DiskMB:   "0"
          IOPS:     "0"
      +/- MemoryMB: "256" => "257"
    }
    +/- Service {
          Name:      "global-redis-check"
          PortLabel: "db"
      +/- Check {
            Command:       ""
            InitialStatus: ""
            Interval:      "10000000000"
            Name:          "alive"
            Path:          ""
            PortLabel:     ""
            Protocol:      ""
        +/- Timeout:       "2000000000" => "3000000000"
            Type:          "tcp"
      }
    }
```

New Output:

```
+/- Job: "example"
+/- Task Group: "cache" (1 create/destroy update)
  +/- RestartPolicy {
    +/- Attempts: "10" => "9"
        Delay:    "25000000000"
        Interval: "300000000000"
        Mode:     "delay"
      }
  +/- EphemeralDisk {
        Migrate: "false"
    +/- SizeMB:  "300" => "301"
        Sticky:  "false"
      }
  +/- Task: "redis" (forces create/destroy update)
    +   Meta[key]: "value"
    +/- Config {
          image:           "redis:3.2"
      +/- port_map[0][db]: "6379" => "6380"
        }
    +/- Resources {
          CPU:      "500"
          DiskMB:   "0"
          IOPS:     "0"
      +/- MemoryMB: "256" => "257"
        }
    +/- Service {
          Name:      "global-redis-check"
          PortLabel: "db"
      +/- Check {
            Command:       ""
            InitialStatus: ""
            Interval:      "10000000000"
            Name:          "alive"
            Path:          ""
            PortLabel:     ""
            Protocol:      ""
        +/- Timeout:       "2000000000" => "3000000000"
            Type:          "tcp"
          }
        }
```
2017-03-21 11:31:06 -07:00
Alex Dadgar
4cac484ccf Version bump 2017-03-21 09:12:49 -07:00
Michael Schurter
a29de1a1fb Merge pull request #2462 from hashicorp/docs-0.5.5-upgrade
Mention 0.5.5 tool incompat with 0.5.4 agents
2017-03-20 16:55:25 -07:00
Michael Schurter
7630c3d793 Mention 0.5.5 tool incompat with 0.5.4 agents 2017-03-20 16:20:43 -07:00
Michael Schurter
7d97b8e0a9 Merge pull request #2459 from sprutner/patch-1
Update index.html.md
2017-03-20 13:50:43 -07:00
sprutner
8906a2bbc3 Update index.html.md
grammar
2017-03-20 13:48:04 -07:00
Alex Dadgar
7bea40a900 Merge pull request #2456 from vlm/master
ensuring bin directory exists before copying
2017-03-19 22:39:36 -07:00
Lev Walkin
fda40fada4 ensuring bin directory exists before copying 2017-03-17 17:23:15 -07:00
Alex Dadgar
3ab3b9592b changelog 2017-03-17 11:27:10 -07:00
Michael Schurter
e025a1c1c0 Merge pull request #2455 from hashicorp/doc-load-upgrade
Mention #2361 in upgrade notes.
2017-03-17 10:52:44 -07:00
Michael Schurter
5f9b224caa Mention #2361 in upgrade notes. 2017-03-17 09:52:18 -07:00
Alex Dadgar
1a31cf15ed Merge pull request #2442 from jen20/deps-test-vault
build: Add Vault as an external test dependency
2017-03-16 15:10:05 -07:00
Alex Dadgar
ff9dffe960 Merge pull request #2452 from jen20/deps-update-gopsutil
deps: Update github.com/shirou/gopsutil/...
2017-03-16 15:09:22 -07:00
Michael Schurter
081a5e1377 Merge pull request #2454 from hashicorp/b-fix-gc-test
Fix test deadlock due to alloc runner not running
2017-03-16 14:34:04 -07:00
Michael Schurter
ca7a931492 Fix test deadlock due to alloc runner not running
Don't actualy call AllocRunner.Run() because that executes so much
unneeded code for this test. Manually close the waitCh to simulate Run()
exiting.
2017-03-16 13:22:08 -07:00
James Nugent
129e02e87f deps: Update github.com/shirou/gopsutil/...
This adds support for Illumos for memory and host information, which
allows the fingerprinting tests to pass. It also contains fixes for
FreeBSD.
2017-03-15 18:18:39 -05:00
Sean Chittenden
74a7e42f62 Tweak docs to note that a port will wire up both a TCP and UDP port. 2017-03-15 16:10:01 -07:00
Alex Dadgar
b21761344d Update the vault config on website 2017-03-15 16:08:15 -07:00
Seth Vargo
cad18c3bd3 Merge pull request #2450 from hashicorp/sethvargo/sizing
Broken things fixed
2017-03-15 15:13:08 -07:00
Seth Vargo
0fbf94b749 Update container 2017-03-15 14:39:35 -07:00
Seth Vargo
dca6cdb8e4 Fix monospace font size 2017-03-15 14:17:02 -07:00
Alex Dadgar
e943b953c1 Merge branch 'master' of github.com:hashicorp/nomad 2017-03-15 11:30:28 -07:00
Alex Dadgar
6d74650c96 Fix some website stuff 2017-03-15 11:29:36 -07:00
Seth Vargo
d96407769a Add header links 2017-03-14 18:56:42 -07:00
Michael Schurter
693d89d51c Fix test by adding new env vars 2017-03-14 17:15:12 -07:00
Alex Dadgar
0e61a36564 return the recoverable err 2017-03-14 16:33:36 -07:00
Alex Dadgar
c579f6163f Fix tests that exec nomad 2017-03-14 16:04:33 -07:00
Alex Dadgar
103290a39e Release v0.5.5 2017-03-14 14:57:30 -07:00
Alex Dadgar
2c0d9a9a28 Bump version 2017-03-14 14:51:11 -07:00
Alex Dadgar
6ac999a5e5 Flush logs on err 2017-03-14 14:48:39 -07:00
Alex Dadgar
bfebe1afdc rename cpu_total_compute and docs 2017-03-14 14:15:49 -07:00
Alex Dadgar
1cafa19d00 changelog 2017-03-14 13:59:02 -07:00
Alex Dadgar
d09c278a3a Merge pull request #2447 from hashicorp/f-arm-misc
F arm misc
2017-03-14 13:58:03 -07:00
Alex Dadgar
a6067d5667 Docker doesn't need to init the stats helper 2017-03-14 13:41:57 -07:00
Alex Dadgar
36dc330737 Various fixes
This PR:
* Uses Go 1.8 executable lookup
* Stores any err message from stats init method
* Allows overriding of Cpu Compute for hosts where it can't be detected
2017-03-14 12:56:31 -07:00
Michael Schurter
34ab77a636 Fix overriding build targets 2017-03-14 10:47:29 -07:00
Alex Dadgar
44b2bf846c changelog 2017-03-14 10:46:20 -07:00
Alex Dadgar
97a4e136a6 Merge pull request #2427 from hashicorp/f-gc-limit
Limit parallelism during garbage collection
2017-03-14 10:45:29 -07:00
Alex Dadgar
38ebed5e0e Review fixes 2017-03-14 10:45:15 -07:00
Michael Schurter
7605d9a406 Merge pull request #2408 from hashicorp/b-2358-rkt-volume-name
Replace `_` with `-` in task names for rkt volumes
2017-03-14 10:10:00 -07:00
Alex Dadgar
300f802d6c Merge pull request #2434 from hashicorp/f-skip-inplace-terminal-batch
Skip inplace update on terminal batch allocation
2017-03-14 10:06:58 -07:00
Michael Schurter
cf7c623317 Merge pull request #2446 from jippi/patch-2
Fix #2445
2017-03-14 09:15:30 -07:00
Christian Winther
7aed171038 Fix #2445
Close #2445 - typo in docs
2017-03-14 10:12:48 +01:00
Michael Schurter
f5c4f9e8c3 Windows wasn't fixed -- see #2343 for updates 2017-03-13 18:22:05 -07:00