knife-oraclecloud Knife Plugin
A knife plugin to control Oracle Clouds
Install & Usage Instructions
Installation
Add this line to your application's Gemfile:
gem 'knife-oraclecloud'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install knife-oraclecloud
... or, even better, from within ChefDK:
$ chef gem install knife-oraclecloud
Configuration
In order to communicate with Oracle Cloud, you must specify your user credentials. You can specify them in your knife.rb:
knife[:oraclecloud_username] = 'myuser' knife[:oraclecloud_password] = 'mypassword' knife[:oraclecloud_api_url] = 'https://cloud.oracle.com' knife[:oraclecloud_domain] = 'my_identity_domain'
... or you can supply them on the command-line:
knife oraclecloud command --oraclecloud-username myuser ...