blob: 72a144634c8dfde5d00bd91ae5332b6fce7a7533 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001cookbook_file "/tmp/sdctool.tar" do
2 source "sdctool.tar"
3 mode 0755
4end
5
6## extract sdctool.tar
7bash "install tar" do
8 cwd "/tmp"
9 code <<-EOH
Michael Landoed64b5e2017-06-09 03:19:04 +030010 /bin/tar xf /tmp/sdctool.tar -C /tmp
Michael Lando451a3402017-02-19 10:28:42 +020011 EOH
12end
13
14
shrikantawachar2623c842019-05-20 12:11:54 +053015template "janusgraph.properties" do
Michael Landoed64b5e2017-06-09 03:19:04 +030016 sensitive true
shrikantawachar2623c842019-05-20 12:11:54 +053017 path "/tmp/sdctool/config/janusgraph.properties"
18 source "janusgraph.properties.erb"
Michael Landoed64b5e2017-06-09 03:19:04 +030019 mode "0755"
20 variables({
k.kedron004fb642019-07-09 13:02:08 +020021 :DC_NAME => node['cassandra']['datacenter_name'],
22 :cassandra_ip => node['Nodes']['CS'].first,
23 :cassandra_pwd => node['cassandra'][:cassandra_password],
24 :cassandra_usr => node['cassandra'][:cassandra_user],
shrikantawachar2623c842019-05-20 12:11:54 +053025 :janusgraph_connection_timeout => node['cassandra']['janusgraph_connection_timeout'],
k.kedron004fb642019-07-09 13:02:08 +020026 :replication_factor => node['cassandra']['replication_factor']
Michael Landoed64b5e2017-06-09 03:19:04 +030027 })
28end
29
30
Michael Lando451a3402017-02-19 10:28:42 +020031template "/tmp/sdctool/config/configuration.yaml" do
Michael Landoed64b5e2017-06-09 03:19:04 +030032 sensitive true
Michael Lando451a3402017-02-19 10:28:42 +020033 source "configuration.yaml.erb"
34 mode 0755
35 variables({
Yuli Shlosberg0875ce02018-01-25 13:53:36 +020036 :host_ip => node['Nodes']['BE'],
Michael Lando50ffa6b2018-01-08 10:52:07 +020037 :catalog_port => node['BE'][:http_port],
38 :ssl_port => node['BE'][:https_port],
Areli, Fuss (af732p)c033cdc2018-04-24 13:59:00 +030039 :cassandra_ip => node['Nodes']['CS'].first,
Tal Gitelmanc4d387d2019-03-28 11:00:54 +020040 :cassandra_port => node['cassandra']['cassandra_port'],
mahendrrf454e702019-04-18 10:39:30 +000041 :rep_factor => node['cassandra']['replication_factor'],
42 :DC_NAME => node['cassandra']['datacenter_name'],
shrikantawachar2623c842019-05-20 12:11:54 +053043 :janusgraph_Path => "/tmp/sdctool/config/",
Michael Lando50ffa6b2018-01-08 10:52:07 +020044 :socket_connect_timeout => node['cassandra']['socket_connect_timeout'],
45 :socket_read_timeout => node['cassandra']['socket_read_timeout'],
46 :cassandra_pwd => node['cassandra'][:cassandra_password],
47 :cassandra_usr => node['cassandra'][:cassandra_user]
Michael Lando451a3402017-02-19 10:28:42 +020048 })
49end
50
Michael Landoed64b5e2017-06-09 03:19:04 +030051
Michael Lando451a3402017-02-19 10:28:42 +020052
k.kedron004fb642019-07-09 13:02:08 +020053bash "executing-schema-creation" do
Michael Landoed64b5e2017-06-09 03:19:04 +030054 code <<-EOH
55 cd /tmp
56 chmod +x /tmp/sdctool/scripts/schemaCreation.sh
57 /tmp/sdctool/scripts/schemaCreation.sh /tmp/sdctool/config
58 EOH
59end
Yuli Shlosberg0875ce02018-01-25 13:53:36 +020060
k.kedron004fb642019-07-09 13:02:08 +020061bash "executing-janusGraphSchemaCreation.sh" do
Yuli Shlosberg0875ce02018-01-25 13:53:36 +020062 code <<-EOH
shrikantawachar2623c842019-05-20 12:11:54 +053063 chmod +x /tmp/sdctool/scripts/janusGraphSchemaCreation.sh
64 /tmp/sdctool/scripts/janusGraphSchemaCreation.sh /tmp/sdctool/config
Yuli Shlosberg0875ce02018-01-25 13:53:36 +020065 EOH
66end