Skip to content

Instantly share code, notes, and snippets.

View ltupin's full-sized avatar

Tupin Laurent ltupin

  • PIMPAMPOUM
  • Geneva / Switzerland
View GitHub Profile
@ltupin
ltupin / githubtoaws.sh
Created April 19, 2022 09:51
Copy a git repo from Github to AWS codecommit
#!/bin/bash
if [ ${#@} -lt 2 ]; then
echo "usage: $0 [your github token] [your organisation name]"
exit 1;
fi
GITHUB_TOKEN=$1 # github_key
PROJECT=$2 # organisation
ORGANISATION=/orgs/$2/repos
@ltupin
ltupin / k8s-delete-ns.md
Last active October 6, 2021 15:05
Delete a rebellious namespace
kubectl get namespace {namespace_name} -o json > tmp.json

# vi the file and REMOVE FINALIZER BLOCK

# Kube way
kubectl replace --raw "/api/v1/namespaces/{namespace_name}/finalize" -f ./tmp.json

# Geeky way:
kubectl proxy
multipass launch -m 4G -c 2 -d 20G -n open-nebula 20.04

Prepare packages and repositories

multipass exec open-nebula -- /bin/bash -c "sudo apt update -y && sudo apt upgrade -y"
multipass exec open-nebula -- /bin/bash -c "sudo apt -y install gnupg wget apt-transport-https unzip"
multipass exec open-nebula -- /bin/bash -c "sudo wget -q -O- https://downloads.opennebula.io/repo/repo.key | sudo apt-key add -"
multipass exec open-nebula -- /bin/bash -c "echo 'deb https://downloads.opennebula.io/repo/6.0/Ubuntu/20.04 stable opennebula' | sudo tee -a /etc/apt/sources.list.d/opennebula.list"
multipass exec open-nebula -- /bin/bash -c "sudo apt-get update -y"
@ltupin
ltupin / emr-bootstrap-script-spacy.sh
Created January 28, 2021 19:24
This EMR bootstrap script installed spacy
#!/bin/bash -xe
#### WARNING #####
## After modifying this script you have to push it on s3 with :
## aws s3 cp emr-bootstrap-script-spacy.sh s3://tf-emr-bootstrap-sandbox-eu-west-1
## Works with EMR 5.32.0, spacy 2.3.5
version=1.1
printf "Script $version"
---
apiVersion: extensions/v1beta1
kind: PodSecurityPolicy
metadata:
name: privileged
annotations:
seccomp.security.alpha.kubernetes.io/allowedProfileNames: "*"
labels:
addonmanager.kubernetes.io/mode: EnsureExists
spec:
@ltupin
ltupin / sh
Created February 28, 2019 14:41
Filter failed kubernetes jobs to delete it
#Should be a job too :-D
# With xargs (on all namespaces)
kc get jobs -o=jsonpath='{range .items[?(@.status.conditions[0].type == "Failed")]}{.metadata.name}{"\t"}{.metadata.namespace}{"\n"}{end}' --all-namespaces | \
xargs -n2 sh -c 'kubectl delete jobs $0 --namespace=$1'
# For loop (only in the current namespace)
for i in $(kc get jobs -o=jsonpath='{range .items[?(@.status.conditions[0].type == "Failed")]}{.metadata.name}{"\n"}{end}');
do kubectl delete jobs $i; done
@ltupin
ltupin / docker-nvidia-gpu-support.md
Created August 30, 2018 08:45
Some commands to check nvidia support inside docker
python --version
nvcc --version
nvidia-smi
import sys
print(sys.version_info)
import tensorflow as tf; print(tf.__version__)
@ltupin
ltupin / babun-pip-broken.md
Created August 30, 2018 08:42
Pip is broken inside babun
@ltupin
ltupin / docker-api-python.md
Last active August 30, 2018 11:43
Using docker API with python SDK

Using docker API with python SDK https://docker-py.readthedocs.io/en/stable

import docker
client = docker.from_env()
client.containers.run('alpine', 'echo hello world')

import docker
client = docker.from_env()