Ales Nosek - The Software Practitioner

Helping you navigate the world of Kubernetes.

May 22, 2016 - Comments - cloud

Test Driving Openstack Manila

Do you need to provision an NFS share for your Hadoop cluster? And what about creating a CIFS share to make your files accesible to the Windows clients? Manila is a provisioning and management service for shared file systems within OpenStack. Let’s test-drive it in this blogpost.

Mar 27, 2016 - Comments - cloud

Tripleo Installer — The Good, the Bad and the Ugly

TripleO is an OpenStack deployment and management tool I’ve been using since the Kilo release of OpenStack. It does its job pretty well, however not everything is perfect. My experience presented in this article applies more or less to the Red Hat’s OpenStack director too, as the Red Hat OpenStack director is a downstream version of TripleO.

Nov 9, 2015 - Comments - cloud devops

Assigning Roles to Nodes Directly in RDO

RDO Manager defines multiple roles that nodes can play in OpenStack deployment. For large-sized installations, RDO features automatic assignment of roles to nodes. This assignment is based on the facts that RDO obtained about each node during the introspection. However, for smaller deployments, you might prefer to assign the roles to the available nodes by hand. It was not straight forward for me to find out about this manual option even when it is described in the TripleO documentation. Let’s review the required configuration steps in this blogpost.

Aug 3, 2015 - Comments - devops

Improving Ansible's ini_file Module

Update 3/31/2016: The implementation of the ini_file module described in this blogpost has been merged into Ansible version 2.0.

For editing Windows INI files, Ansible comes with an ini_file module built in. Unfortunately, this module uses Python’s ConfigParser module which reformats the entire INI file whenever you want to change a single line. It removes all the comment lines, too. For me this was not acceptable. After looking for a possible solution I decided to improve the ini_file module and created ini_file2. I realized how easy it is to create an Ansible module.