
after running browbeat tests, the newly added ansible script is invoked and the ocp metrics from prometheus are fetched and indexed in given ES. the indexing is leveraging kube-burner Change-Id: Ic193ee023c44ecc7f750a2cfbb77327c79baed82
14 lines
385 B
YAML
14 lines
385 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: stop collectd on OCP nodes.
|
|
shell: |
|
|
oc scale -n ospperf statefulset osp-controlplane-collectd --replicas=0
|
|
environment:
|
|
KUBECONFIG: "{{ kubeconfig_path }}"
|
|
ignore_errors: yes
|
|
|
|
- name: stop the cronjob to stop index data from OCP
|
|
import_playbook: toggle-indexing-cron-job.yml
|
|
vars:
|
|
cron_state: "absent"
|