This cookbook installs and configures Sonatype Nexus 3 Repository Manager OSS according to https://books.sonatype.com/nexus-book/reference3/install.html
Use the nexus3 resource to download and install the latest Nexus 3 Repository Manager OSS.
Use the nexus3_api resource to configure Nexus 3 Repository Manager via its REST API.
Use the nexus3_repo resource to configure Nexus 3 repositories.
- Chef 12.14.34+
- ark cookbook
- Note:
include_recipe 'ark'
is required for Windows servers, as it is not implicit.
- Note:
- Java 8+ from Oracle or OpenJDK (not installed, pick your own)
- CentOS, RedHat, Fedora
- Debian, Ubuntu
- Windows
Downloads and installs the latest Nexus 3 Repository Manager OSS.
node['nexus3']['url']
- The download URL of Nexus 3 Repository Manager. This can be a specific version of Nexus Repository Manager OSS or Nexus Repository Manager Pro. Defaulthttp://download.sonatype.com/nexus/3/latest-unix.tar.gz
.node['nexus3']['checksum']
(optional) - The checksum of Nexus Repository Manager. Defaultnil
.node['nexus3']['path']
- Install directory. Default Linux:/opt
Windows:#{ENV['SYSTEMDRIVE']}
.node['nexus3']['data']
- Data directory. Default#{node['nexus3']['path']}/sonatype-work/nexus3
.node['nexus3']['home']
- Link to install directory. Default#{node['nexus3']['path']}/nexus3
.node['nexus3']['properties_cookbook']
- Cookbook that contains the template to use. Defaultnexus3
.node['nexus3']['properties_source']
- Template file that will be used to create the#{data}/etc/nexus.properties
file. Defaultnexus.properties.erb
.node['nexus3']['properties_variables']
- A Hash of variables that are passed into a template file. Default{ host: '0.0.0.0', port: '8081', args: '${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml', context_path: '/' }
.node['nexus3']['vmoptions_cookbook']
- Cookbook that contains the template to use. Defaultnexus3
.node['nexus3']['vmoptions_source']
- Template file that will be used to create the#{home}/bin/nexus.vmoptions
file. Defaultnexus.vmoptions.erb
.node['nexus3']['vmoptions_variables']
- A Hash of variables that are passed into a template file. Note that data directory will be injected into the hash if it is not defined. Default{ Xms: '1200M', Xmx: '1200M' }
.
The default value for the HTTP port used to access the repository manager user interface and resources is 8081. To change HTTP Port to 8443, Context Path to /components/ and serve HTTPS directly set the properties_variables hash with the updated settings:
include_recipe 'java_se'
node.default['nexus3']['properties_variables'] = { port: '8443', args: '${jetty.etc}/jetty.xml,${jetty.etc}/jetty-https.xml,${jetty.etc}/jetty-requestlog.xml', context_path: '/components/' }
include_recipe 'nexus3'
The default and maximum heap sizes for the repository manager are a value of 1200M, suitable for most usage patterns. To install latest nexus3 with 1500M initial memory and 2G max memory, set it in the vmoptions_variables:
include_recipe 'java_se'
node.default['nexus3']['vmoptions_variables'] = { Xms: '1500M', Xmx: '2G' }
include_recipe 'nexus3'
Downloads and installs the latest Nexus Repository Manager OSS v3.
:install
- Default. Downloads and installs the latest Nexus Repository Manager OSS v3.:uninstall
- Removes service and install directory. Uninstall will not delete the data directory unless the default data configuration has changed to place it under the install directory (which is not recommended).:nothing
- Define this resource block to do nothing until notified by another resource to take action. When this resource is notified, this resource block is either run immediately or it is queued up to be run at the end of the chef-client run.
servicename
- Name of service. Default value is the name of the resource block.user
- The owner of nexus3. Creates a nexus user when nil or uses value passed in. Defaultnil
.group
- The group of nexus3. Creates a nexus group when nil or uses value passed in. Defaultnil
.url
- The download URL of latest Nexus 3 Repository Manager OSS. This can be updated to download a specific version of Nexus Repository Manager OSS or Nexus Repository Manager Pro. Defaultnode['nexus3']['url']
.checksum
(optional) - The checksum of Nexus Repository Manager. Defaultnode['nexus3']['checksum']
.data
- Data directory. Defaultnode['nexus3']['data']
.path
- Install directory. Defaultnode['nexus3']['path']
.home
- Link to install directory. Defaultnode['nexus3']['home']
.properties_cookbook
- Cookbook that contains the template to use. Defaultnode['nexus3']['properties_cookbook']
.properties_source
- Template file that will be used to create the#{data}/etc/nexus.properties
file. Defaultnode['nexus3']['properties_source']
.properties_variables
- A Hash of variables that are passed into a template file. Defaultnode['nexus3']['properties_variables']
.vmoptions_cookbook
- Cookbook that contains the template to use. Defaultnode['nexus3']['vmoptions_cookbook']
.vmoptions_source
- Template file that will be used to create the#{home}/bin/nexus.vmoptions
file. Defaultnode['nexus3']['vmoptions_source']
.vmoptions_variables
- A Hash of variables that are passed into a template file. Note that data directory will be injected into the hash if it is not defined. Defaultnode['nexus3']['vmoptions_variables']
.
The default value for the HTTP port used to access the repository manager user interface and resources is 8081. To change HTTP Port to 8443, Context Path to /components/ and serve HTTPS directly, set the properties_variables hash with the updated settings:
include_recipe 'java_se'
nexus3 'nexus' do
properties_variables(
host: '0.0.0.0',
port: '8443',
args: '${jetty.etc}/jetty.xml,${jetty.etc}/jetty-https.xml,${jetty.etc}/jetty-requestlog.xml',
context_path: '/components/'
)
action :install
end
The default and maximum heap sizes for the repository manager are a value of 1200M, suitable for most usage patterns. To install latest nexus3 with 1500M initial memory and 2G max memory, set it in the vmoptions_variable:
include_recipe 'java_se'
nexus3 'nexus' do
vmoptions_variables(
Xms: '1500M',
Xmx: '2G'
)
action :install
end
Configures Nexus 3 Repository Manager via API.
:run
- Default. Run the named script on the repository manager. The script must already have been created.:create
- Creates or updates the named script on the repository manager (default action).:delete
- Deletes the named script from the repository manager.
script_name
- Name of script. Default value is the name of the resource block.content
- Content of script. This is usually Groovy, see Sonatype Nexus 3 documentation for more information, or see the example scripts in therepo
resource.args
- Hash or Array arguments passed when:run
is called.endpoint
- REST API endpoint. Defaultnode['nexus3']['api']['endpoint']
.username
- Username to run the script as. Defaultadmin
.password
- Password of username. Defaultadmin123
.script_cookbook
- Cookbook that contains the file to use. Defaultnode['nexus3']['api']['script_cookbook']
.script_source
- Name of the file in#{script_cookbook}/files/default
or the path to a file located in#{script_cookbook}/files
. The path must include the file name and its extension. . Defaultnil
.
See api_examples for more examples of using nexus3_api resource to configure Nexus Repository Manager. Pull Requests improving or adding additional API Examples are welcome and encouraged.
Creates or updates private script on Nexus 3 Repository Manager, then runs the script.
nexus3_api 'private' do
content "repository.createMavenHosted('private')"
action :run
end
Configures Nexus 3 repositories via API.
:create
- Creates or updates a repository, passing a configuration viaargs
.:delete
- Deletes a repository.
repo_name
- Name of repository to act on, defaults to resource attribute name.repo_type
- Type (or recipe in Nexus 3 words) of repository to create, amongmaven2-hosted
,maven2-proxy
, 'npm-hosted`, ... (default: 'maven2-hosted')attributes
- Hash of attributes passed to the:create
action, used to specify repository attributes for creation or update.online
- Whether to put the repository online or not (default: true).api_url
- Nexus 3 API endpoint (default: node['nexus3']['api']['endpoint']).api_user
- Nexus 3 API user name (default: 'admin').api_password
- Nexus 3 API password (default: 'admin123').
The nexus3 cookbook includes custom ChefSpec matchers you can use to test your own cookbooks.
Example Matcher Usage
expect(chef_run).to install_nexus('nexus').with(
data: '/opt/repository/data'
)
Nexus3 Cookbook Matchers
- install_nexus3(resource_name)
- uninstall_nexus3(resource_name)
- run_nexus3_api(resource_name)
- create_nexus3_api(resource_name)
- delete_nexus3_api(resource_name)
- list_nexus3_api(resource_name)
- create_nexus3_repo(resource_name)
- delete_nexus3_repo(resource_name)
- Ask specific questions on Stack Overflow.
- Report bugs and discuss potential features in Github issues.
Please refer to CONTRIBUTING.
Authors: Denis Hoer ([email protected])
License: MIT - see the accompanying LICENSE file for details.