We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support traffic splitting
- name: iris-classifier kind: TrafficSplitter apis: - name: iris-classifierA weight: 50 - name: iris-classifierB weight: 50 networking: endpoint: my-endpoint api_gateway: public - name: iris-classifierA kind: SyncAPI predictor: type: python path: predictor.py config: model: s3://cortex-examples/pytorch/iris-classifier/weights.pth - name: iris-classifierB kind: SyncAPI predictor: type: python path: predictor.py config: model: s3://cortex-examples/pytorch/iris-classifier/weights.pth
Virtual Service:
https://istio.io/latest/docs/reference/config/networking/virtual-service/#VirtualService
type Destination struct { ServiceName string ServicePort int32 Weight int32 } type VirtualServiceSpec struct { Name string Gateways []string Destinations []Destination Path string Rewrite *string Labels map[string]string Annotations map[string]string }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Support traffic splitting
API (draft)
Virtual Service:
https://istio.io/latest/docs/reference/config/networking/virtual-service/#VirtualService
Validations
The text was updated successfully, but these errors were encountered: