Skip to content

Commit

Permalink
Update terminology.md
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlanni authored Jul 19, 2023
1 parent 6a78d20 commit ffcc99d
Showing 1 changed file with 38 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,43 @@
title: Higress Terminology
keywords: [Higress]
description: Higress Terminology.
custom_edit_url: https://github.com/higress-group/higress-group.github.io/blob/main/i18n/zh-cn/docusaurus-plugin-content-docs/current/overview/terminology.md
custom_edit_url: https://github.com/higress-group/higress-group.github.io/blob/main/i18n/en-us/docusaurus-plugin-content-docs/current/overview/terminology.md
---

# Higress Terminology
TBD
#Higress Terminology

## Ingress Annotation (Annotation)

The annotation (Annotation) field in the Ingress resource is a kv dictionary structure, which can implement various routing strategies in a declarative manner. As shown below, annotations are used to enable cross-domain access permission for the Ingress route:

```yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-example
annotations:
higress.io/enable-cors: "true"
spec:
ingressClassName: nginx-example
rules:
- http:
paths:
- path: /test
pathType: Prefix
backend:
service:
name: test
port:
number: 80
```
For other annotation configuration methods supported by Higress, please refer to [Ingress Annotation Configuration Instructions](../user/annotation.md)
## Downstream
Downstream refers to the source where Higress receives the request, usually a client such as a browser
## Upstream
Upstream refers to the target backend service that Higress forwards the request to

0 comments on commit ffcc99d

Please sign in to comment.