mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
* add macvlan cni to kubespray * macvlan: lint yaml files and fix sample config file * macvlan: add OWNERS file * add macvlan to README * macvlan : CI first shoot * macvlan : CI add full masquerade * delegate retrive pod cidr to master only * macvlan: add config for CI * macvlan: add netchecker deployment
7 lines
118 B
Bash
Executable File
7 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
POSTUPNAME="/etc/sysconfig/network-scripts/post-up-$1"
|
|
if [ -x $POSTUPNAME ]; then
|
|
exec $POSTUPNAME
|
|
fi
|