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
When I use apisix as the ingress controller, I found that SetHeader is not supported when using canary traffic management
When using APISIX as your ingress controller, As described in the following yaml file
apiVersion: argoproj.io/v1alpha1 kind: Rollout metadata: name: rollout-apisix-canary spec: replicas: 5 strategy: canary: canaryService: rollout-apisix-canary-canary stableService: rollout-apisix-canary-stable trafficRouting: managedRoutes: - name: set-header-1 apisix: route: name: rollouts-apisix-route rules: - rollouts-apisix steps: - setWeight: 20 - setHeaderRoute: name: set-header-1 match: - headerName: agent headerValue: regex: firefox(.*) - pause: { } - setHeaderRoute: name: set-header-1 match: - headerName: agent headerValue: regex: chrome(.*) - pause: { } - setWeight: 40 - setHeaderRoute: name: set-header-1 - pause: {} revisionHistoryLimit: 2 selector: matchLabels: app: rollout-apisix-canary template: metadata: labels: app: rollout-apisix-canary spec: containers: - name: rollouts-demo image: argoproj/rollouts-demo:blue ports: - name: http containerPort: 8080 protocol: TCP resources: requests: memory: 32Mi cpu: 5m
Message from the maintainers:
Impacted by this bug? Give it a 👍. We prioritize the issues with the most 👍.
The text was updated successfully, but these errors were encountered:
Maybe I can try to make it happen.
Sorry, something went wrong.
feat: Apache APISIX SetHeader support. Fixes #2668 (#2678)
8aaae5a
* feat/apisixSetHeader Signed-off-by: shareinto <[email protected]> * chore: code coverage Signed-off-by: shareinto <[email protected]> * fix: apisix setweight check back Signed-off-by: shareinto <[email protected]> * chore: update readme Signed-off-by: shareinto <[email protected]> * fix: typo processSetWeightRoutes Signed-off-by: shareinto <[email protected]> --------- Signed-off-by: shareinto <[email protected]>
Successfully merging a pull request may close this issue.
Summary
When I use apisix as the ingress controller, I found that SetHeader is not supported when using canary traffic management
Use Cases
When using APISIX as your ingress controller,
As described in the following yaml file
Message from the maintainers:
Impacted by this bug? Give it a 👍. We prioritize the issues with the most 👍.
The text was updated successfully, but these errors were encountered: