Hi Same hosts i want to run other recipes 2nd time but only first declared run list only running but second time declared run list for same nodes are not running from .kitchen.yml and test kitchen.
Please suggest me how can accomplish 2nd time declared run list
---
driver:
name: vagrant
provisioner:
name: chef_zero
environments_path: test/integration/default/environments
client_rb:
environment: stg
always_update_cookbooks: true
verifier:
name: inspec
platforms:
- name: centos-7.2
suites:
- name: Host1.com
run_list:
- recipe[maprcluster-cookbook::mapr_install]
data_bags_path: "test/integration/default/data_bags"
attributes:
zookeeper: 'true'
cldb : 'true'
hive: 'true'
- name: Host2.com
run_list:
- recipe[maprcluster-cookbook::mapr_install]
data_bags_path: "test/integration/default/data_bags"
attributes:
zookeeper: 'true'
cldb : 'true'
hive_thrift: 'true'
- name: host3.com
run_list:
- recipe[maprcluster-cookbook::mapr_install]
data_bags_path: "test/integration/default/data_bags"
attributes:
zookeeper: 'true'
cldb : 'true'
hive_thrift: 'true'
- name: Host1.com
run_list:
- recipe[maprcluster-cookbook::server_config]
data_bags_path: "test/integration/default/data_bags"
- name: Host2.com
run_list:
- recipe[maprcluster-cookbook::server_config]
data_bags_path: "test/integration/default/data_bags"
- name: Host3.com
run_list:
- recipe[maprcluster-cookbook::server_config]
data_bags_path: "test/integration/default/data_bags"