Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | cookbook_file "/tmp/sdctool.tar" do |
| 2 | source "sdctool.tar" |
| 3 | mode 0755 |
| 4 | end |
| 5 | |
| 6 | ## extract sdctool.tar |
| 7 | bash "install tar" do |
| 8 | cwd "/tmp" |
| 9 | code <<-EOH |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 10 | /bin/tar xf /tmp/sdctool.tar -C /tmp |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 11 | EOH |
| 12 | end |
| 13 | |
| 14 | |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 15 | template "janusgraph.properties" do |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 16 | sensitive true |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 17 | path "/tmp/sdctool/config/janusgraph.properties" |
| 18 | source "janusgraph.properties.erb" |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 19 | mode "0755" |
| 20 | variables({ |
k.kedron | 004fb64 | 2019-07-09 13:02:08 +0200 | [diff] [blame] | 21 | :DC_NAME => node['cassandra']['datacenter_name'], |
| 22 | :cassandra_ip => node['Nodes']['CS'].first, |
shrek2000 | 0594c41 | 2020-01-30 14:52:49 +0200 | [diff] [blame] | 23 | :cassandra_port_num => node['cassandra'][:cassandra_port], |
| 24 | :janus_connection_timeout => node['cassandra'][:janusgraph_connection_timeout], |
k.kedron | 004fb64 | 2019-07-09 13:02:08 +0200 | [diff] [blame] | 25 | :cassandra_pwd => node['cassandra'][:cassandra_password], |
| 26 | :cassandra_usr => node['cassandra'][:cassandra_user], |
k.kedron | 004fb64 | 2019-07-09 13:02:08 +0200 | [diff] [blame] | 27 | :replication_factor => node['cassandra']['replication_factor'] |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 28 | }) |
| 29 | end |
| 30 | |
| 31 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 32 | template "/tmp/sdctool/config/configuration.yaml" do |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 33 | sensitive true |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 34 | source "configuration.yaml.erb" |
| 35 | mode 0755 |
| 36 | variables({ |
Yuli Shlosberg | 0875ce0 | 2018-01-25 13:53:36 +0200 | [diff] [blame] | 37 | :host_ip => node['Nodes']['BE'], |
Michael Lando | 50ffa6b | 2018-01-08 10:52:07 +0200 | [diff] [blame] | 38 | :catalog_port => node['BE'][:http_port], |
| 39 | :ssl_port => node['BE'][:https_port], |
Areli, Fuss (af732p) | c033cdc | 2018-04-24 13:59:00 +0300 | [diff] [blame] | 40 | :cassandra_ip => node['Nodes']['CS'].first, |
Tal Gitelman | c4d387d | 2019-03-28 11:00:54 +0200 | [diff] [blame] | 41 | :cassandra_port => node['cassandra']['cassandra_port'], |
mahendrr | f454e70 | 2019-04-18 10:39:30 +0000 | [diff] [blame] | 42 | :rep_factor => node['cassandra']['replication_factor'], |
| 43 | :DC_NAME => node['cassandra']['datacenter_name'], |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 44 | :janusgraph_Path => "/tmp/sdctool/config/", |
Michael Lando | 50ffa6b | 2018-01-08 10:52:07 +0200 | [diff] [blame] | 45 | :socket_connect_timeout => node['cassandra']['socket_connect_timeout'], |
| 46 | :socket_read_timeout => node['cassandra']['socket_read_timeout'], |
| 47 | :cassandra_pwd => node['cassandra'][:cassandra_password], |
| 48 | :cassandra_usr => node['cassandra'][:cassandra_user] |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 49 | }) |
| 50 | end |
| 51 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 52 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 53 | |
k.kedron | 004fb64 | 2019-07-09 13:02:08 +0200 | [diff] [blame] | 54 | bash "executing-schema-creation" do |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 55 | code <<-EOH |
| 56 | cd /tmp |
| 57 | chmod +x /tmp/sdctool/scripts/schemaCreation.sh |
| 58 | /tmp/sdctool/scripts/schemaCreation.sh /tmp/sdctool/config |
| 59 | EOH |
| 60 | end |
Yuli Shlosberg | 0875ce0 | 2018-01-25 13:53:36 +0200 | [diff] [blame] | 61 | |
k.kedron | 004fb64 | 2019-07-09 13:02:08 +0200 | [diff] [blame] | 62 | bash "executing-janusGraphSchemaCreation.sh" do |
Yuli Shlosberg | 0875ce0 | 2018-01-25 13:53:36 +0200 | [diff] [blame] | 63 | code <<-EOH |
shrikantawachar | 2623c84 | 2019-05-20 12:11:54 +0530 | [diff] [blame] | 64 | chmod +x /tmp/sdctool/scripts/janusGraphSchemaCreation.sh |
| 65 | /tmp/sdctool/scripts/janusGraphSchemaCreation.sh /tmp/sdctool/config |
Yuli Shlosberg | 0875ce0 | 2018-01-25 13:53:36 +0200 | [diff] [blame] | 66 | EOH |
| 67 | end |