This project is mirrored from https://gitee.com/mirrors/nomad.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 26 Mar, 2017 1 commit
-
-
Alex Dadgar authored
Wrong shell variable used when changing directory
-
- 24 Mar, 2017 6 commits
-
-
Alex Dadgar authored
-
Alex Dadgar authored
-
Alex Dadgar authored
Fix panic when restarting non-running task
-
Alex Dadgar authored
-
Alex Dadgar authored
This PR fixes an issue that is hit when running templates with restart mode in which the client could panic when the handle is not running. Fixes https://github.com/hashicorp/nomad/issues/2479
-
Chris Spence authored
-
- 22 Mar, 2017 2 commits
-
-
Michael Schurter authored
Updated logo in README.md
-
Moritz Heiber authored
The logo file has been moved with [d9640776](https://github.com/hashicorp/nomad/commit/d96407769a4a33901b5de66b7053e08574428698) by @sethvargo. Hence the logo reference in the README.md is broken. This PR fixes that.
-
- 21 Mar, 2017 5 commits
-
-
Alex Dadgar authored
-
Alex Dadgar authored
Fix diff alignment and remove no change DC
-
Alex Dadgar authored
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" } } ```
-
Alex Dadgar authored
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" } } ```
-
Alex Dadgar authored
-
- 20 Mar, 2017 5 commits
-
-
Michael Schurter authored
Mention 0.5.5 tool incompat with 0.5.4 agents
-
Michael Schurter authored
-
Michael Schurter authored
Update index.html.md
-
sprutner authored
grammar
-
Alex Dadgar authored
ensuring bin directory exists before copying
-
- 18 Mar, 2017 1 commit
-
-
Lev Walkin authored
-
- 17 Mar, 2017 3 commits
-
-
Alex Dadgar authored
-
Michael Schurter authored
Mention #2361 in upgrade notes.
-
Michael Schurter authored
-
- 16 Mar, 2017 4 commits
-
-
Alex Dadgar authored
build: Add Vault as an external test dependency
-
Alex Dadgar authored
deps: Update github.com/shirou/gopsutil/...
-
Michael Schurter authored
Fix test deadlock due to alloc runner not running
-
Michael Schurter authored
Don't actualy call AllocRunner.Run() because that executes so much unneeded code for this test. Manually close the waitCh to simulate Run() exiting.
-
- 15 Mar, 2017 10 commits
-
-
James Nugent authored
This adds support for Illumos for memory and host information, which allows the fingerprinting tests to pass. It also contains fixes for FreeBSD.
-
Sean Chittenden authored
-
Alex Dadgar authored
-
Seth Vargo authored
Broken things fixed
-
Seth Vargo authored
-
Seth Vargo authored
-
Alex Dadgar authored
-
Alex Dadgar authored
-
Seth Vargo authored
-
Michael Schurter authored
-
- 14 Mar, 2017 3 commits
-
-
Alex Dadgar authored
-
Alex Dadgar authored
-
Alex Dadgar authored
-