Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voxpupuli/puppet-community_kickstarts
Community provided kickstart files
https://github.com/voxpupuli/puppet-community_kickstarts
hacktoberfest linux-puppet-module puppet redhat-puppet-module
Last synced: 3 months ago
JSON representation
Community provided kickstart files
- Host: GitHub
- URL: https://github.com/voxpupuli/puppet-community_kickstarts
- Owner: voxpupuli
- License: apache-2.0
- Created: 2016-01-07T23:35:58.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T18:33:26.000Z (5 months ago)
- Last Synced: 2024-10-29T14:22:34.094Z (3 months ago)
- Topics: hacktoberfest, linux-puppet-module, puppet, redhat-puppet-module
- Language: Ruby
- Homepage: https://forge.puppet.com/puppet/community_kickstarts
- Size: 226 KB
- Stars: 3
- Watchers: 42
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Kickstart module for Puppet
[![Build Status](https://travis-ci.org/voxpupuli/puppet-community_kickstarts.png?branch=master)](https://travis-ci.org/voxpupuli/puppet-community_kickstarts)
[![Code Coverage](https://coveralls.io/repos/github/voxpupuli/puppet-community_kickstarts/badge.svg?branch=master)](https://coveralls.io/github/voxpupuli/puppet-community_kickstarts)
[![Puppet Forge](https://img.shields.io/puppetforge/v/puppet/community_kickstarts.svg)](https://forge.puppetlabs.com/puppet/community_kickstarts)
[![Puppet Forge - downloads](https://img.shields.io/puppetforge/dt/puppet/community_kickstarts.svg)](https://forge.puppetlabs.com/puppet/community_kickstarts)
[![Puppet Forge - endorsement](https://img.shields.io/puppetforge/e/puppet/community_kickstarts.svg)](https://forge.puppetlabs.com/puppet/community_kickstarts)
[![Puppet Forge - scores](https://img.shields.io/puppetforge/f/puppet/community_kickstarts.svg)](https://forge.puppetlabs.com/puppet/community_kickstarts)#### Table of Contents
1. [Overview](#overview)
2. [Module Description - What the module does and why it is useful](#module-description)
3. [Setup - The basics of getting started with community_kickstarts](#setup)
* [What community_kickstarts affects](#what-community_kickstarts-affects)
* [Setup requirements](#setup-requirements)
* [Beginning with community_kickstarts](#beginning-with-community_kickstarts)
4. [Usage - Configuration options and additional functionality](#usage)
5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)
5. [Limitations - OS compatibility, etc.](#limitations)
6. [Development - Guide for contributing to the module](#development)## Overview
A collection of kickstart templates from the VoxPupuli community. Each type can
be used as is to build a puppet-ready VM, or customized with minimal knowledge
of kickstart syntax.## Usage
Choose one of the available base types. Add the definition without any options
for a puppet-ready kickstart file with sane defaults located at the specified
location.community_kickstarts::centos7{'/var/www/html/centos7.ks':}
You may also override the default parameters. The options may vary between types
, please review each option for the parameter list. You may wish to change the
default password:community_kickstarts::centos7{'/var/www/html/centos7.ks:
rootpw => '--plaintext p4ssW0rd',
}All types have the `required_packages` parameter, allowing you to customize what
is and is not installed on the new VM. You can override the default list by
providing an array to the parameter. Add an `@` before package group names and a
`-` before packages or groups you wish to be removed. Remember that all packages
being added must exist or the kickstart effort will fail.community_kickstarts::centos7{'/var/www/html/centos7.ks:
required_packages => [
'@core',
'@file-print-server-environment',
'git',
'-man',
'-gcc',
],
}## Available types
### CentOS 7
Minimal install of CentOS 7 from the CentOS Mirrors
## How It Works
The kickstart generation is done with [danzilio/kickstart](https://github.com/danzilio/puppet-kickstart/).
Please review it's documentation for more details.