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. 24 Aug, 2020 1 commit
  2. 23 Aug, 2020 3 commits
  3. 21 Aug, 2020 1 commit
    • Seth Hoenig's avatar
      consul/connect: add initial support for ingress gateways · 9ffdeed9
      Seth Hoenig authored
      This PR adds initial support for running Consul Connect Ingress Gateways (CIGs) in Nomad. These gateways are declared as part of a task group level service definition within the connect stanza.
      
      ```hcl
      service {
        connect {
          gateway {
            proxy {
              // envoy proxy configuration
            }
            ingress {
              // ingress-gateway configuration entry
            }
          }
        }
      }
      ```
      
      A gateway can be run in `bridge` or `host` networking mode, with the caveat that host networking necessitates manually specifying the Envoy admin listener (which cannot be disabled) via the service port value.
      
      Currently Envoy is the only supported gateway implementation in Consul, and Nomad only supports running Envoy as a gateway using the docker driver.
      
      Aims to address #8294 and tangentially #8647
      9ffdeed9
  4. 19 Aug, 2020 1 commit
  5. 11 Aug, 2020 1 commit
  6. 07 Aug, 2020 1 commit
    • Seth Hoenig's avatar
      deps: upgrade import of consul/api · 7bdbef25
      Seth Hoenig authored
      Upgrade our consul/api import to the equivelent of consul@v1.8.1 which includes
      a bug fix necessary for #6913. If consul would publish a proper api/ submodule tag
      we could reference that.
      7bdbef25
  7. 01 Jul, 2020 1 commit
  8. 22 Jun, 2020 2 commits
  9. 19 Jun, 2020 1 commit
  10. 18 Jun, 2020 1 commit
  11. 04 Jun, 2020 2 commits
  12. 03 Jun, 2020 1 commit
  13. 02 Jun, 2020 1 commit
    • Seth Hoenig's avatar
      deps: Switch to Go modules for dependency management · 15fb4c99
      Seth Hoenig authored
      This PR switches the Nomad repository from using govendor to Go modules
      for managing dependencies. Aspects of the Nomad workflow remain pretty
      much the same. The usual Makefile targets should continue to work as
      they always did. The API submodule simply defers to the parent Nomad
      version on the repository, keeping the semantics of API versioning that
      currently exists.
      15fb4c99