From edfe1db25c67e1ca65a34ef2cc7ffeb22c5e8945 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 16 Feb 2024 14:27:34 -0600 Subject: [PATCH] Update command to include bgp --- kubernetes/bootstrap/install-cilium.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 kubernetes/bootstrap/install-cilium.sh diff --git a/kubernetes/bootstrap/install-cilium.sh b/kubernetes/bootstrap/install-cilium.sh new file mode 100755 index 0000000..cbf37d4 --- /dev/null +++ b/kubernetes/bootstrap/install-cilium.sh @@ -0,0 +1,15 @@ +#!/bin/bash +cilium install \ + --helm-set=ipam.mode=kubernetes \ + --helm-set=kubeProxyReplacement=true \ + --helm-set=securityContext.capabilities.ciliumAgent="{CHOWN,KILL,NET_ADMIN,NET_RAW,IPC_LOCK,SYS_ADMIN,SYS_RESOURCE,DAC_OVERRIDE,FOWNER,SETGID,SETUID}" \ + --helm-set=securityContext.capabilities.cleanCiliumState="{NET_ADMIN,SYS_ADMIN,SYS_RESOURCE}" \ + --helm-set=cgroup.autoMount.enabled=false \ + --helm-set=cgroup.hostRoot=/sys/fs/cgroup \ + --helm-set=k8sServiceHost=127.0.0.1 \ + --helm-set=k8sServicePort=7445 \ + --helm-set=bgpControlPlane.enabled=true \ + --helm-set=bgp.enabled=false \ + --helm-set=bgp.announce.loadbalancerIP=true \ + --helm-set=bgp.announce.podCIDR=false +