https://github.com/msimonin/snooze-puppet
puppet recipes to install snooze
https://github.com/msimonin/snooze-puppet
Last synced: 3 months ago
JSON representation
puppet recipes to install snooze
- Host: GitHub
- URL: https://github.com/msimonin/snooze-puppet
- Owner: msimonin
- Created: 2013-05-17T09:21:32.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-02T11:39:50.000Z (about 11 years ago)
- Last Synced: 2025-01-12T18:38:10.456Z (5 months ago)
- Language: Puppet
- Size: 19.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
snooze-puppet
=============If you intend to use puppet to install Snooze, you will find here the recipes to install the snoozenode system service.
You will be able to install a bootstrap, a localcontroller or a groupmanager quiet easily.Starting with 2.1.0 you will be able to install the ``snoozeimages`` and the ``snoozeec2`` system services aswell.
## Examples
This instanciation will produce a local controller on your node. You can check the defaut parameters in the `manifest/init.pp` of the snoozenode module
```puppet
class {
'snoozenode':
type => "localcontroller",
}```
This will install ``snoozeec2`` and ``snoozeimages`` on the same node :
```puppet
class {
"snoozeimages":
listenPort => 7654
}class {
"snoozeec2":
listenPort => 4567,
imageRepositoryPort => 7654
}```