mirror of https://github.com/fluxcd/flagger.git
include Contour retryOn in the sample canary
without this change the HTTPProxy - podinfo.test was not getting created due to the following warning: ``` test 4m11s Warning Synced canary/podinfo HTTPProxy podinfo.test create error: HTTPProxy.projectcontour.io "podinfo" is invalid: spec.routes.retryPolicy.retryOn: Unsupported value: "": supported values: "5xx", "gateway-error", "reset", "connect-failure", "retriable-4xx", "refused-stream", "retriable-status-codes", "retriable-headers", "cancelled", "deadline-exceeded", "internal", "resource-exhausted", "unavailable" ``` Signed-off-by: Mae Anne Large <Mpluya@users.noreply.github.com> Signed-off-by: Mae Large <mlarge@vmware.com>
This commit is contained in:
parent
358391bfde
commit
4dd6102a0f
|
@ -90,6 +90,8 @@ spec:
|
|||
retries:
|
||||
attempts: 3
|
||||
perTryTimeout: 5s
|
||||
# supported values for retryOn - https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-on
|
||||
retryOn: "5xx"
|
||||
# define the canary analysis timing and KPIs
|
||||
analysis:
|
||||
# schedule interval (default 60s)
|
||||
|
|
Loading…
Reference in New Issue