diff --git a/scenarios/post_action_etcd.yml b/scenarios/post_action_etcd.yml deleted file mode 100755 index 6a472e26..00000000 --- a/scenarios/post_action_etcd.yml +++ /dev/null @@ -1,21 +0,0 @@ -config: - runStrategy: - runs: 1 - maxSecondsBetweenRuns: 10 - minSecondsBetweenRuns: 1 -scenarios: - - name: "check 3 pods are in namespace with selector: etcd" - steps: - - podAction: - matches: - - labels: - namespace: "openshift-etcd" - selector: "k8s-app=etcd" - filters: - - property: - name: "state" - value: "Running" - # The actions will be executed in the order specified - actions: - - checkPodCount: - count: 3 \ No newline at end of file diff --git a/scenarios/post_action_etcd_example.sh b/scenarios/post_action_etcd_example.sh deleted file mode 100755 index f122291b..00000000 --- a/scenarios/post_action_etcd_example.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -pods="$(oc get pods -n openshift-etcd | grep -c Running)" -echo "$pods" diff --git a/scenarios/post_action_openshift-apiserver.yml b/scenarios/post_action_openshift-apiserver.yml deleted file mode 100755 index 938b74c2..00000000 --- a/scenarios/post_action_openshift-apiserver.yml +++ /dev/null @@ -1,23 +0,0 @@ -config: - runStrategy: - runs: 1 - maxSecondsBetweenRuns: 30 - minSecondsBetweenRuns: 1 -scenarios: - - name: "check 3 pods are in namespace with selector: openshift-apiserver" - steps: - - podAction: - matches: - - labels: - namespace: "openshift-apiserver" - selector: "app=openshift-apiserver" - - filters: - - property: - name: "state" - value: "Running" - - # The actions will be executed in the order specified - actions: - - checkPodCount: - count: 3 diff --git a/scenarios/post_action_openshift-kube-apiserver.yml b/scenarios/post_action_openshift-kube-apiserver.yml deleted file mode 100755 index 7487661b..00000000 --- a/scenarios/post_action_openshift-kube-apiserver.yml +++ /dev/null @@ -1,21 +0,0 @@ -config: - runStrategy: - runs: 1 - maxSecondsBetweenRuns: 30 - minSecondsBetweenRuns: 1 -scenarios: - - name: "check 3 pods are in namespace with selector: openshift-kube-apiserver" - steps: - - podAction: - matches: - - labels: - namespace: "openshift-kube-apiserver" - selector: "app=openshift-kube-apiserver" - filters: - - property: - name: "state" - value: "Running" - # The actions will be executed in the order specified - actions: - - checkPodCount: - count: 3 diff --git a/scenarios/post_action_regex_openshift_pod_kill.yml b/scenarios/post_action_regex_openshift_pod_kill.yml deleted file mode 100755 index ba011b75..00000000 --- a/scenarios/post_action_regex_openshift_pod_kill.yml +++ /dev/null @@ -1,18 +0,0 @@ -config: - runStrategy: - runs: 1 - maxSecondsBetweenRuns: 30 - minSecondsBetweenRuns: 1 -scenarios: - - name: kill up to 3 pods in any openshift namespace - steps: - - podAction: - matches: - - namespace: "openshift-.*" - filters: - - property: - name: "state" - value: "Running" - actions: - - checkPodCount: - count: 146