diff options
author | 2025-01-30 19:28:37 +0530 | |
---|---|---|
committer | 2025-01-30 19:28:37 +0530 | |
commit | d41e1b68b6be32ee367bdadd37955e91fba21303 (patch) | |
tree | 3faf15cbbc209a6f381c328c5baeaf684122d66b /asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb | |
parent | 92c86bb2b390a9d74f84d53b3edeccd239f3f0f5 (diff) |
Chef removal changes for asdc_tool
- Removal of Chef recipes in the module.
- Introduction of shell scripts in the module to replace some recipes.
- Generation of module configuration using Charts.
Issue-ID: SDC-4699
Change-Id: I3bb3b275f01cb35fb25ada0df3f9c65b86bac106
Signed-off-by: Jinendra.Lodha <jinendra.lodha@accenture.com>
Diffstat (limited to 'asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb')
-rw-r--r-- | asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb b/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb deleted file mode 100644 index 3c67715922..0000000000 --- a/asdctool/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/recipes/01-createCsUser.rb +++ /dev/null @@ -1,18 +0,0 @@ -template "/tmp/create_cassandra_user.sh" do - source "create_cassandra_user.sh.erb" - sensitive true - mode 0755 - variables({ - :cassandra_ip => node['Nodes']['CS'].first, - :cassandra_port => node['cassandra']['cassandra_port'], - :cassandra_pwd => ENV['CS_PASSWORD'], - :sdc_usr => ENV['SDC_USER'], - :sdc_pwd => ENV['SDC_PASSWORD'] - }) -end - -execute "create-sdc-user" do - command "/tmp/create_cassandra_user.sh" - cwd "/tmp/" - action :run -end
\ No newline at end of file |