ArgoCD
This article is about Argocd and how to deploy applications in a Kubernetes cluster with Kustomize and the GitOps method. Kubernetes A lot of peoples thinks Kubernetes is very hard… But in fact you just have a few concepts to learn.In a Kubernetes cluster, everything is Object. Declare your object (Kind) specification and Kubernetes will…
Genymobile Screen Copy
Juste un petit post pour parler de ma découverte du jour : scrcpy ! https://github.com/Genymobile/scrcpy Un petit outil qui permet de faire du miroir d’écran Android sur son PC via USB (adb). Pour cela, il suffit simplement de télécharger la dernière version de scrcpy, d’activer le debug USB dans les options développeur de son téléphone…
Meetup Grafana Lyon n°2
Hello ! Un petit poste pour annoncer le second Meetup Grafana Lyon. Celui-ci aura lieu le jeudi 14 décembre à L’antidote Pub, à Vieux Lyon. Au programme : Les dernière nouveautés Grafana Automatisation avec Ansible (nouveaux modules grafana_plugin et grafana_dashboard) De la bière et des chips !
HAPROXY : client certificate validation
Today at the office, the security team ask me to secure our reverse proxy by adding a client certificate validation to only trust the client host CN. So here is my method to verify the client certificate CN according to the expected one : frontend frontend_foo mode tcp bind *:443 ssl crt /etc/ssl/certs/haproxy_reverse.proxy.company.com.pem ca-file /etc/ssl/certs/autorite_chain_haproxy.pem…
Marcus Bière
Aperogeek c’est de l’actu Geek, mais aussi de l’actu Bières ! Du coup je vais vous présenter aujourd’hui une brasserie que j’aprécie particulièrement : Marcus Bière, la bière de la drôme ! Situé dans le petit village de Saou au coeur de la drôme, Marcus Bière est une brasserie artisanale qui fait de la super…
Meetup Grafana Lyon
J’ai créé le groupe Meetup Grafana Lyon, et je compte organiser un premier meetup Grafana prochainement ! Le rendez vous est fixé au mardi 12 Septembre dans un pub que je connais bien : L’antidote ^_^’ Au niveau des présentations, il y aura : Automatisation de la gestion des datasources grafana avec un module…
Kapacitor : Alerting for your timeseries
I already talk about monitoring docker with Telegraf, InfluxDB and Grafana. It’s nice, we have pretty dashboards, but it doesn’t do alerting ! Unless you sit in front of your screen all the day, you will not be warned when a container is crashing or when a friend connect on your Teamspeak channel ! Fortunaletly,…
Kapacitor : l’outil d’Alerting pour vos time series
J’ai déjà parlé du monitoring docker avec Telegraf, Influxdb et Grafana. C’est bien jolie, on a des beaux graphes, mais ça ne fait pas d’alerting. A moins de rester le nez devant les écrans toutes la journées, on ne sera pas prévenu en cas de crash d’un des conteneurs ou lorsqu’un pote se connecte au…
Monitoring Docker with Telegraf, InfluxDB and Grafana
A small post to talk about telegraf and influxdb (aka Tick Stack, without Chronograf and Kapacitor) Telegraf Telegraf is a metrics collect tool written in Go which can collect system metrics like cpu, memory disk, and also application metrics (apache, nginx, elasticsearch, jmx, etc..) Telegraf collect metrics from « input » plugins, parse it to the correct…
Jenkins : One Jobs to Create them All [EN]
Today, I will talk about a Jenkins plugin called « Jenkins Job DSL. » It’a a plugin that allow you to create jenkins jobs from a jenkins job ! You just have to create a grovvy script to describe your job. Install the Job DSL Plugin on Jenkins To install the plugin, download the latest release here,…