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.
  1. 05 Dec, 2021 1 commit
  2. 04 Dec, 2021 1 commit
  3. 03 Dec, 2021 1 commit
  4. 02 Dec, 2021 3 commits
  5. 01 Dec, 2021 2 commits
  6. 30 Nov, 2021 4 commits
  7. 29 Nov, 2021 3 commits
  8. 26 Nov, 2021 2 commits
  9. 25 Nov, 2021 2 commits
  10. 24 Nov, 2021 18 commits
  11. 23 Nov, 2021 3 commits
    • Luiz Aoqui's avatar
    • James Rasell's avatar
      Merge pull request #11535 from hashicorp/docs-vault-token · 416b14ec
      James Rasell authored
      docs: clarify vault.token only required on servers
      416b14ec
    • James Rasell's avatar
      core: allow setting and propagation of eval priority on job de/registration (#11532) · 80dcae72
      James Rasell authored
      This change modifies the Nomad job register and deregister RPCs to
      accept an updated option set which includes eval priority. This
      param is optional and override the use of the job priority to set
      the eval priority.
      
      In order to ensure all evaluations as a result of the request use
      the same eval priority, the priority is shared to the
      allocReconciler and deploymentWatcher. This creates a new
      distinction between eval priority and job priority.
      
      The Nomad agent HTTP API has been modified to allow setting the
      eval priority on job update and delete. To keep consistency with
      the current v1 API, job update accepts this as a payload param;
      job delete accepts this as a query param.
      
      Any user supplied value is validated within the agent HTTP handler
      removing the need to pass invalid requests to the server.
      
      The register and deregister opts functions now all for setting
      the eval priority on requests.
      
      The chan...
      80dcae72