-
Umbrella Project: Knife
-
Project State Deprecated
-
Issues Response Time Maximum: NA
-
Pull Request Response Time Maximum: NA
This plugin has been merged into the knife code within Chef Infra Client itself at https://github.com/chef/chef
This knife plugin supports basic organization and user operations in Chef Server 12 or later.
- Documentation: https://github.com/chef/knife-opc/blob/master/README.md
- Source: http://github.com/chef/knife-opc/tree/master
- Issues: https://github.com/chef/knife-opc/issues
- Slack: http://community-slack.chef.io/
- Mailing list: https://discourse.chef.io/
This gem ships in Chef-DK / Chef Workstation so no installation is necessary.
Unlike other knife subcommands the subcommands in the knife-opc plugin make API calls against the root of your OPC installations API endpoint.
Typically the chef_server_url for your OPC installation may look like this:
chef_server_url https://chef.yourdomain.com/organizations/ORGNAME
To configure knife-opc, set the chef_server_root
option to the root of your OPC installation:
chef_server_root https://chef.yourdomain.com/
Note that most users in an OPC installation lack the permissions to run most of the commands from this plugin. On Chef Server 12, the majority of the commands provided by this plugin can be accessed via chef-server-ctl
wrapper commands that properly configure knife-opc for administrative action. We recommend you use the wrapper commands whenever possible
When using knife-opc directly, many of the commands require special permissions. For instance, in order to use commands such as knife opc org create
, you must authenticate as the 'pivotal' user.
Note that the key for the pivotal user is in /etc/opscode on any node in your Chef Server cluster. We recommend that you only use the pivotal user from a Chef Server itself and not copy this key off the machine. In that case, you should run knife opc on the Frontend server as root, with a knife.rb
in root's home directory.
current_dir = File.dirname(__FILE__)
log_level :info
log_location STDOUT
node_name "pivotal"
client_key "/etc/opscode/pivotal.pem"
chef_server_root "https://chef.yourdomain.com/"
Options
-w
,--with-uri
: Show corresponding URIs
Show a list of all users in your OPC installation.
-l
,--with-orgs
: Show the organizations of which the user is a member.
Shows the details of a user in your OPC installation.
-f FILENAME
,--filename FILENAME
: Write private key to FILENAME rather than STDOUT.-p
,--prompt-for-password
: Prompt for password rather than providing it on the command line.
Creates a new user in your OPC installation. The user's private key will be returned in response. Without this key, the user will need to log into the WebUI and regenerate their key before they can use knife.
Deletes the given OPC user.
-i FILENAME
,--input FILENAME
: Reads the user information (username
,email
,display_name
,first_name
,last_name
,middle_name
) from the input FILENAME and updates the given OPC user. Knife will accept a JSON file.
{
"username": "test",
"email": "[email protected]",
"display_name": "test abc",
"first_name": "test",
"last_name": "abc",
"middle_name": "",
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9wXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\nPukZaQcKSo4lnF9mMXXXXXXXXXXXXX7nKKRCaS5ranjsaQXeTJA\nLdFLYuL46XiUXXXXXXXXXXXXXXXXXGRwCrAnVyz0iSuNH7\nr9OZaWm+iVaHReFLleNT+CNuNXXXXXXXXXXXXXXXXXXwv9TFLCGiJyzzk\nhLnvgj8n39JtXiC6lIRXXXXXXXXX/ccd3yQusczFreQ\nyDcW+4HS9B6eLyNH1ty9IcFVbL4P4L/kKPHtzkXXXXXXXXXXXXXinPA\nYQIDAQAB\n-----END PUBLIC KEY-----\n\n"
}
-f FILENAME
,--filename FILENAME
: Opens FILENAME in $EDITOR. Updates the given OPC user when the file is saved.
Will open $EDITOR. When finished, Knife will update the given OPC user.
Command for managing password and authentication for a user.
The last argument should either be a string you want the password to or you can pass --enable_external_auth instead of a password to enable external authentication for this user.
-w
,--with-uri
: Show corresponding URIs-a
,--all-orgs
: Display hidden orgs
Show a list of all organizations in your OPC installation.
Shows description of given ORG_NAME.
-f FILENAME
,--filename FILENAME
: Write private key to FILENAME rather than STDOUT.-a USERNAME
,--association_user USERNAME
, Associate USERNAME with the organization after creation.
Creates a new OPC Organization. The private key for the organization's validator client is returned.
Deletes the given OPC organization.
Adds a user to an organization. Requires that the named organization and user both exist.
Removes a user from an organization. Requires that the named organization and user both exist, and that the user is currently associated with the organization.
- Attempting to delete and immediately recreate an organization will result in an error (a 500 or a 409 Conflict depending on the server version). This is because of a server-side cache that must be cleared. Restarting the frontend services before recreating the org is necessary to avoid the error.
For information on contributing to this project see https://github.com/chef/chef/blob/master/CONTRIBUTING.md
Copyright:: Copyright (c) 2011-2018 Chef Software, Inc.
License:: Apache License, Version 2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.