Jeff Escalante
c986cce408
remove extra dependencies
2020-07-09 14:56:22 -04:00
Paul Coignet
cf68577bef
Use method and path as labels
2020-07-09 10:31:27 +02:00
Sabeen Syed
afb888cc09
docs: Add Audit Logging page under Consul Enterprise
2020-07-08 18:16:12 -05:00
Jeff Escalante
fa135ae285
update deps, format all files
2020-07-08 19:12:34 -04:00
Jeff Escalante
22d5afc262
update and hard-pin dependencies
2020-07-08 18:44:34 -04:00
Matt Keeler
680ac0c1c6
Add Revision to version CLI output and add JSON support
...
Also add JSON format support
2020-07-08 16:32:46 -04:00
JohnnyB
5e5dbedd47
Added undocumented CONSUL_NAMESPACE to website. ( #8264 )
2020-07-08 10:41:42 -04:00
Sabeen Syed
8a6ad77620
docs: Update Consul Enterprise Intro
2020-07-07 16:11:30 -05:00
Daniel Nephin
0cb9d0739f
docs: dns_config.cache_max_age=0
2020-07-07 15:24:26 -04:00
Jeff Escalante
74350bb5c3
learn -> tutorials in subnav
2020-07-06 18:44:30 -04:00
Seth Hoenig
a93e44f20c
docs: fix link to connect authorize endpoint ( #8248 )
...
/docs/connect/intentions has a broken link presumably meant
to go to /api-docs/agent/connect#authorize
This PR fixes the link.
2020-07-06 16:16:09 -05:00
Kevin Pruett
2d1686c7a1
Append redirects
2020-07-06 09:39:37 -07:00
Kevin Pruett
52d05480c8
Merge pull request #8242 from hashicorp/pruett.ci-fixup
...
Update Algolia CI script
2020-07-06 11:22:54 -04:00
Kevin Pruett
2abe9b2f50
Update Algolia CI script
2020-07-06 10:09:48 -04:00
Jono Sosulska
0cd4178a4c
Fix typos on commandline flags, updated config opts ( #8227 )
...
* Fix typos on commandline flags, updated config opts
- Added anchors to https://github.com/hashicorp/consul/pull/8223
- Fix Typos
Updated to include config file options as well as CLI.
2020-07-02 16:13:11 -04:00
Jeff Escalante
9f5624a1a6
remove unneeded mdx provider option
2020-07-02 14:22:29 -04:00
Jeff Escalante
7f5a1223f6
drop out unused font
2020-07-02 14:22:29 -04:00
Jeff Escalante
bcca066d80
generate readme
2020-07-02 14:22:29 -04:00
Jeff Escalante
b449d7ab5d
update dependencies, fapply upgrades, fix breaking changes
2020-07-02 14:22:29 -04:00
Blake Covarrubias
08c92ba880
docs: Fix formatting issues on built-in proxy page ( #8005 )
...
Fix markdown formatting and display issues on built-in proxy page.
2020-07-02 12:39:50 -04:00
Rémi Lapeyre
421b9e8ef1
Fix typo in configuration documentation ( #7997 )
2020-07-02 12:39:23 -04:00
kaitlincarter-hc
b353b5f920
update landing page links to learn to specific guides ( #8214 )
2020-07-01 14:58:46 -05:00
André
d06d9ef29e
Update lock.mdx ( #8217 )
...
Remove duplicated `-timeout` value.
2020-07-01 14:59:07 +02:00
Fatih Sarhan
f6eaf74de2
docs: Fix typo on openstack cloud-auto-join
2020-06-29 13:56:01 -07:00
Kevin Pruett
41254a1b74
Add Algolia indexing to CI
2020-06-29 12:14:43 -04:00
Seth Hoenig
95f46eb3ed
api/agent: enable setting SuccessBeforePassing and FailuresBeforeCritical in API ( #7949 )
...
Fixes #7764
Until now these two fields could only be set through on-disk agent configuration.
This change adds the fields to the agent API struct definition so that they can
be set using the agent HTTP API.
2020-06-29 14:52:35 +02:00
R.B. Boyer
462f0f37ed
connect: various changes to make namespaces for intentions work more like for other subsystems ( #8194 )
...
Highlights:
- add new endpoint to query for intentions by exact match
- using this endpoint from the CLI instead of the dump+filter approach
- enforcing that OSS can only read/write intentions with a SourceNS or
DestinationNS field of "default".
- preexisting OSS intentions with now-invalid namespace fields will
delete those intentions on initial election or for wildcard namespaces
an attempt will be made to downgrade them to "default" unless one
exists.
- also allow the '-namespace' CLI arg on all of the intention subcommands
- update lots of docs
2020-06-26 16:59:15 -05:00
Freddy
e10058bc3f
Update website/pages/docs/acl/auth-methods/jwt.mdx
...
Co-authored-by: Daniel Nephin <dnephin@hashicorp.com>
2020-06-25 11:43:42 -06:00
freddygv
166da8f710
Remove remaining beta tags
2020-06-24 16:12:24 -06:00
freddygv
3f01e08ae0
Remove stray instruction
2020-06-24 16:12:08 -06:00
freddygv
98c5eb8868
Add docs for upstream destination's namespace
2020-06-24 16:11:44 -06:00
freddygv
394b1f2e7f
Add tabs to config entry examples
2020-06-24 16:10:46 -06:00
Rebecca Zanzig
864e7f6ae0
Rearrange k8s connect docs to make space for gateways
2020-06-24 13:35:14 -07:00
Mike Morris
49fc7eb4bb
Update dev.mdx ( #8090 )
...
Remove ref to "virtual service" to avoid confusion with L7 routing virtual services, replace with "debug service".
2020-06-24 14:26:01 +02:00
Valery V. Vorotyntsev
3098bc8593
Fix quorum formula in consensus.mdx ( #8166 )
...
[Add & Remove Servers](https://learn.hashicorp.com/consul/day-2-operations/servers )
guide uses `(N/2)+1` quorum formula. So does the
[Raft implementation](5927dcda05/raft.go (L909)
).
Consensus Protocol document uses `(n+1)/2` formula.
This formula is not only different, it conflicts with the
[Deployment Table](https://www.consul.io/docs/internals/consensus.html#deployment_table )
in the same document; e.g., (6+1)/2 = 3, not 4.
Replace `(n+1)/2` with `(N/2)+1` in Consensus Protocol document.
2020-06-24 14:23:36 +02:00
Chris Piraino
2904cdac36
docs: Specify port in host for example ( #8167 )
...
This example shows a TLS enabled ingress config on a non-https port.
Currently, that means we require the port to be specified in one of the
host entries to route traffic.
2020-06-23 14:41:51 -05:00
freddygv
c791fbc79c
Update namespaces subject-verb agreement
2020-06-23 10:57:30 -06:00
Brandon Romano
2509e8d222
Update Nav
2020-06-21 19:35:34 -07:00
Preetha
8bf0432fae
remove prerelease tag
2020-06-18 20:02:21 -05:00
Preetha
3ca775a75e
update alert banner
2020-06-18 19:36:42 -05:00
Preetha
e8da210b4b
update version to 1.8.0
2020-06-18 19:32:11 -05:00
Freddy
28f22c8a90
Finalize gateway documentation for 1.8.0 GA ( #8121 )
...
Co-authored-by: Derek Strickland <1111455+DerekStrickland@users.noreply.github.com>
2020-06-18 15:27:06 -06:00
Luke Kysow
fcbed6da44
Remove consul:beta now that 1.8 is out.
2020-06-18 11:50:25 -07:00
Rebecca Zanzig
ea8fbdc68f
Merge pull request #8126 from hashicorp/k8s/gateway-docs
...
Add helm chart options for ingress and terminating gateways
2020-06-18 11:30:59 -07:00
Jono Sosulska
c8bee5a934
Fixing multiple document updates ( #8135 )
...
* Fixes #7663-ACL Token Reloadable#7432-Cipher Suites,#7385-KV Delete DC, raft list-peers docs
Co-authored-by: Freddy <freddygv@users.noreply.github.com>
2020-06-18 14:10:45 -04:00
Rebecca Zanzig
5c7e62169d
Add helm chart options for ingress and terminating gateways
2020-06-18 11:04:19 -07:00
Dexter Lowe
6e208a2120
#8059 Improve Clarity on TTL docs ( #8141 )
2020-06-18 13:53:43 -04:00
Chris Piraino
bb103f22dd
Updates docs with ingress Host header clarifications ( #8062 )
...
* Updates docs with ingress Host header changes
Clarify that a Host header is required for L7 protocols, and specify
that the default is to use the Consul DNS ingress subdomain
* Add sentence about using '*' by itself for testing
* Add optional step for using L7 routing config
* Note that port numbers may need to be added in the Hosts field
2020-06-17 14:43:58 -05:00
Kevin Pruett
d2aed50ba1
Update @hashicorp/nextjs-scripts dep
2020-06-17 12:01:56 -04:00
wisp
b29da31f94
Fixed a typo ( #8132 )
...
Fixed a little typo 🐰
2020-06-17 10:21:33 -04:00