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 Nov, 2019 8 commits
-
-
Mahmood Ali authored
along with logic [ci skip]
-
Michael Schurter authored
client: fix use of T.Fatalf() in test goroutine
-
Tim Gross authored
* fix plugin launcher SetConfig msgpack params The plugin launcher tool was passing the wrong byte array into `SetConfig`, resulting in msgpack decoding errors. This was fixed in a9490506 (#6725) but accidentally reverted in 6aff18dc (#6590). Co-Authored-By:
Chris Baker <1675087+cgbaker@users.noreply.github.com>
-
Mahmood Ali authored
Fix demo vagrant provision hung when libssl asks for confirmation
-
Mahmood Ali authored
acl_endpoint: permission denied for unauthenticated requests
-
Mahmood Ali authored
apply `s/requestAuthToken/requestACLToken/g`
-
Tim Gross authored
Extends the BasicAllocStats test to include a test for Windows clients, exercising stats via a powershell `raw_exec` job. Adds `ListLinuxClientNodes` and `ListWindowsClientNodes` utils so that we can scope tests to run only when Linux or Windows clients are available. This prevents waiting on timeouts when running a subset of the tests against a development cluster (vs our nightly test cluster).
-
Lars Lehtonen authored
-
- 25 Nov, 2019 7 commits
-
-
Lang Martin authored
-
Charlie Voiselle authored
Migrating the Load-balancing guides to Nomad
-
Mahmood Ali authored
e2e/cli/command: close after error handling
-
Lars Lehtonen authored
-
Tim Gross authored
-
Tim Gross authored
* Adds a constraint to prevent tests from landing on Windows * Improve Terraform output for mixed windows/linux clients * Makes some Windows client config fixes from 0.10.2 testing
-
Mahmood Ali authored
tests: deflake TestHTTP_FreshClientAllocMetrics
-
- 24 Nov, 2019 1 commit
-
-
Ruslan Stelmachenko authored
The provision shell script tries to install libssl1.1 package as dependency of ca-certificates package. The installing of libssl requires to restart some services, and it asks for confirmation of this. But there are no interactive session at this stage, so Vagrant provisioning just hungs. This commit add a `libraries/restart-without-asking boolean true` setting before installing libssl, so it doesn't ask confirmation anymore and the provisioning works again.
-
- 22 Nov, 2019 24 commits
-
-
Mahmood Ali authored
The test asserts that alloc counts get reported accurately in metrics by inspecting the metrics endpoint directly. Sadly, the metrics as collected by `armon/go-metrics` seem to be stateful and may contain info from other tests. This means that the test can fail depending on the order of returned metrics. Inspecting the metrics output of one failing run, you can see the duplicate guage entries but for different node_ids: ``` { "Name": "service-name.default-0a3ba4b6-2109-485e-be74-6864228aed3d.client.allocations.terminal", "Value": 10, "Labels": { "datacenter": "dc1", "node_class": "none", "node_id": "67402bf4-00f3-bd8d-9fa8-f4d1924a892a" } }, { "Name": "service-name.default-0a3ba4b6-2109-485e-be74-6864228aed3d.client.allocations.terminal", "Value": 0, "Labels": { "datacenter": "dc1", "node_class": "none", "node_id": "a2945b48-7e66-68e2-c922-49b20dd4e20c" } }, ```
-
Mahmood Ali authored
Further tweaks to CircleCI build scripts
-
Mahmood Ali authored
This speeds up building and pushing releases
-
Charlie Voiselle authored
-
Mahmood Ali authored
-
Charlie Voiselle authored
-
Charlie Voiselle authored
Added redirects and stub-ified the index page
-
Michael Schurter authored
docs: update connect limitations
-
Mahmood Ali authored
docs: address more GH-6762 review comments
-
Mahmood Ali authored
Incorporate suggestions in https://github.com/hashicorp/nomad/pull/6762#pullrequestreview-321716747 [ci skip]
-
Michael Schurter authored
-
Mahmood Ali authored
document docker dangling container reaper
-
Mahmood Ali authored
-
Mahmood Ali authored
Co-Authored-By:
Michael Schurter <mschurter@hashicorp.com>
-
Mahmood Ali authored
-
Mahmood Ali authored
Skip running backend and UI changes for docs/website updates, as indicated by branch name.
-
Mahmood Ali authored
-
Mahmood Ali authored
drivers: always initialize taskHandle.logger
-
Mahmood Ali authored
[ci skip]
-
Mahmood Ali authored
Looks like the RecoverTask doesn't set taskHandle.logger field causing a panic when the handle attempts to log (e.g. when Shutdown or Signaling fails).
-
Mahmood Ali authored
-
Mahmood Ali authored
If ACL Request is unauthenticated, we should honor the anonymous token. This PR makes few changes: * `GetPolicy` endpoints may return policy if anonymous policy allows it, or return permission denied otherwise. * `ListPolicies` returns an empty policy list, or one with anonymous policy if one exists. Without this PR, the we return an incomprehensible error. Before: ``` $ curl http://localhost:4646/v1/acl/policy/doesntexist; echo acl token lookup failed: index error: UUID must be 36 characters $ curl http://localhost:4646/v1/acl/policies; echo acl token lookup failed: index error: UUID must be 36 characters ``` After: ``` $ curl http://localhost:4646/v1/acl/policy/doesntexist; echo Permission denied $ curl http://localhost:4646/v1/acl/policies; echo [] ```
-
Chris Baker authored
cherry-pick: device plugin authoring guide
-
Chris Baker authored
added the device plugin authoring guide, made minor formatting changes to task driver plugin authoring guide.
-