9 lines
250 B
YAML
9 lines
250 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
|