No commit activity in last 3 years
No release in over 3 years
Provisioner for creating MAAS in Chef Provisioning.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
~> 3.0

Runtime

>= 12.0.0
>= 0
 Project Readme

chef-provisioning-maas

An implementation of the MAAS driver for chef-provisioning.

An example of the recipe you can use:

# coding: utf-8
require 'chef/provisioning'

with_driver 'maas'
Chef::Config.knife[:maas_site] = 'http://10.0.1.138/MAAS/'
Chef::Config.knife[:maas_api_key] = 'zmY4nQFAKE2EmfPP:RkDgWsAPI_KEYnfnKkG6:VBnvv3IS_HERE_gJ7MGSRkUX84npnY9Jg'

machine 'node1' do
  recipe 'base'
  chef_environment '_default'
  machine_options {
     deploy_options: {
      zone: zone2
    }
  }
  converge true
end