Offline puppet agent installation from puppet master- Opensouce Puppet

0

I need to perform offline installation of puppet agents on 300+ servers. Servers vary in architecture and design and have no access to internet. Kindly suggest the best way to achieve this given puppet server has access internet

Gautam Jose

Posted 2015-09-23T05:13:24.367

Reputation: 128

Answers

0

There are two common approaches to installing a package on a server with no internet connectivity.

  1. Create a golden image with package already installed

  2. Use a local package repository

Likely it would be best to use a combination of these solutions. Create an OS image that contains the puppet agent installed, and / or include an apt or yum repository that is pointed to your local repo server (pulp, spacewalk).

One other option would be to download the package locally, and ssh it to every machine.

https://unix.stackexchange.com/questions/89222/how-to-download-a-file-from-repo-and-install-it-later-w-o-internet-connection

spuder

Posted 2015-09-23T05:13:24.367

Reputation: 8 755