fosshelp.blogspot.com
fosshelp: January 2015
http://fosshelp.blogspot.com/2015_01_01_archive.html
Thursday, January 29, 2015. How to OpenStack load Drivers Extensions and Plugins using stevedore. Create a virtual environment. From stevedore import driver. P=driver.DriverManager(namespace="stevedore.example.formatter", name='simple'). Means, load the driver "simple" from then namespace "stevedore.example.formatter" . Namespace" is defined in setup.py as "entry points". Https:/ github.com/openstack/stevedore/blob/master/stevedore/example/setup.py. Entry points" from neutron project. Vim my driver.py.
garylarizza.com
Building a Functional Puppet Workflow Part 3b: More R10k Madness - Shit Gary Says
http://garylarizza.com/blog/2014/03/07/puppet-workflow-part-3b
Things I don't want to forget. Building a Functional Puppet Workflow Part 3b: More R10k Madness. In the last workflows post,. I talked about dynamic Puppet environments and introduced R10k, which is an awesome tool for mapping modules to their environments which are dynamically generated by git branches. I didn’t get out everything I wanted to say because:. I was tired of that post sitting stale in a Google Doc. It was already goddamn long. Let’s talk Hiera. That’s out on Github. The next logical step wo...
log.alexm.org
Alex Muntada | my $log;
https://log.alexm.org/author/alexmuntada
Indeed, there are many other ways to make the world a better place; but Free Software is the one I like the most. Arxiu de l'autor: Alex Muntada. Navegació per les entrades. Going to FOSDEM has always been a mix of feelings: is that time of year when you meet many friends from the Free Software community, you learn some interesting things that you didn’t know about, you share some knowledge, and you may have a fair amount of chocolate and beer in a usually cold weather. API is publicly available. Legacy ...
blog.csanchez.org
maven | Carlos Sanchez's Weblog
https://blog.csanchez.org/tag/maven-2
Carlos Sanchez's Weblog. Software at the end of the universe. Downloading artifacts from a Maven repository with Ansible. December 22, 2014. An example of downloading artifacts from a Maven repository using Ansible. Including a prebuilt Docker image. Install JDK and Maven. Using existing Ansible modules. Ansible-galaxy install geerlingguy.java ansible-galaxy install https:/ github.com/silpion/ansible-maven.git. Download any number of Maven artifacts optionally from different repositories. Hosts: localhos...
spredzy.wordpress.com
Yanis Guenane | IT Stuff that I stumble accross
https://spredzy.wordpress.com/author/spredzy
IT Stuff that I stumble accross. Linux, Puppet, Git, Open Source, etc…. Collaboratively work on a Puppet module. Vagrant r10k. April 6, 2014. Once a puppet module is in the forge it is quite easy to share it with other people to try it out. But until then, it can be somewhat cumbersome. They are several reasons why releasing a module to the forge can be delayed :. A dependent module has not been officialy released yet. A pull request being pending on another module one is relying on. I am sure you’...
bikerscum.org
Computers Archives - BikerscumBikerscum
http://www.bikerscum.org/category/computers
Motorcycles, Homebrewing, Shooting, and more…. Skip to primary content. Skip to secondary content. Working With pe gem Behind A Proxy. PuppetConf 2014 – Day 5. September 24, 2014. I was pretty wiped out last night and slept in a little this morning, but I still got over to the conference in time to get some breakfast before heading in to this morning’s keynotes. The first speaker was Dan Spurling of Getty Images. Which is an asynchronous, queue driven job management service that comes with Puppet. I&...
blog.viamentis.com
A simple Puppet module development workflow
http://blog.viamentis.com/2013/09/09/a-simple-puppet-module-development-workflow.html
A simple Puppet module development workflow. By Vamsee Kanakala · 09 Sep 2013. Recently I have released an update to puppet-solr. A puppet module I have created earlier for setting up a multi-core solr. While none of the material Im going to cover in this post is completely new, it represents a distillation of a process that I picked up from several. Vagrant is a quite a popular tool that makes working with virtualized environments easier. It is a very useful abstraction layer over VirtualBox. So after a...
terrarum.net
Puppet Testing Part 1
http://www.terrarum.net/blog/puppet-testing-part-1.html
Puppet Testing Part 1. This article is the first in a series about testing Puppet manifests. It will cover the basics such as. And Smoke Testing and detailed testing with. A Note About Facts. For systems administrators, testing usually involves configuring something on a test server before it’s done on a production server. It’s understandable, then, why the development world of testing (test driven development, unit tests, behavior driven development, etc) can seem very foreign. I’m sure lots of people h...