Skip to content

Instantly share code, notes, and snippets.

View fw8's full-sized avatar
🎯
Focusing

Florian Wolpert fw8

🎯
Focusing
  • CRIION
  • Freiburg, Germany
View GitHub Profile
# Source: https://gist.github.com/ed8ad113fff4322ef309198d5455687f
##############################################################################################
# Full App Lifecycle In Kubernetes With Argo CD, DevSpace, vCluster, k3d, and GitHub Actions #
# https://youtu.be/uU-EAQ8Vbvk #
##############################################################################################
# Referenced videos:
# - How To Create Virtual Kubernetes Clusters With vcluster By loft: https://youtu.be/JqBjpvp268Y
# - DevSpace - Development Environments in Kubernetes: https://youtu.be/nQly_CEjJc4
@liorshk
liorshk / kfp_to_argo.py
Created March 17, 2020 21:43
Create an Argo Pipeline YAML using Kubeflow pipelines SDK
import kfp
@kfp.components.func_to_container_op
def print_func(param: int):
print(str(param))
@kfp.components.func_to_container_op
def list_func(param: int) -> list:
return list(range(param))
@rcoup
rcoup / blocksync.py
Last active June 1, 2025 09:51
Block device sync between remote hosts. Based off http://www.bouncybouncy.net/programs/blocksync.py
#!/usr/bin/env python
"""
Synchronise block devices over the network
Copyright 2006-2008 Justin Azoff <justin@bouncybouncy.net>
Copyright 2011 Robert Coup <robert@coup.net.nz>
License: GPL
Getting started: