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
Seth Hoenig
a97254fa20
consul: plubming for specifying consul namespace in job/group
...
This PR adds the common OSS changes for adding support for Consul Namespaces,
which is going to be a Nomad Enterprise feature. There is no new functionality
provided by this changeset and hopefully no new bugs.
2021-04-05 10:03:19 -06:00
James Rasell
442d640704
docs: add fixed-value and pass-through autoscaler plugin docs. ( #10278 )
...
docs: add fixed-value and pass-through autoscaler plugin docs.
2021-04-01 16:11:37 -04:00
Luiz Aoqui
71d5d17d7d
Merge pull request #10199 from hashicorp/docs-update-autoscaling-aws-permission
...
docs: Update AWS permission requirements for the Autoscaler
2021-04-01 16:10:28 -04:00
Luiz Aoqui
eff770046d
Merge pull request #10183 from hashicorp/docs-autoscaling-policy-eval-cli
...
docs: add Autoscaler CLI flags for policy eval configuration
2021-04-01 16:10:01 -04:00
Tim Gross
730c22656b
CSI: volume snapshot
2021-04-01 11:16:52 -04:00
James Rasell
169579369f
docs: add autoscaling docs to detail node selector strategy feat.
2021-04-01 08:47:16 +02:00
Tim Gross
2a4d075522
docs: CLI commands for volume create/delete
2021-03-31 16:37:09 -04:00
Drew Bailey
9f0a4d4964
Docs/licensing reference docs ( #10260 )
...
* add a license docs page
* license reference docs
* update wording
* use new docs-nav
* rm file held over from rebase, fix path
2021-03-31 10:24:27 -04:00
Bryce Kalow
ee79587a67
feat(website): migrates to new nav data format ( #10264 )
2021-03-31 08:43:17 -05:00
Seth Hoenig
7da9ece876
Merge pull request #10243 from apollo13/issue10239
...
Automatically populate `CONSUL_HTTP_ADDR` for connect native tasks in host networking mode.
2021-03-30 09:00:17 -05:00