Skip to content

Instantly share code, notes, and snippets.

View SeyedEhsanHosseini's full-sized avatar
♾️

Seyed Ehsan Hosseini SeyedEhsanHosseini

♾️
  • Roshan AI
View GitHub Profile
@SeyedEhsanHosseini
SeyedEhsanHosseini / register.py
Last active November 7, 2023 02:40
Python Script to create new kubeflow profiles
#!/usr/bin/python3
import subprocess
import yaml
from getpass import getpass
from passlib.hash import bcrypt
def get_valid_memory_limit(memory):
while not memory.endswith(("Gi", "Mi")):
@SeyedEhsanHosseini
SeyedEhsanHosseini / django-simple-todo.md
Created October 6, 2023 18:02
Django-Simple-ToDoList
@SeyedEhsanHosseini
SeyedEhsanHosseini / k8s-v1.28.2-the-hard-way.md
Last active September 28, 2023 12:40
Kubernetes v1.28.2 - The hard way on VirtualBox VMs

On All Nodes

Install some packages the cluster will need for networking and firewall rules

$ sudo apt install conntrack socat ipset -y

On Host Machine