Skip to content

Commit

Permalink
Merge branch 'patch-1' of github.com:hungran/argo-rollouts into hungr…
Browse files Browse the repository at this point in the history
…an-patch-1

Signed-off-by: zachaller <[email protected]>
  • Loading branch information
zachaller committed Nov 8, 2022
2 parents 75b7a6e + a3b7ad6 commit 4c77fa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/features/analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ Here are two examples where a metric result of empty array is considered success
apiVersion: argoproj.io/v1alpha1
kind: AnalysisRun
...
successCondition: len(result) == 0 || result >= 0.95
successCondition: len(result) == 0 || result[0] >= 0.95
status:
metricResults:
- count: 1
Expand All @@ -1081,7 +1081,7 @@ status:
apiVersion: argoproj.io/v1alpha1
kind: AnalysisRun
...
successCondition: len(result) > 0 && result >= 0.95
successCondition: len(result) > 0 && result[0] >= 0.95
status:
metricResults:
- count: 1
Expand Down

0 comments on commit 4c77fa7

Please sign in to comment.