mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-28 18:18:41 +00:00
13 lines
381 B
Makefile
13 lines
381 B
Makefile
NAME=cilium
|
|
NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/package-system.mk
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add cilium https://helm.cilium.io/
|
|
helm repo update cilium
|
|
helm pull cilium/cilium --untar --untardir charts --version 1.14
|
|
sed -i -e '/Used in iptables/d' -e '/SYS_MODULE/d' charts/cilium/values.yaml
|
|
patch -p3 --no-backup-if-mismatch < patches/fix-cgroups.patch
|