From d7e457b8af855b2ecc08d94776532660ef56b736 Mon Sep 17 00:00:00 2001 From: Jaume Devesa Date: Mon, 30 Nov 2015 12:53:55 +0100 Subject: Modify cassandra dependency Switch to locp/cassandra module since it has much more options than midonet/puppet-cassandra and it is already defined on the openstack-puppet-modules packages in RHEL. More info: https://bugzilla.redhat.com/show_bug.cgi?id=1285718 Depends-On: I72f21036fda795b54312a7d39f04c30bbf16c41b Change-Id: Icea9bd96e4c80a26b9e813d383f84099c736d7bf --- manifests/cluster/cassandra.pp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'manifests/cluster/cassandra.pp') diff --git a/manifests/cluster/cassandra.pp b/manifests/cluster/cassandra.pp index 39e6e5e..b20926b 100644 --- a/manifests/cluster/cassandra.pp +++ b/manifests/cluster/cassandra.pp @@ -60,15 +60,14 @@ class tripleo::cluster::cassandra( # validate_array($cassandra_servers) validate_ipv4_address($cassandra_ip) - class {'::cassandra::run': - seeds => $cassandra_servers, - seed_address => $cassandra_ip, - conf_dir => '/etc/cassandra/default.conf', - pid_dir => '/var/run/cassandra', - service_path => '/sbin', - storage_port => $storage_port, - ssl_storage_port => $ssl_storage_port, - client_port => $client_port, - client_port_thrift => $client_port_thrift + class {'::cassandra': + cluster_name => 'TripleO', + seeds => $cassandra_servers, + listen_address => $cassandra_ip, + storage_port => $storage_port, + ssl_storage_port => $ssl_storage_port, + native_transport_port => $client_port, + rpc_port => $client_port_thrift } + } -- cgit 1.2.3-korg