All functional patches from the cozystack/kilo fork have been upstreamed and included in squat/kilo v0.7.0: - --internal-cidr flag (PR #403) - allowed-location-ips overlap fix (PR #404) - Auto-detect WireGuard MTU (PR #406) - Preferred source for WireGuard routes (PR #408) - Cilium IPIP overlay support (PR #409) The fork only contained rebranding and CI-specific commits beyond upstream, which are no longer needed. Assisted-By: Claude <noreply@anthropic.com> Signed-off-by: Aleksei Sviridkin <f@lex.la>
13 lines
562 B
Makefile
13 lines
562 B
Makefile
export NAME=kilo
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../hack/common-envs.mk
|
|
include ../../../hack/package.mk
|
|
|
|
update:
|
|
tag=$$(git ls-remote --tags --sort="v:refname" https://github.com/squat/kilo | awk -F'[/^]' 'END{print $$3}') && \
|
|
digest=$$(skopeo inspect --override-os linux --override-arch amd64 --format '{{.Digest}}' docker://ghcr.io/squat/kilo:$${tag}) && \
|
|
REPOSITORY="ghcr.io/squat/kilo" \
|
|
yq -i '.kilo.image.repository = strenv(REPOSITORY)' values.yaml && \
|
|
TAG="$${tag}@$${digest}" \
|
|
yq -i '.kilo.image.tag = strenv(TAG)' values.yaml
|