Skip to content

Instantly share code, notes, and snippets.

@MatteoMori
MatteoMori / k8s-pi.md
Created August 30, 2018 18:31 — forked from alexellis/k8s-pi.md
K8s on Raspbian

Kubernetes on (vanilla) Raspbian Lite

Yes - you can create a Kubernetes cluster with Raspberry Pis with the default operating system called Raspbian. This means you can carry on using all the tools and packages you're used to with the officially-supported OS.

This is part of a blog post Serverless Kubernetes home-lab with your Raspberry Pis written by Alex Ellis.

Copyright disclaimer: Please provide a link to the post and give attribution to the author if you plan to use this content in your own materials.

Pre-reqs:

@MatteoMori
MatteoMori / validate_zone.py
Created January 22, 2018 09:30 — forked from tuxfight3r/validate_zone.py
Ansible Filter to Validate a IP address and give out the corresponding zone.
#!/usr/bin/python
# Date: 21/01/2018
# Author: Mohan Balasundaram
# File path: filter_plugins/validate_zone.py
# Purpose: script to validate ip address and issue the corresponding zone name
# the ip belongs to and if the ip doesnt match the range, it will give the default "NA"
import ipaddress
class FilterModule(object):