Skip to content

Instantly share code, notes, and snippets.

View antoinemartin's full-sized avatar

Antoine Martin antoinemartin

View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Antoine Martin",
"label": "Senior Software Engineering Manager",
"image": "https://avatars.githubusercontent.com/u/226308?v=4",
"email": "antoine@openance.com",
"phone": "+33688054143",
"location": {
"address": "24, Allée des Balladins",

Keybase proof

I hereby claim:

  • I am antoinemartin on github.
  • I am antoinemartin (https://keybase.io/antoinemartin) on keybase.
  • I have a public key ASDCNqttyKe2_Hyej6QV2W1Qy0LG8DbkWeH6-20-sLp5oAo

To claim this, I am signing this object:

---
apiVersion: v1
kind: ServiceAccount
metadata:
name: cloud-controller-manager
namespace: kube-system
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
@antoinemartin
antoinemartin / pod-reader.yaml
Created March 2, 2019 18:45
Add API read rights to default K8S service account
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: pod-reader
namespace: default
rules:
- apiGroups: [ "" ]
resources: [ "pods", "services"]
verbs: [ "get", "list", "watch"]
@antoinemartin
antoinemartin / fcgi.py
Created June 27, 2012 13:49
Django management command to run Django on Windows with IIS through FastCGI
# encoding: utf-8
# FastCGI-to-WSGI bridge for files/pipes transport (not socket)
#
# Copyright (c) 2002, 2003, 2005, 2006 Allan Saddi <allan@saddi.com>
# Copyright (c) 2011 Ruslan Keba <ruslan@helicontech.com>
# Copyright (c) 2012 Antoine Martin <antoine@openance.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without