Skip to content

Commit

Permalink
backport of commit c7348b3
Browse files Browse the repository at this point in the history
  • Loading branch information
boruszak committed Jun 30, 2023
1 parent 46ae78b commit 84fb710
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions website/content/docs/connect/config-entries/exported-services.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,60 @@ spec:
]
```

</CodeTabs>
</Tab>


<Tab heading="Consul Enterprise (Sameness Group)">
<CodeTabs heading="Exported services configuration syntax" tabs={[ "HCL", "Kubernetes YAML", "JSON" ]}>

```hcl
Kind = "exported-services"
Partition = "<partition containing services to export>"
Name = "<partition containing services to export>"
Services = [
{
Name = "<name of service to export>"
Namespace = "<namespace in the partition containing the service to export>"
Consumers = [
{
SamenessGroup = "<name of the sameness group that dials the exported service>"
}
]
}
]
```

```yaml
apiVersion: consul.hashicorp.com/v1alpha1
kind: ExportedServices
metadata:
name: <partition containing services to export>
spec:
services:
- name: <name of service to export>
namespace: <namespace in the partition containing the service to export>
consumers:
- samenessGroup: <name of the sameness group that dials the exported service>
```
```json
"Kind": "exported-services",
"Partition": "<partition containing services to export>",
"Name": "<partition containing services to export>",
"Services": [
{
"Name": "<name of service to export>",
"Namespace": "<namespace in the partition containing the service to export>"
"Consumers": [
{
"SamenessGroup": "<name of the sameness group that dials the exported service>"
}
]
}
]
```

</CodeTabs>
</Tab>
</Tabs>
Expand Down

0 comments on commit 84fb710

Please sign in to comment.