(refactor)experiments: rename experiment artefacts (#800)
Signed-off-by: ksatchit <karthik.s@openebs.io>
This commit is contained in:
parent
81d0f12258
commit
6b24c346ed
3
Makefile
3
Makefile
|
@ -8,7 +8,8 @@
|
|||
IS_DOCKER_INSTALLED = $(shell which docker >> /dev/null 2>&1; echo $$?)
|
||||
|
||||
# list of playbooks which should be validated
|
||||
PLAYBOOKS = $(shell find ./ -iname 'test.yml' -printf '%P\n')
|
||||
#PLAYBOOKS = $(shell find ./ -iname 'test.yml' -printf '%P\n')
|
||||
PLAYBOOKS = $(shell find ./ -iname *.yml -printf '%P\n' | grep 'ansible_logic.yml')
|
||||
|
||||
.PHONY: all
|
||||
all: all-tools ansible-syntax-check
|
||||
|
|
|
@ -32,5 +32,5 @@ spec:
|
|||
value: ""
|
||||
|
||||
command: ["/bin/bash"]
|
||||
args: ["-c", "ansible-playbook ./experiments/generic/container_kill/test.yml -i /etc/ansible/hosts -vv; exit 0"]
|
||||
args: ["-c", "ansible-playbook ./experiments/generic/container_kill/container_kill_ansible_logic.yml -i /etc/ansible/hosts -vv; exit 0"]
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
tasks:
|
||||
- block:
|
||||
|
||||
- include: test_prerequisites.yml
|
||||
- include: pod_delete_ansible_prerequisites.yml
|
||||
|
||||
- include_vars:
|
||||
file: chaosutil.yml
|
|
@ -53,5 +53,5 @@ spec:
|
|||
fieldPath: spec.serviceAccountName
|
||||
|
||||
command: ["/bin/bash"]
|
||||
args: ["-c", "ansible-playbook ./experiments/generic/pod_delete/test.yml -i /etc/ansible/hosts; exit 0"]
|
||||
args: ["-c", "ansible-playbook ./experiments/generic/pod_delete/pod_delete_ansible_logic.yml -i /etc/ansible/hosts; exit 0"]
|
||||
|
Loading…
Reference in New Issue