GithubHelp home page GithubHelp logo

pir-b / puppetlabs-puppetserver_gem Goto Github PK

View Code? Open in Web Editor NEW

This project forked from puppetlabs-toy-chest/puppetlabs-puppetserver_gem

0.0 0.0 0.0 39 KB

This module provides management of Ruby gems for Puppet Server.

Ruby 99.29% Puppet 0.71%

puppetlabs-puppetserver_gem's Introduction

puppetserver_gem module

Table of Contents

  1. Module Description - What the module does and why it is useful
  2. Setup - The basics of getting started with puppetserver_gem
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Module description

This module provides management of Ruby gems for both PE and FOSS Puppet Server. It supercedes the deprecated pe_puppetserver_gem. This uses gem as a parent and uses puppetserver gem command for all gem operations.

Setup

To install a gem from RubyGems into Puppet Server:

    package { 'json':
      ensure   => present,
      provider => puppetserver_gem,
    }

Usage

To add the 'json' gem from the default gem sources:

By default there is one gem source which is https://rubygems.org

    package { 'json':
      ensure   => present,
      provider => puppetserver_gem,
    }

To uninstall the 'json' gem:

    package { 'json':
      ensure   => absent,
      provider => puppetserver_gem,
    }

This is equivalent to the command line: puppetserver gem install --no-rdoc --no-ri json

To add a specifc version of a gem from a specific gem repository without first checking the default gem sources:

    package { 'mygem':
      ensure          => '1.2',
      install_options => ['--clear-sources', '--no-document'],
      provider        => puppetserver_gem,
      source          => "https://some-gem-repo.org",
    }

This is equivalent to the command line: puppetserver gem install -v 1.2 --clear-sources --no-document --source https://some-gem-repo.org mygem

Reference

Proxy support

Proxy servers are supported via through the .gemrc file which is normally present at /root/.gemrc:

http_proxy: http://proxy.megacorp.com:8888
https_proxy: http://proxy.megacorp.com:8888

Limitations

This module has been tested on PE and FOSS. It is a wrapper around the puppetserver gem command line, and so has the same limitations around Gems with native (C) extensions

Due to a change in Puppet, versions of this module prior to 1.1.1 are incompatible with versions of Puppet prior to 5.5.16 in the Puppet 5 series, 6.0.10 in the 6.0 series, and 6.4.3 in the 6.4 series. Related failures can raise "No command gemcmd defined for provider puppetserver_gem" errors during Puppet runs. To resolve the issue, ensure that version 1.1.1 of the module is installed. For details, see PUP-6488.

Development

Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.

We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.

For more information, see our module contribution guide.

Testing

At the minute, there is only an acceptance test for FOSS Puppet Server.

puppetlabs-puppetserver_gem's People

Contributors

tkishel avatar hunner avatar eputnam avatar pmcmaw avatar davids avatar gguillotte avatar eimlav avatar bmjen avatar geoffwilliams avatar jonnytdevops avatar justinstoller avatar mhynlo avatar sarameisburger avatar sanfrancrisko avatar sheenaajay avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.