How to publish Ansible-container images via Travis-CI
How to publish docker images produced via ansible-container to Docker Hub using TravisCi
How to publish docker images produced via ansible-container to Docker Hub using TravisCi
In the last months my company started to move all our VMs from Ubuntu-based templates to CentOS ones. Regardless of the reason of this choice (I do not want to start a Ubuntu vs CentOS flame since I’m a fan of both distros) one of the biggest problem was to deal with the Apache Httpd…
This post is part of the Environment templates thread. In part one I show how to crate a template environment. In part two we used such template to re-create environment and run Integration Tests on it In this last section we will use the same template to produce and deploy a working environment of our purposes.…
Since the recently discovered bash vulnerabilty is forcing many IT specialist to run massive update to their systems, here you can find a simple ansible script to immediately update all your servers at once, would they be APT or YUM based. — – hosts: “{{deploy_host}}” remote_user: ansible_user sudo: yes vars: pkg_list_deb: – bash pkg_list_rpm: – bash tasks:…
Today I got a very interesting problem to solve: I had to delivery a bunch of libraries to an external developer to let him be able to fully compile a very complex build. Tasks wasn’t easy since he could not simply connect to our local Artifactory to perform the single maven build he would need…
First of all: this is a re-post of an article from another blog, I do not want to take someone else credit! You can find original post HERE 😉 Many thanks to its author, you save lot of my time! Just want to share it since it was really useful in fixing a bunch of…
Visto che l’installazione di Ansible su OsX non è stata delle più agevoli, cerchiamo di fare un recap dei passi necessari. Innanzitutto dovrete installare XCode CLI (Command Line Interface). No, Xcode da solo non basta, se non siete sicuri se lo avete già installato o meno potete sfruttare il seguente comando per verificarne la presenza:…
Se gestite un datacenter, sia esso di poche decine di macchine o di centinaia, vi troverete sicuramente di fronte al problema di tenere allineate e coerenti le configurazioni delle vostre macchine. Tipicamente vorrete la stessa versione di Mysql su tutte le macchine di database, la stessa versione di java, tomcat o altro nella rete applicativa…
Con questo post iniziamo finalmente a parlare di uno degli argomenti principali del Configuration Management: il deploy. Sulla scena esistono molti tool enterprise che occupano una grossa fetta di mercato come Puppet o Chef , ma io voglio parlarvi di un tool diverso: Ansible Ansible is a radically simple IT orchestration engine that makes your…