We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8e94a commit 680a882Copy full SHA for 680a882
modules/controller_pool/controller-primary.tpl
@@ -108,6 +108,10 @@ EOF
108
}
109
110
function kube_vip {
111
+ kubectl apply -f https://kube-vip.io/manifests/rbac.yaml
112
+ GATEWAY_IP=$(curl https://metadata.platformequinix.com/metadata | jq -r ".network.addresses[] | select(.public == false) | .gateway");
113
+ ip route add 169.254.255.1 via $GATEWAY_IP
114
+ ip route add 169.254.255.2 via $GATEWAY_IP
115
alias kube-vip="docker run --network host --rm ghcr.io/kube-vip/kube-vip:v0.3.8"
116
kube-vip manifest daemonset \
117
--interface lo \
0 commit comments