mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 08:13:23 +00:00
39 lines
822 B
Markdown
39 lines
822 B
Markdown
---
|
|
title: Route
|
|
---
|
|
|
|
## Description
|
|
|
|
Configures external access to your service.
|
|
|
|
## Specification
|
|
|
|
List of all configuration options for a `Route` trait.
|
|
|
|
```yaml
|
|
...
|
|
domain: example.com
|
|
issuer: tls
|
|
rules:
|
|
- path: /testapp
|
|
rewriteTarget: /
|
|
```
|
|
|
|
## Properties
|
|
|
|
Name | Description | Type | Required | Default
|
|
------------ | ------------- | ------------- | ------------- | -------------
|
|
domain | Domain name | string | true | empty
|
|
issuer | | string | true | empty
|
|
rules | | [[]rules](#rules) | false |
|
|
provider | | string | false |
|
|
ingressClass | | string | false |
|
|
|
|
|
|
### rules
|
|
|
|
Name | Description | Type | Required | Default
|
|
------------ | ------------- | ------------- | ------------- | -------------
|
|
path | | string | true |
|
|
rewriteTarget | | string | true | empty
|