mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
90bbae5d75
* converted intentions conf entry to ref CT format * set up intentions nav * add page for intentions usage * final intentions usage page * final intentions overview page * fixed old relative links * updated diagram for overview * updated links to intentions content * fixed typo in updated links * rename intentions overview page file to index * rollback link updates to intentions overview * fixed nav * Updated custom HTML in API and CLI pages to MD * applied suggestions from review to index page * moved conf examples from usage to conf ref * missed custom HTML section * applied additional feedback * Apply suggestions from code review Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> * updated headings in usage page * renamed files and udpated nav * updated links to new file names * added redirects and final tweaks * typo --------- Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com>
48 lines
1.7 KiB
Plaintext
48 lines
1.7 KiB
Plaintext
---
|
|
layout: commands
|
|
page_title: 'Commands: Connect'
|
|
description: >-
|
|
The `consul connect` command interacts with Consul's service mesh features. It exposes top-level commands for interacting with the internal CA and service mesh proxies, exposing services through ingress gateways, and applying iptables rules.
|
|
---
|
|
|
|
# Consul Connect
|
|
|
|
Command: `consul connect`
|
|
|
|
The `connect` command is used to interact with Consul
|
|
[service mesh](/consul/docs/connect) subsystems. It exposes commands for
|
|
running the built-in mTLS proxy and viewing/updating the Certificate Authority
|
|
(CA) configuration. This command is available in Consul 1.2 and later.
|
|
|
|
## Usage
|
|
|
|
Usage: `consul connect <subcommand>`
|
|
|
|
For the exact documentation for your Consul version, run `consul connect -h` to view
|
|
the complete list of subcommands.
|
|
|
|
```text
|
|
Usage: consul connect <subcommand> [options] [args]
|
|
|
|
This command has subcommands for interacting with Consul Connect.
|
|
|
|
Here are some simple examples, and more detailed examples are available
|
|
in the subcommands or the documentation.
|
|
|
|
Run the built-in Connect mTLS proxy
|
|
|
|
$ consul connect proxy
|
|
|
|
For more examples, ask for subcommand help or view the documentation.
|
|
|
|
Subcommands:
|
|
ca Interact with the Consul Connect Certificate Authority (CA)
|
|
envoy Runs or Configures Envoy as a Connect proxy
|
|
expose Expose a Connect-enabled service through an Ingress gateway
|
|
proxy Runs a Consul Connect proxy
|
|
redirect-traffic Applies iptables rules for traffic redirection
|
|
```
|
|
|
|
For more information, examples, and usage about a subcommand, click on the name
|
|
of the subcommand in the sidebar.
|