Tyler Ryan
af3d20b1bd
Add documentation for Serf member telemetry metrics
2019-05-01 15:35:52 -06:00
R.B. Boyer
c649243f7c
docs: add documentation for all secure acl introduction work ( #5640 )
2019-05-01 16:11:23 -05:00
Kyle Havlovitz
7b16fe3436
Config Entry docs ( #5734 )
...
* Add api docs for the config entry endpoints
* Add enable_central_service_config field to agent docs
* Add docs for config entry CLI operations
* Fix wording and links in config entry docs
* Add links to the central service config option
* Update the central service config setting description.
2019-05-01 11:21:11 -07:00
Matt Keeler
f665695b6b
Ensure ServiceName is populated correctly for agent service checks
...
Also update some snapshot agent docs
* Enforce correct permissions when registering a check
Previously we had attempted to enforce service:write for a check associated with a service instead of node:write on the agent but due to how we decoded the health check from the request it would never do it properly. This commit fixes that.
* Update website/source/docs/commands/snapshot/agent.html.markdown.erb
Co-Authored-By: mkeeler <mkeeler@users.noreply.github.com>
2019-04-30 19:00:57 -04:00
Paul Banks
90c83e64ec
fix agent in connect docs
2019-04-30 12:59:37 -06:00
Alvin Huang
b5d2de1727
fix redirects for acl-migrate-tokens ( #5749 )
2019-04-30 13:28:58 -04:00
kaitlincarter-hc
626392eb62
[docs] Fixing API broken links ( #5732 )
...
* starting broken link fixes
* Updating the other links for ACLs
* Updating the rest of the links
* fixing acl required links.
* update a bunch of other links
* updated a couple more broken links based on Alvins checker
* removed the extra s
2019-04-30 12:20:51 -05:00
Matt Keeler
4daa1585b0
ACL Token ID Initialization ( #5307 )
2019-04-30 11:45:36 -04:00
Matt Keeler
f67e12eb6f
Enabling "service" watch handler to accept a slice of tags
...
Originally from PR #5347
2019-04-29 15:28:01 -04:00
Matt Keeler
15e80e4e76
Implement bootstrapping proxy defaults from the config file ( #5714 )
2019-04-26 14:25:03 -04:00
Tyler Ryan
cf14e0c2ac
fixing inconsitencies in agent/connect API documentation ( #5715 )
2019-04-26 12:53:20 +01:00
R.B. Boyer
cf8b76b2e5
docs: fix some minor acl related typos ( #5711 )
2019-04-25 12:24:28 -05:00
Alvin Huang
abdd8a294c
fix sidebar for install ( #5611 )
2019-04-25 12:30:35 -04:00
Alvin Huang
05946afa0c
Add website analytics back ( #5699 )
...
* add website analytics to build
* add segment analytics env var check
2019-04-25 12:24:20 -04:00
Freddy
3fe3b3e6dc
Clarify -log-rotate-duration string format and default value
2019-04-19 14:07:18 -06:00
Alvin Huang
ad36886f90
Remove old redirects file ( #5688 )
...
* add directions on how to update the redirects file
* remove old redirects file
2019-04-18 16:47:09 -04:00
Matt Keeler
032d299072
Add missing token field in the service definition in the docs ( #5685 )
...
Fixes #5684
2019-04-18 16:05:51 -04:00
Heechul Ryu
66f0e4a2c7
Update consul-containers.html.md ( #5645 )
...
To reflect the most recent version
2019-04-18 10:35:21 -05:00
joelcollin
9ca16fcad5
Fixed minor typos. ( #5681 )
2019-04-18 10:24:19 -05:00
kaitlincarter-hc
66a49e60ea
[docs] Leader Election Guide Updates ( #5654 )
...
* Updating the Leader Election guide.
* Update website/source/docs/guides/leader-election.html.md
* updating key name
* Update website/source/docs/guides/leader-election.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/leader-election.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
2019-04-17 16:16:15 -05:00
kaitlincarter-hc
5c3d3dd894
Updating network connectivity section based on feedback from Pavani. ( #5612 )
2019-04-17 16:12:30 -05:00
kaitlincarter-hc
59c0174de5
[docs] Geo Failover ( #5641 )
...
* Updated the headers, code snippets, and some language.
* Update website/source/docs/guides/geo-failover.html.md
* Changed banking-app to payments
* Update website/source/docs/guides/geo-failover.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
2019-04-17 13:27:57 -05:00
kaitlincarter-hc
7dcc727b4d
[docs] Server Performance ( #5627 )
...
* Moving server performance guide to docs.
* fixing broken links
* updating broken link
* fixing broken links
2019-04-17 13:17:12 -05:00
Judith Malnick
d909766403
Remove redundant word.
2019-04-16 16:03:03 -06:00
kaitlincarter-hc
8b7e2a3e32
[docs] Windows Guide ( #5626 )
...
* Updating the windows guide for the migration.
* adding config dir option
2019-04-16 16:14:10 -05:00
Matt Keeler
23755fcf46
Fix some broken links ( #5670 )
2019-04-16 12:40:03 -04:00
Matt Keeler
afa1cc98d1
Implement data filtering of some endpoints ( #5579 )
...
Fixes : #4222
# Data Filtering
This PR will implement filtering for the following endpoints:
## Supported HTTP Endpoints
- `/agent/checks`
- `/agent/services`
- `/catalog/nodes`
- `/catalog/service/:service`
- `/catalog/connect/:service`
- `/catalog/node/:node`
- `/health/node/:node`
- `/health/checks/:service`
- `/health/service/:service`
- `/health/connect/:service`
- `/health/state/:state`
- `/internal/ui/nodes`
- `/internal/ui/services`
More can be added going forward and any endpoint which is used to list some data is a good candidate.
## Usage
When using the HTTP API a `filter` query parameter can be used to pass a filter expression to Consul. Filter Expressions take the general form of:
```
<selector> == <value>
<selector> != <value>
<value> in <selector>
<value> not in <selector>
<selector> contains <value>
<selector> not contains <value>
<selector> is empty
<selector> is not empty
not <other expression>
<expression 1> and <expression 2>
<expression 1> or <expression 2>
```
Normal boolean logic and precedence is supported. All of the actual filtering and evaluation logic is coming from the [go-bexpr](https://github.com/hashicorp/go-bexpr ) library
## Other changes
Adding the `Internal.ServiceDump` RPC endpoint. This will allow the UI to filter services better.
2019-04-16 12:00:15 -04:00
Alvin Huang
ffc5c33550
interpolate properly ( #5665 )
2019-04-15 15:29:19 -04:00
Alvin Huang
0015326cea
Share Fastly and Netlify redirects ( #5619 )
...
* consolidate netlify and fastly redirects
* remove validation check to support full url redirects
2019-04-15 14:56:53 -04:00
Freddy
b2c12550d7
Remove old UI, option to use it, and its build processes
2019-04-12 09:02:27 -06:00
Freddy
a03392c906
Add additional raft metrics ( #5628 )
...
* Add documentation for new raft metrics
* Revendor raft from master
2019-04-09 16:09:22 -06:00
Sarah Christoff
1ca4cca043
Merge pull request #5609 from hashicorp/update_ports
...
Update Ports Documentation
2019-04-05 15:54:03 -05:00
Alvin Huang
e14d1fab29
Merge pull request #5607 from hashicorp/deploy-previews
...
Add Documentation Previews and Checks
2019-04-05 13:44:22 -04:00
Sarah Christoff
53cbaefd5d
Updated Ports Documentation
2019-04-05 12:25:44 -05:00
Judith Malnick
fc7a1e0175
[docs] security warning about Helm chart ( #5561 )
...
* [docs] security warning about Helm chart
Correct security warning about helm chart to caution about default Consul install.
* clarify that k8s or consul should be secure
2019-04-04 16:58:57 -07:00
Alvin Huang
3e54ae4d19
add netlify redirects
2019-04-04 18:55:15 -04:00
Alvin Huang
71364e94ea
add link checking script
2019-04-04 18:55:15 -04:00
Alvin Huang
17a6307f65
fix broken acl link ( #5592 )
...
* fix broken acl link
* Update website/source/docs/acl/acl-migrate-tokens.html.md
Co-Authored-By: alvin-huang <alvin@hashicorp.com>
2019-04-04 13:56:43 -04:00
kaitlincarter-hc
eca219b64c
[docs] Connect in Production ( #5503 )
...
* Updating guide to prepare for Learn migration.
* Update website/source/docs/guides/connect-production.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/connect-production.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/connect-production.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/connect-production.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
2019-04-04 09:52:35 -05:00
tristan-weil
fe938e6e28
tls: allow to add ip addresses as Subject Alternative Names when creating certificates ( #5602 )
2019-04-04 14:32:02 +02:00
kaitlincarter-hc
cb0b9665df
[docs] New k8s reference arch guide. ( #5528 )
...
* New k8s reference arch guide.
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
* Update website/source/docs/guides/kubernetes-reference.html.md
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
* Update website/source/docs/guides/kubernetes-reference.html.md
2019-04-03 17:29:21 -05:00
kaitlincarter
b0bdfeaa69
updated the graphic
2019-04-03 16:53:04 -05:00
kaitlincarter
1b9802a14b
Updates based on feedback
2019-04-03 16:36:02 -05:00
Alvin Huang
9d6e507616
rename refs to areas guide to advanced-federation ( #5603 )
2019-04-03 17:20:58 -04:00
kaitlincarter-hc
23ec040205
Update website/source/docs/guides/kubernetes-reference.html.md
2019-04-03 15:08:11 -05:00
Paul Banks
f079c5ea57
Update website/source/docs/guides/kubernetes-reference.html.md
...
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
2019-04-03 14:48:19 -05:00
kaitlincarter-hc
22202683e7
Update website/source/docs/guides/kubernetes-reference.html.md
2019-04-03 14:47:11 -05:00
kaitlincarter-hc
edd7d89484
Update website/source/docs/guides/kubernetes-reference.html.md
2019-04-03 14:39:36 -05:00
kaitlincarter-hc
fe8c04b51d
Update website/source/docs/guides/kubernetes-reference.html.md
2019-04-03 13:41:09 -05:00
Paul Banks
a7b7c4d11f
Update website/source/docs/guides/kubernetes-reference.html.md
...
Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com>
2019-04-03 13:36:24 -05:00