Listing Thumbnail

    Configuration Manager By Puppeteers Oy

     Info
    Sold by: Puppeteers 
    Setup Puppetserver, PuppetDB and Puppetboard effortlessly
    Listing Thumbnail

    Configuration Manager By Puppeteers Oy

     Info
    Sold by: Puppeteers 

    Overview

    Play video

    This product provides an easy-to-use Puppet-based installer for trivially setting up Puppetserver with PuppetDB and Puppetboard. The installer can be used interactively or in fully automated fashion. It is recommended to use a medium instance or larger as puppetserver requires a fair amount of memory.

    Highlights

    • Trivially setup Puppetserver with PuppetDB and Puppetboard

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    Ubuntu 20.04

    Typical total price

    This estimate is based on use of the seller's recommended configuration (t3.large) in the US East (N. Virginia) Region. View pricing details

    $0.083/hour

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Configuration Manager By Puppeteers Oy

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (116)

     Info
    • ...
    Instance type
    Product cost/hour
    EC2 cost/hour
    Total/hour
    t2.medium
    $0.00
    $0.046
    $0.046
    t2.large
    $0.00
    $0.093
    $0.093
    t2.xlarge
    $0.00
    $0.186
    $0.186
    t2.2xlarge
    $0.00
    $0.371
    $0.371
    t3.medium
    $0.00
    $0.042
    $0.042
    t3.large
    Recommended
    $0.00
    $0.083
    $0.083
    t3.xlarge
    $0.00
    $0.166
    $0.166
    t3.2xlarge
    $0.00
    $0.333
    $0.333
    t3a.medium
    $0.00
    $0.038
    $0.038
    t3a.large
    $0.00
    $0.075
    $0.075

    Additional AWS infrastructure costs

    Type
    Cost
    EBS General Purpose SSD (gp2) volumes
    $0.10/per GB/month of provisioned storage

    Vendor refund policy

    No refunds will be issued for usage of this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Additional details

    Usage instructions

    Connect to the instance with SSH:

    $ ssh -i $HOME/<your-keypair>.pem ubuntu@<your-instances-ip>

    To launch the Configuration Manager installer do:

    $ sudo -i $ hostnamectl set-hostname your-desired-hostname $ puppetmaster-installer -i

    You may want to define PuppetDB and possibly Puppetboard password, but if you don't, randomized passwords will be generated for you. In most cases the default options are adequate. If you installed Puppetboard, it will be listening at https://<instance-ip>/puppetboard - the username and password will be printed into the console at the end of the install. The settings that were chosen can be viewed by launching the installer in interactive mode (-i) again and choosing "Display current options".

    The security groups provided by us allows traffic to Puppetmaster (tcp/8140) and Puppetboard (tcp/443) from all RFC1918 private networks and SSH from anywhere. You may want to restrict access further by creating your own security groups.

    More thorough usage instructions are available here:

    https://www.puppeteers.net/documentation/configuration-manager-image-documentation/ 

    Resources

    Vendor resources

    Support

    Vendor support

    Running installer on fresh cloud instances info@puppeteers.fi 

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    4
    1 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    100%
    0%
    0%
    0%
    1 AWS reviews
    Adam

    Easy Puppet Server with Some Tweaks Needed

    Reviewed on Mar 31, 2020
    Purchase verified by AWS

    This AMI was easy to launch and after a few tweaks was in our environment and ready to start managing servers.

    After launching it is highly recommended that if you are not going to use the AWS assigned hostname in your puppet configs that you rename the server BEFORE running the install script indicated in the usage instructions.

    After the installations script was run, at least in my case, I was required to do the following to make puppetboard work.
    Apache was throwing 500 errors and 'ImportError: No module named parse' was showing up in the logs.
    Python is in a vitual environment on this AMI so you must switch to it an install.
    Following that I still got the error and determined that a tweak to the python script '/srv/puppetboard/virtenv-puppetboard/lib/python2.7/site-packages/pypuppetdb/api.py' was required.
    The import of parse was written in support of Python 3, but this system runs with Python 2.
    So I used the following to make the script more flexible.
    try:
    from urllib import quote # Python 2.X
    except ImportError:
    from urllib.parse import quote # Python 3+

    After that, smooth sailing. As a puppet admin I recommend this AMI bearing in mind the tweaks above or if the vendor fixes the AMI in the future to incorporate these tweaks.

    View all reviews