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. 04 Sep, 2021 2 commits
  2. 03 Sep, 2021 3 commits
  3. 02 Sep, 2021 2 commits
    • Isabel Suchanek's avatar
      events: fix wildcard namespace handling (#10935) · 1eea499b
      Isabel Suchanek authored
      This fixes a bug in the event stream API where it currently interprets
      namespace=* as an actual namespace, not a wildcard. When Nomad parses
      incoming requests, it sets namespace to default if not specified, which
      means the request namespace will never be an empty string, which is what
      the event subscription was checking for. This changes the conditional
      logic to check for a wildcard namespace instead of an empty one.
      
      It also updates some event tests to include the default namespace in the
      subscription to match current behavior.
      
      Fixes #10903
      1eea499b
    • Kevin Wang's avatar
      9ba1a2fb
  4. 01 Sep, 2021 4 commits
  5. 31 Aug, 2021 5 commits
  6. 30 Aug, 2021 5 commits
  7. 29 Aug, 2021 2 commits
  8. 27 Aug, 2021 3 commits
  9. 26 Aug, 2021 1 commit
  10. 25 Aug, 2021 5 commits
  11. 23 Aug, 2021 1 commit
    • Luiz Aoqui's avatar
      Don't timestamp active log file (#11070) · d74ab11d
      Luiz Aoqui authored
      * don't timestamp active log file
      
      * website: update log_file default value
      
      * changelog: add entry for #11070
      
      * website: add upgrade instructions for log_file in v1.14 and v1.2.0
      d74ab11d
  12. 21 Aug, 2021 1 commit
  13. 20 Aug, 2021 1 commit
    • Zachary Shilton's avatar
      Upgrade global styles (#10936) · 26e381f1
      Zachary Shilton authored
      * website: upgrade global-styles packages
      
      * website: upgrade community page
      
      * website: hide alert-banner on mobile
      
      * website: upgrade g-container to g-grid-container
      
      * website: update /security to use markdown-page
      
      * website: fix unsupported prop
      
      * website: fix incorrect github link in security page
      
      * website: bump to latest patched dependencies
      26e381f1
  14. 19 Aug, 2021 1 commit
  15. 18 Aug, 2021 3 commits
    • Mahmood Ali's avatar
      tests: attempt deflaking TestAutopilot_CleanupDeadServer · c66d2a41
      Mahmood Ali authored
      Attempt to deflake the test by avoiding shutting down the leaders, as leadership
      recovery takes more time, and consequently longer to process raft configuration
      changes and potentially failing the test.
      c66d2a41
    • Mahmood Ali's avatar
      tests: deflake TestLeader_LeftLeader · 794a08cc
      Mahmood Ali authored
      Wait for leadership to be established before killing leader.
      794a08cc
    • Mahmood Ali's avatar
      Consider all system jobs for a new node (#11054) · 327d461b
      Mahmood Ali authored
      When a node becomes ready, create an eval for all system jobs across
      namespaces.
      
      The previous code uses `job.ID` to deduplicate evals, but that ignores
      the job namespace. Thus if there are multiple jobs in different
      namespaces sharing the same ID/Name, only one will be considered for
      running in the new node. Thus, Nomad may skip running some system jobs
      in that node.
      327d461b
  16. 17 Aug, 2021 1 commit
    • Mahmood Ali's avatar
      e2e: Run system jobs on all datacenters (#11060) · 2bb03170
      Mahmood Ali authored
      Target all e2e datacenters for system and sysbatch e2e tests.  They
      require that the system jobs run on all linux clients.
      
      However, the jobs currenly only target `dc1` datacenter, but the nightly
      e2e cluster has 4 clients spread in `dc1` and `dc2` datacenters, causing
      the tests to fail.
      
      I missed this problem in e2e dev cluster because it only used a single
      dc1 datacenter.
      2bb03170