diff --git a/bug_reproduction_test_plans/zookeeper-operator-indirect-2.yaml b/bug_reproduction_test_plans/zookeeper-operator-unobserved-state-1.yaml similarity index 100% rename from bug_reproduction_test_plans/zookeeper-operator-indirect-2.yaml rename to bug_reproduction_test_plans/zookeeper-operator-unobserved-state-1.yaml diff --git a/docs/bugs.md b/docs/bugs.md index ac673b59732..8797c0a95e4 100644 --- a/docs/bugs.md +++ b/docs/bugs.md @@ -104,4 +104,4 @@ https://github.com/pravega/zookeeper-operator/issues/314 confirmed and fixed by https://github.com/pravega/zookeeper-operator/issues/410 confirmed (indirect, potential new pattern) -https://github.com/pravega/zookeeper-operator/issues/453 pending (indirect) +https://github.com/pravega/zookeeper-operator/issues/453 pending (unobserved state) diff --git a/reproduce_bugs.py b/reproduce_bugs.py index 0076f4e0958..d7e601f14fd 100644 --- a/reproduce_bugs.py +++ b/reproduce_bugs.py @@ -89,6 +89,10 @@ def after_reproducing_cassandra_operator_indirect_1(): "stale-state-2": ["reducepdb", "casskop-stale-state-2.yaml"], "unobserved-state-1": ["scaledown-to-zero", "casskop-unobserved-state-1.yaml"], }, + "elastic-operator": { + "stale-state-1": ["recreate", "elastic-operator-stale-state-1.yaml"], + "stale-state-2": ["scaledown-scaleup", "elastic-operator-stale-state-2.yaml"], + }, "mongodb-operator": { "intermediate-state-1": [ "disable-enable-shard", @@ -183,8 +187,11 @@ def after_reproducing_cassandra_operator_indirect_1(): "zookeeper-operator": { "stale-state-1": ["recreate", "zookeeper-operator-stale-state-1.yaml"], "stale-state-2": ["scaledown-scaleup", "zookeeper-operator-stale-state-2.yaml"], + "unobserved-state-1": [ + "scaledown-scaleup", + "zookeeper-operator-unobserved-state-1.yaml", + ], "indirect-1": ["recreate", "zookeeper-operator-indirect-1.yaml"], - "indirect-2": ["scaledown-scaleup", "zookeeper-operator-indirect-2.yaml"], }, } @@ -366,7 +373,7 @@ def backup_old_results(): if options.bug is None and options.project != "all": parser.error("parameter bug required") - backup_old_results() + # backup_old_results() if not options.skip: os.system("rm -rf sieve_test_results")