Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/containersolutions/terraform-provider-cobbler
Terraform provider for Cobbler
https://github.com/containersolutions/terraform-provider-cobbler
Last synced: 8 days ago
JSON representation
Terraform provider for Cobbler
- Host: GitHub
- URL: https://github.com/containersolutions/terraform-provider-cobbler
- Owner: ContainerSolutions
- License: apache-2.0
- Created: 2015-10-14T12:59:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-08T14:03:50.000Z (almost 9 years ago)
- Last Synced: 2024-06-21T12:57:53.504Z (5 months ago)
- Language: Go
- Size: 0 Bytes
- Stars: 18
- Watchers: 10
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-provider-cobbler
A Terraform provider for CobblerThe terraform-provider-cobbler allows for communication between Terraform and Cobbler. It was created to
aid in the provisioning of machines where the available infrastructure does not provide dhcp or pxe-like
services itself. An obvious use case is bare-metal server racks. A Cobbler instance is connected to the
infrastructure and the Terraform provider allows for management of systems in Cobbler. Cobbler in turn
provides the services needed for the provisioning of the machines: ip address, hostname, pxe boot image,
kickstart file.Currently the provider only allows for systems to be created and deleted.
DHCP settings, software distributions, kickstart files and profiles should all be provided.
Some of these are on the roadmap to be managed through Terraform.This provider uses the [Cobblerclient](https://github.com/ContainerSolutions/cobblerclient "Cobblerclient") to talk to Cobbler.
### Configuration
Check the `config.tf.example` file to see how to configure this.### Usage
Create a `config.tf` file and then run
`$ terraform apply`### Features / Roadmap
- [x] Create System
- [x] Destroy System
- [ ] Update System
- [ ] Support for creating distros. It would be nice if we could just simply pass along the URL to
the ISO file and the provider took care of the rest (downloading, mounting, importing, unmounting,
deleting temp files...).
- [ ] Support for managing profiles