Skip to content

Commit

Permalink
auto gen
Browse files Browse the repository at this point in the history
  • Loading branch information
hzxuzhonghu committed Dec 18, 2019
1 parent cca74fd commit d8509db
Show file tree
Hide file tree
Showing 6 changed files with 815 additions and 232 deletions.
12 changes: 12 additions & 0 deletions kubernetes/customresourcedefinitions.gen.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions networking/v1alpha3/virtual_service.gen.json
Expand Up @@ -93,6 +93,9 @@
"redirect": {
"$ref": "#/components/schemas/istio.networking.v1alpha3.HTTPRedirect"
},
"delegate": {
"$ref": "#/components/schemas/istio.networking.v1alpha3.Delegate"
},
"rewrite": {
"$ref": "#/components/schemas/istio.networking.v1alpha3.HTTPRewrite"
},
Expand Down Expand Up @@ -362,6 +365,22 @@
}
}
},
"istio.networking.v1alpha3.Delegate": {
"description": "Describes the delegated VirtualService. The following routing rules forward the traffic to `/productpage` by a delegated VirtualService named `productpage`, forward the traffic to `/reviews` by a delegated VirtualService named `reviews`.",
"type": "object",
"properties": {
"name": {
"description": "Name specifies the name of the delegated VirtualService.",
"type": "string",
"format": "string"
},
"namespace": {
"description": "Namespace specifies the namespace where the delegated VirtualService resides. By default, it is same to the root's.",
"type": "string",
"format": "string"
}
}
},
"istio.networking.v1alpha3.HTTPRewrite": {
"description": "HTTPRewrite can be used to rewrite specific parts of a HTTP request before forwarding the request to the destination. Rewrite primitive can be used only with HTTPRouteDestination. The following example demonstrates how to rewrite the URL prefix for api call (/ratings) to ratings service before making the actual API call.",
"type": "object",
Expand Down

0 comments on commit d8509db

Please sign in to comment.