Seth Hoenig
db524627b5
Merge pull request #10532 from hashicorp/docs-fixup-dc-region-arch-words-10515
...
docs: fixup wording around datacenters and regions on architecture docs
2021-05-07 09:02:43 -06:00
Mahmood Ali
cada70dd91
annotate 1.1 beta fields
2021-05-07 10:21:16 -04:00
Mahmood Ali
1bca427855
Remove a stale note about 0.9 scheduler config
2021-05-07 10:21:16 -04:00
Mike Nomitch
1df61f9c7e
Moving licensing to the top of the upgrade guide and clarifying wording
2021-05-07 08:17:17 -04:00
Mike Nomitch
d5276c63ff
website: adding trial links
2021-05-07 08:17:17 -04:00
Seth Hoenig
a4b22fe8d2
docs: fixup wording around datacenters and regions on architecture docs
...
Part of #10515
2021-05-06 16:18:02 -06:00
Buck Doyle
9dcd53685a
docs: Fix missing link to operator debug ( #10523 )
2021-05-06 11:29:41 -05:00
Mahmood Ali
fcfa5782d2
expose NOMAD_MEMORY_MAX_LIMIT env var ( #10514 )
...
Follow up to memory oversubscription - expose an env-var to indicate when memory oversubscription is enabled and what the limit is.
This will be helpful for setting hints to app for memory management.
Co-authored-by: Seth Hoenig <shoenig@hashicorp.com >
2021-05-05 12:09:56 -04:00
Nick Ethier
b72928c9cb
website: reserved cores docs
2021-05-05 08:11:41 -04:00
Drew Bailey
1907b8a828
remove license put command references ( #10501 )
2021-05-04 08:39:56 -04:00
Charlie Voiselle
336809f81b
Adding environment variables to Command overview page
2021-05-03 08:12:45 -04:00
Andy Assareh
9fac5a6c93
git example - suggest providing real repo
...
when troubleshooting it is better if this command will actually work (pointing to a real repository)
2021-05-03 08:12:10 -04:00
Mahmood Ali
de1e91987c
Docs memory oversubscription ( #10478 )
...
* update docs
* document memory_oversubscription_enabled scheduler config
2021-04-30 14:07:56 -04:00
Tim Gross
88f1556279
docs: remove API doc for license PUT
2021-04-30 10:39:21 -04:00
Luiz Aoqui
ad956385f7
docs: add FAQ for Docker Desktop for Windows and MacOS ( #10390 )
...
* docs: add FAQ for Docker Desktop for Windows and MacOS
* docs: add win
* docs: add docker desktop note to docker driver page
2021-04-29 19:53:12 -04:00
Luiz Aoqui
c7114921fa
Add metrics for blocked eval resources ( #10454 )
...
* add metrics for blocked eval resources
* docs: add new blocked_evals metrics
* fix to call `pruneStats` instead of `stats.prune` directly
2021-04-29 15:03:45 -04:00
Tim Gross
638a0daa1b
docs: Enterprise licensing updates
2021-04-28 14:46:06 -04:00
catinthetap
3e95f23250
docs: update filesystem.mdx to fix typo
2021-04-28 08:11:05 -04:00
Marcus Naughton
e2434d3527
Update libraries-and-sdks.mdx
2021-04-27 16:34:55 -04:00
James Rasell
89278678ab
docs: add detail on launching autoscaler external plugins.
2021-04-26 11:19:15 +02:00
kphunter
33db50e0ad
Fix path tip
2021-04-23 22:03:53 -07:00
Luiz Aoqui
19d58ce4fc
docs: reorganize autoscaling agent config ( #10383 )
2021-04-23 09:53:58 -04:00
changli0617
f7437800eb
Small typo fixes ( #10427 )
...
Co-authored-by: Charlie Voiselle <464492+angrycub@users.noreply.github.com >
2021-04-22 12:16:21 -07:00
changli0617
b3a398392b
Merge pull request #10384 from hashicorp/mw.partnership-page
...
website: add partnerships page
2021-04-22 11:38:05 -07:00
changli0617
d1360f3ed3
Update partnerships.mdx
2021-04-21 15:20:04 -07:00
Buck Doyle
0d058e5110
docs: Fix minor fuzzy search things ( #10423 )
2021-04-21 14:55:17 -05:00
James Rasell
bc61222645
Merge pull request #10409 from hashicorp/f-docs-gh-10406
...
docs: update autoscaler target plugins to include datacenter field.
2021-04-21 10:15:45 +02:00
Charlie Voiselle
19773e469d
Enable go-sockaddr templating for network-interface ( #10404 )
...
Add templating to `network-interface` option.
This PR also adds a fast-fail to in the case where an invalid interface is set or produced by the template
* add tests and check for valid interface
* Add documentation
* Incorporate suggestions from code review
Co-authored-by: Luiz Aoqui <luiz@hashicorp.com >
2021-04-20 13:55:10 -04:00
Seth Hoenig
ec73d7eb26
Merge pull request #10184 from hashicorp/f-fuzzy-search
...
api: implement fuzzy search API
2021-04-20 09:06:40 -06:00
James Rasell
35d89d2f80
docs: update autoscaler target plugins to include datacenter field.
2021-04-20 14:01:19 +02:00
Johan Siebens
46131fb8ed
website: added digitalocean droplets plugin to community plugins index
2021-04-20 10:25:21 +02:00
Seth Hoenig
068fd431ad
api: fuzzy search results include job name with id in scope
2021-04-16 17:03:36 -06:00
Seth Hoenig
350d9ebc40
api: implement fuzzy search API
...
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`.
2021-04-16 16:36:07 -06:00
Shishir Mahajan
671c0ed515
Update containerd task driver options.
...
- image_pull_timeout
- pids_limit
- sysctl
2021-04-16 13:18:33 -04:00
Tim Gross
ee9bb3cc4f
docs: changelog and upgrade note for iptables improvement
2021-04-15 10:19:37 -04:00
changli0617
f14edbd549
Update partnerships.mdx
...
Need help to resize the ecosystem diagram.
2021-04-14 22:22:35 -07:00
Mike Wickett
c9baa3b61f
website: stub in partnerships page
2021-04-14 19:55:45 -04:00
Nick Spain
8797e33438
Fix indentation of service check API documentation
2021-04-13 09:15:35 -04:00
Nick Spain
5cae8f1d84
Document usage of 'body' field
2021-04-13 09:15:35 -04:00
Michael Schurter
e35c5b5b80
docs: clarify alloc signal behavior
...
The API docs don't make it immediately clear that the alloc signal API signals *all* tasks in an allocation if the `Task` parameter is omitted. You have to dig all the way down into the alloc runner to discover that behavior: https://github.com/hashicorp/nomad/blob/v1.0.4/client/allocrunner/alloc_runner.go#L1189-L1213
2021-04-09 12:57:19 -07:00
Tim Gross
f167e90ca5
docs: clean up explanation of volume per_alloc
2021-04-09 11:32:00 -04:00
Tim Gross
7681be1ccf
CSI: API docs for create and snapshot workflows
2021-04-09 09:49:06 -04:00
Mark Lodato
fa8b43b1b6
Fix typo in general options documentation
...
There was a small typo of "namespacecs" instead of "namespaces"
2021-04-09 09:44:48 -04:00
Tim Gross
45f0a3a532
CSI: capability block is required for volume registration
2021-04-08 13:02:24 -04:00
Luiz Aoqui
9d067de784
docs: add missing nomad job run CLI flags ( #10277 )
2021-04-07 12:07:33 -04:00
Tim Gross
73c95a92b0
docs: update CSI create/register fields
...
Add new `access_mode`/`attachment_mode` fields. Make it more clear which set
of fields belong to create vs register. Update the example spec that's
generated by `volume init`.
2021-04-07 11:24:09 -04:00
Luiz Aoqui
6caee502bf
docs: add empty_ignore_system node selector strategy for autoscaling ( #10306 )
2021-04-06 13:02:56 -04:00
Michael Lange
e99d5a86e6
Fix the broken link in the bootstrapping custom scheduler warning
2021-04-05 14:27:22 -07:00
Drew Bailey
af00546d2d
allow setting stale flag from cli to retrieve individual server license ( #10300 )
2021-04-05 15:35:14 -04:00
Seth Hoenig
2922839fff
docs: apply suggestions from code review
...
Co-authored-by: Tim Gross <tgross@hashicorp.com >
2021-04-05 10:03:19 -06:00