Skip to content

Instantly share code, notes, and snippets.

View markito's full-sized avatar
🎯

William Markito Oliveira markito

🎯
View GitHub Profile
This is on OCP 4.2 build: 4.2.0-0.nightly-2019-10-03-224032
Deploy NFD:
cd $GOPATH/src/github.com/openshift
git clone https://github.com/openshift/cluster-nfd-operator.git
cd cluster-nfd-operator
git checkout release-4.2
make deploy
@vbatts
vbatts / README.md
Last active May 23, 2023 23:08
knative+buildah deep dive

walkthrough: buildah on knative

The buildah utility is a versitile container build tool that does not require a daemon (everything is direct invocation). See my "deep dive" for a few hands on use-cases.

Recently knative was announced. It is a project to enable the kubernetes primitives needed to build a functions-as-a-service. There are a plumbing services needed around this use-case, "build" is one of them. Building containers is largely an indepenent goal and story of "serverless" or "FaaS", but I get why they are grouped together.

#!/usr/bin/python
# @author markito
# Python script that query running lattice containers and allows log in using wsh
# Usage: ./lattice-ssh.py <PATH_TO_LATTICE>
import os
import subprocess
import requests
import sys
import json
@erikh
erikh / hack.sh
Created March 31, 2012 07:02 — forked from DAddYE/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#