Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View rafi's full-sized avatar

Rafael Bodill rafi

View GitHub Profile
@rafi
rafi / k3d-keycloak.md
Last active August 21, 2023 23:55
Keycloak and oauth2-proxy using k3d & ngrok:

K3d and Keycloak

Prerequisites

Ensure docker, k3d and ngrok are installed.

brew update
brew install --cask docker ngrok
brew install k3d
@rafi
rafi / k3d-istio.md
Last active August 16, 2023 11:29
K3d and Istio (Service Mesh - Governing the data plane)

K3d and Istio

Prerequisites

Ensure docker, k3d and istioctl installed.

brew update
brew install --cask docker
brew install k3d istioctl
@rafi
rafi / .tmuxp.yml
Created April 14, 2021 18:43
Tmuxp project config example
---
session_name: acme-api
start_directory: ./
suppress_history: false
windows:
- window_name: edit
focus: true
panes:
- nvim -S $XDG_DATA_HOME/session/acme-api.vim
- window_name: git
@rafi
rafi / echoserver.go
Created April 1, 2021 14:00
Echoserver in Go lang
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
@rafi
rafi / openebs.md
Created September 9, 2020 12:00
Overview of OpenEBS
@rafi
rafi / README.md
Created August 10, 2020 09:47
Kubernetes nginx-ingress routing by header value

During a Hackathon I implemented a route-interception by HTTP Header value in Nginx-ingress for Kubernetes:

Add Nginx-ingress annotation in global ConfigMap ('http' scope):

kind: ConfigMap
data:
  http-snippet: |
    map $http_x_feature_ucache $ucache_route_service {
      default "$proxy_upstream_name";

'true' "default-cache-svc-3000";

@rafi
rafi / k8s-101-handson.md
Created August 4, 2020 13:19
Workshop material for K8s 101 hands-on.

Kubernetes 101: Hands-on

brew install kubernetes-cli minikube

minikube start # --memory=8192 --cpus=4
kubectl get -A deployment
kubectl get -A pod -w
@rafi
rafi / questions.md
Last active December 20, 2022 09:02
ראיון נגדי / Reverse Interview

ראיון נגדי / Reverse Interview

המקור/Source: https://github.com/viraptor/reverse-interview

עברית English (original)
?מהן המשימות שאעשה ביום רגיל What are the tasks I would do on a usual day?
?האם יש מטרות מסויימות עבורי Are there any specific goals for me?
?on-call - מה לוח-הזמנים והתכיפות של ה What's the on-call plan/schedule?
?הנוכחי בצוות junior vs. senior מה תמהיל What's the junior/senior balance of the team?