aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb')
-rw-r--r--asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb58
1 files changed, 0 insertions, 58 deletions
diff --git a/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb b/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb
deleted file mode 100644
index e60740fb3d..0000000000
--- a/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/03-schemaCreation.rb
+++ /dev/null
@@ -1,58 +0,0 @@
-cookbook_file "/tmp/sdctool.tar" do
- source "sdctool.tar"
- mode 0755
-end
-
-execute "install tar" do
- command "/bin/tar xf /tmp/sdctool.tar -C /tmp"
- cwd "/tmp"
- action :run
-end
-
-template "janusgraph.properties" do
- sensitive true
- path "/tmp/sdctool/config/janusgraph.properties"
- source "janusgraph.properties.erb"
- mode "0755"
- variables({
- :DC_NAME => node['cassandra']['datacenter_name'],
- :cassandra_ip => node['Nodes']['CS'].first,
- :cassandra_port_num => node['cassandra'][:cassandra_port],
- :janus_connection_timeout => node['cassandra'][:janusgraph_connection_timeout],
- :cassandra_pwd => node['cassandra'][:cassandra_password],
- :cassandra_usr => node['cassandra'][:cassandra_user],
- :replication_factor => node['cassandra']['replication_factor']
- })
-end
-
-
-template "/tmp/sdctool/config/configuration.yaml" do
- sensitive true
- source "configuration.yaml.erb"
- mode 0755
- variables({
- :host_ip => node['Nodes']['BE'],
- :catalog_port => node['BE'][:http_port],
- :ssl_port => node['BE'][:https_port],
- :cassandra_ip => node['Nodes']['CS'].first,
- :cassandra_port => node['cassandra']['cassandra_port'],
- :rep_factor => node['cassandra']['replication_factor'],
- :DC_NAME => node['cassandra']['datacenter_name'],
- :janusgraph_Path => "/tmp/sdctool/config/",
- :socket_connect_timeout => node['cassandra']['socket_connect_timeout'],
- :socket_read_timeout => node['cassandra']['socket_read_timeout'],
- :cassandra_pwd => node['cassandra'][:cassandra_password],
- :cassandra_usr => node['cassandra'][:cassandra_user]
- })
-end
-
-execute "executing-schema-creation" do
- command "chmod +x /tmp/sdctool/scripts/schemaCreation.sh && /tmp/sdctool/scripts/schemaCreation.sh /tmp/sdctool/config"
- cwd "/tmp"
- action :run
-end
-
-execute "executing-janusGraphSchemaCreation.sh" do
- command "chmod +x /tmp/sdctool/scripts/janusGraphSchemaCreation.sh && /tmp/sdctool/scripts/janusGraphSchemaCreation.sh /tmp/sdctool/config"
- action :run
-end \ No newline at end of file