kubernix 0.3.1

Kubernetes development cluster bootstrapping with Nix packages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
# The system preparation step needs to be done explicitly if running inside a
# container
set -euo pipefail

modprobe overlay
modprobe ip_conntrack
modprobe br_netfilter

sysctl net.bridge.bridge-nf-call-ip6tables=1
sysctl net.bridge.bridge-nf-call-iptables=1
sysctl net.ipv4.conf.all.route_localnet=1
sysctl net.ipv4.ip_forward=1