This cookbook is used for installing the Octopus Deploy server and Tentacle on Microsoft Windows machines.
**NOTE: This cookbook is managed by Cvent and not by the Octopus Deploy team.
This is pre release and there will be major changes to this before its final release. The recipes for installation and configuration will be switched into resources so people can use the library easier. Once this is found stable it will be released as version 1.0.0, until this point lock down to any minor version that you use.
- :install: Install a version of Octopus Deploy server
- :configure: Install a version of Octopus Deploy server and configure it
- :remove: Uninstall a version of the Octopus Deploy Server if it is installed
- :instance: Name attribute. The Octopus Deploy Server instance name (used for configuring the instance not install)
- :version: Required. The version of Octopus Deploy Server to install
- :checksum: The SHA256 checksum of the Octopus Deploy Server msi file to verify download
- :home_path: The Octopus Deploy Server home directory (Defaults to C:\Octopus)
- :install_url: The url for the installer to download.
- :config_path: The Octopus Deploy Server config file path (Defaults to C:\Octopus\OctopusServer.config)
- :connection_string: The Octopus Deploy Server connection string to the MSSQL Server instance. Required for
:configure
action. - :master_key: The Octopus Deploy Server master key for encryption, leave blank to generate one at creation
- :node_name: The Octopus Deploy Server Node Name, will default to chef node name
- :create_database: Whether Octopus Deploy Server should create the database with the connection string provided (Defaults to false)
- :admin_user: A default admin user for Octopus Deploy Server to create. Requires machine to be joined to active directory, and
admin_user
must be an AD user - :license: The raw license key for Octopus Deploy Server to use
- :start_service: Whether to start the Octopus Deploy Server service after creation of the instance (Defaults to True)
Install version 3.17.1 of Octopus Deploy Server
octopus_deploy_server 'OctopusServer' do
action :install
version '3.17.1'
checksum '<SHA256-checksum>'
end
This cookbook does not setup the database. You will need a preexisting SQLEXPRESS/MSSQL database instance
octopus_database = "OctopusDeploy"
octopus_deploy_server 'OctopusServer' do
action [:install, :configure]
version '3.17.1'
checksum'cee5ef29d6e517d197687c50a041be47a3bd56a65010051ddc53dc0c515d39e5'
connection_string "Data Source=(local)\\SQLEXPRESS;Initial Catalog=#{octopus_database};Integrated Security=True"
node_name node.name
create_database true
license '1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ'
start_service true
end
- :install: Install a version of Octopus Deploy Tentacle (Default)
- :configure: Configure an instance of the octopus Deploy Tentacle
- :register: Register Tentacle with Octopus Deploy Server
- :remove: Remove an instance of the Octopus Deploy Tentacle
- :uninstall: Uninstall a version of the Octopus Deploy Tentacle if it is installed
- :instance: Name attribute. The Octopus Deploy Tentacle instance name (used for configuring the instance not install)
- :version: Required. The version of Octopus Deploy Tentacle to install
- :checksum: The SHA256 checksum of the Octopus Deploy Tentacle msi file to verify download
- :home_path: The Octopus Deploy Instance home directory (Defaults to C:\Octopus)
- :config_path: The Octopus Deploy Instance config file path (Defaults to C:\Octopus\Tentacle.config)
- :app_path: The Octopus Deploy Instance application directory (Defaults to C:\Octopus\Applications)
- :trusted_cert: The Octopus Deploy Instance trusted Server cert
- :port: The Octopus Deploy Instance port to listen on for listening Tentacle (Defaults to 10933)
- :configure_firewall: Whether cookbook will open firewall on listen Tentacles (Defaults to false)
- :polling: Whether this Octopus Deploy Instance is a polling Tentacle (Defaults to False)
- :cert_file: Where to export the Octopus Deploy Instance cert (Defaults to C:\Octopus\tentacle_cert.txt)
- :upgrades_enabled: Whether to upgrade or downgrade the Tentacle version if the windows installer version does not match what is provided in the resource. (Defaults to True)
- :server: Url to Octopus Deploy Server (e.g https://octopus.example.com)
- :api_key: Api Key used to register Tentacle to Octopus Server
- :roles: Array of roles to apply to Tentacle when registering with Octopus Deploy Server (e.g ["web-server","app-server"])
- :environment: Which environment or environments the Tentacle will become part of when registering with Octopus Deploy Server (Defaults to node.chef_environment). Accepts string or array.
- :forced_registration: Whether the command should include
--force
to support overwriting tentacle references that already exist in Octopus Server - :tenants: Optional array of tenants to add to the Tentacle. Tenant must already exist on Octopus Deploy Server. Requires Octopus 3.4
- :tenant_tags: Optional array of tenant tags to add to the Tentacle. Tags must already exist on Octopus Deploy Server. If tag is part of a tag group, include the group name followed by a slash
<groupname>/<tag>
. e.g ( Priority/VIP, Datacenter/US ).. Requires Octopus 3.4 - :tentacle_name: Optional custom name for Tentacle. Defaults to the Chef node name
- :service_user: Optional service user name. Defaults to Local System
- :service_password: Password for service user
- :public_dns: Optional DNS/IP value to use when registring with the octopus server. Defaults to node['fqdn']
- :tenated_deployment_participation: Optional type of deployments allowed [:Untenanted, :Tenanted, :TenantedOrUntenanted] (requires tentacle 3.19.0 or newer)
This will simply install the version of the Tentacle that is specified.
octopus_deploy_tentacle 'Tentacle' do
action :install
version '3.2.24'
checksum '147f84241c912da1c8fceaa6bda6c9baf980a77e55e61537880238feb3b7000a'
end
This will install the Tentacle and then configure the Tentacle on the machine to communicate with the Octopus Deploy server. It can also update firewall rules if enabled.
octopus_deploy_tentacle 'Tentacle' do
action [:install, :configure]
version '3.2.24'
checksum '147f84241c912da1c8fceaa6bda6c9baf980a77e55e61537880238feb3b7000a'
trusted_cert 'b5b7ea6537852fb5b7ea6537852f3428'
# You can enable this resource to update firewall rules as well
configure_firewall true
end
This will check if the Tentacle is registered on the Octopus Deploy server and if it is not will register the Tentacle in the environment with the tags that are specified.
# You will first need to generate an api key
# In Octopus Deploy Server GUI click your Name -> Profile -> API keys
octopus_deploy_tentacle 'Tentacle' do
action :register
server 'https://octopus.example.com'
api_key '12345678910'
roles ['database']
# You can set polling to true for a polling Tentacle setup
# polling true
end
- :install: Install a version of Octopus Deploy tools (Default)
- :path: The Octopus Deploy tools directory (Defaults to C:\Octopus)
- :source: Required. The url to download the tools from
- :checksum: The SHA256 checksum of the Octopus Deploy tools zip file to verify download
This will simply install the version of the tools that is specified to the C:\fun
folder
octopus_deploy_tools 'C:\fun' do
action :install
source 'https://download.octopusdeploy.com/octopus-tools/4.5.1/OctopusTools.4.5.1.zip'
checksum 'd6794027d413764e7a892547fba9ed410bfa0a53425b178f628128d2b1aebb5f' # sha256 checksum
end
One major assumption of this cookbook is that you already have .net40 installed on your server. If you do not then you might need to do that before this cookbook. In addition, some of the resources in here require Chef version 12 in order to work.
This does not work with Octopus Deploy versions less than 3.2.3 because of a bug in exporting Tentacle certificates
Tentacle roles are only used the first time a Tentacle is registered with an Octopus Deploy Server. Updating Tentacle roles in cookbook will not update roles on Octopus Deploy Server.
Registering multiple Tentacles on the same machine is not supported.
Switching Tentacle modes between 'polling' & 'listening' is not currently supported.
- Author:: Brent Montague (bmontague@cvent.com)
Copyright:: 2015, Cvent, Inc.
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.
Please refer to the license file for more license information.