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. 14 Jul, 2021 11 commits
  2. 13 Jul, 2021 4 commits
  3. 12 Jul, 2021 4 commits
  4. 11 Jul, 2021 2 commits
  5. 09 Jul, 2021 5 commits
    • Seth Hoenig's avatar
      consul/connect: fix bug causing high cpu with multiple connect sidecars in group · ee7d32fb
      Seth Hoenig authored
      This PR fixes a bug where the underlying Envoy process of a Connect gateway
      would consume a full core of CPU if there is more than one sidecar or gateway
      in a group. The utilization was being caused by Consul injecting an envoy_ready_listener
      on 127.0.0.1:8443, of which only one of the Envoys would be able to bind to.
      The others would spin in a hot loop trying to bind the listener.
      
      As a workaround, we now specify -address during the Envoy bootstrap config
      step, which is how Consul maps this ready listener. Because there is already
      the envoy_admin_listener, and we need to continue supporting running gateways
      in host networking mode, and in those case we want to use the same port
      value coming from the service.port field, we now bind the admin listener to
      the 127.0.0.2 loop-back interface, and the ready listener takes 127.0.0.1.
      
      This shouldn't make a difference in the 99.999% use case where envoy is
      being run in its official d...
      ee7d32fb
    • Zachary Shilton's avatar
      c4e03557
    • Mike Nomitch's avatar
      9235c790
    • Mahmood Ali's avatar
      e2e: use -detach mode when registering jobs with cli (#10877) · 8d1a6ea1
      Mahmood Ali authored
      Pick up 15d39f0d but for RegisterFromJobspec:
      
      >  This PR changes the e2e helper thingy to set -detach option
      >  when registering a job with the CLI instead of the API. This is
      >  necessary for jobs which never become healthy, as the deployment
      >  never finishes for failing jobs and the command never returns,
      >  causing the test to timeout after 10 minutes.
      
      This case occurs in TestVaultSecrets
      8d1a6ea1
    • Shishir's avatar
      Containerd task driver options. (#10878) · 24f88398
      Shishir authored
      
      - Auth support via driver config
      - pid_mode
      - shm_size
      Signed-off-by: default avatarShishir Mahajan <smahajan@roblox.com>
      24f88398
  6. 08 Jul, 2021 14 commits