Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

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 ...