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. 01 Jul, 2022 2 commits
  2. 14 Jun, 2022 1 commit
    • Luiz Aoqui's avatar
      docs: create volume spec page (#13353) · 3737fb3c
      Luiz Aoqui authored
      
      In addition to jobs, there are other objects in Nomad that have a
      specific format and can be provided to commands and API endpoints.
      
      This commit creates a new menu section to hold the specification for
      volumes and update the command pages to point to the new centralized
      definition.
      
      Redirecting the previous entries is not possible with `redirect.js`
      because they are done server-side and URL fragments are not accessible
      to detect a match. So we provide hidden anchors with a link to the new
      page to guide users towards the new documentation.
      Co-authored-by: default avatarTim Gross <tgross@hashicorp.com>
      3737fb3c
  3. 06 Jun, 2022 1 commit
  4. 12 May, 2022 1 commit
  5. 06 Apr, 2022 1 commit
  6. 01 Mar, 2022 1 commit
  7. 26 Feb, 2022 1 commit
  8. 24 Feb, 2022 1 commit
  9. 09 Feb, 2022 1 commit
  10. 16 Dec, 2021 1 commit
  11. 15 Dec, 2021 1 commit
    • Tim Gross's avatar
      `nomad eval list` command (#11675) · 97621ec3
      Tim Gross authored
      Use the new filtering and pagination capabilities of the `Eval.List`
      RPC to provide filtering and pagination at the command line.
      
      Also includes note that `nomad eval status -json` is deprecated and
      will be replaced with a single evaluation view in a future version of
      Nomad.
      97621ec3
  12. 09 Dec, 2021 1 commit
  13. 07 Dec, 2021 1 commit
  14. 24 Nov, 2021 2 commits
  15. 26 Oct, 2021 1 commit
  16. 12 Oct, 2021 1 commit
  17. 06 Oct, 2021 1 commit
  18. 29 Sep, 2021 1 commit
  19. 02 Aug, 2021 1 commit
  20. 27 May, 2021 1 commit
  21. 13 May, 2021 1 commit
  22. 07 May, 2021 1 commit
  23. 28 Apr, 2021 1 commit
  24. 23 Apr, 2021 1 commit
  25. 16 Apr, 2021 1 commit
    • Seth Hoenig's avatar
      api: implement fuzzy search API · 350d9ebc
      Seth Hoenig authored
      This PR introduces the /v1/search/fuzzy API endpoint, used for fuzzy
      searching objects in Nomad. The fuzzy search endpoint routes requests
      to the Nomad Server leader, which implements the Search.FuzzySearch RPC
      method.
      
      Requests to the fuzzy search API are based on the api.FuzzySearchRequest
      object, e.g.
      
      {
        "Text": "ed",
        "Context": "all"
      }
      
      Responses from the fuzzy search API are based on the api.FuzzySearchResponse
      object, e.g.
      
      {
        "Index": 27,
        "KnownLeader": true,
        "LastContact": 0,
        "Matches": {
          "tasks": [
            {
              "ID": "redis",
              "Scope": [
                "default",
                "example",
                "cache"
              ]
            }
          ],
          "evals": [],
          "deployment": [],
          "volumes": [],
          "scaling_policy": [],
          "images": [
            {
              "ID": "redis:3.2",
              "Scope": [
                "default",
                "example",
                "cache",
                "redis"
              ]
            }
          ]
        },
        "Truncations": {
          "volumes": false,
          "scaling_policy": false,
          "evals": false,
          "deployment": false
        }
      }
      
      The API is tunable using the new server.search stanza, e.g.
      
      server {
        search {
          fuzzy_enabled   = true
          limit_query     = 200
          limit_results   = 1000
          min_term_length = 5
        }
      }
      
      These values can be increased or decreased, so as to provide more
      search results or to reduce load on the Nomad Server. The fuzzy search
      API can be disabled entirely by setting `fuzzy_enabled` to `false`.
      350d9ebc
  26. 14 Apr, 2021 1 commit
  27. 01 Apr, 2021 2 commits
  28. 31 Mar, 2021 3 commits