Skip to content

Instantly share code, notes, and snippets.

View looztra's full-sized avatar

Christophe Furmaniak looztra

View GitHub Profile
@looztra
looztra / deploy-app.yml
Last active April 5, 2019 09:47
Faros 0.4.0-rc3 bug report files
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: api
labels:
app: platform
component: api
annotations:
company.com/owner: devel
@looztra
looztra / alerts.yml
Last active September 18, 2023 11:08
Some prometheus configuration we may find usefull
groups:
- name: node-resources
rules:
- alert: HostCPUUtilisation
expr: 100 - (avg by(instance) (irate(node_cpu{mode="idle"}[5m])) * 100) > 70
for: 20m
labels:
severity: warning
annotations:
description: 'High CPU utilisation detected for instance {{ $labels.instance_id
@looztra
looztra / jq.sh
Last active March 26, 2019 13:40
List tags and Filter out some patterns with jq
wget -q https://registry.hub.docker.com/v2/repositories/looztra/yamkix/tags -O - | jq -r '.results[] | select ((.name|endswith("latest")|not) and (.name|startswith("circle")|not)) | .name'
"0.3.0-239836d"
"0.2.2-7b96154"
@looztra
looztra / .circleci--config.yml
Last active February 27, 2019 13:42
Bootstrap repo config
---
version: 2.1
jobs:
eclint:
working_directory: ~/docker-eclint/
docker:
- image: qima/eclint:circleci-2.8.1-7c65341
steps:
- checkout
- run:
# Borrowed to someone, but I don't remember who it was, sorry :(
# Print message $2 with log-level $1 to STDERR, colorized if terminal
# log DEBUG "DOCKER_HOST ${DOCKER_HOST}"
log() {
local level=${1?}
shift
local code= line="[$(date '+%F %T')] $level: $*"
if [ -t 2 ]
then
case "$level" in
[INFO] → 588 of 657 modules :: src/main/webapp/app/entities/job-history/job-histor
[INFO] y.service.ts ~ internal
[ERROR] events.js:167
[ERROR] throw er; // Unhandled 'error' event
[ERROR] ^
[ERROR]
[ERROR] Error [ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed
[ERROR] at doWrite (_stream_writable.js:406:19)
[ERROR] at writeOrBuffer (_stream_writable.js:394:5)
[ERROR] at Socket.Writable.write (_stream_writable.js:294:11)

Keybase proof

I hereby claim:

  • I am looztra on github.
  • I am cfurmaniak (https://keybase.io/cfurmaniak) on keybase.
  • I have a public key ASBBqNjcf8rVR4Lsy-ZmPutvVqT1F3PYwoMlK6Jasy1MjAo

To claim this, I am signing this object:

Installation poste linux

Setup

Git

  • Editer ~/.gitconfig
[user]
@looztra
looztra / extract.fishrc
Last active November 27, 2017 10:35
Fish Functions to Download docker-machine and docker-compose latest version
function compose-update -d 'Update docker-compose to version provided in param or latest release if no param provided'
set compose_version (curl -s https://api.github.com/repos/docker/compose/releases/latest | jq .tag_name | tr -d '"')
if not test -z "$argv"
set compose_version $argv
end
echo "Retreiving docker-compose version $compose_version"
echo "gna"
curl -Lo ~/tmp/docker-compose https://github.com/docker/compose/releases/download/$compose_version/docker-compose-Linux-x86_64
chmod +x ~/tmp/docker-compose ; and mv ~/tmp/docker-compose ~/.local/bin/
which docker-compose
@looztra
looztra / 01-docker-tls.sh
Last active February 14, 2023 00:37 — forked from zigarn/01-docker-tls.sh
Generate Docker certificates for training on TLS
#!/bin/env bash
# Configuration
export PUBLIC_DNS=<public hostname>
export PUBLIC_IP=<public host IP>
export PRIVATE_IP=<private host IP>
mkdir docker-ca
chmod 0700 docker-ca/
cd docker-ca/