Move common-envs.mk and package.mk from scripts/ to hack/ directory. Update all Makefile includes to use new paths. Remove unused issue-flux-certificates.sh script. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
16 lines
591 B
Makefile
16 lines
591 B
Makefile
export NAME=bootbox
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../hack/package.mk
|
|
|
|
update:
|
|
rm -rf charts
|
|
mkdir -p charts
|
|
cd charts && \
|
|
tag=$$(git ls-remote --tags --sort="v:refname" https://github.com/tinkerbell/charts | awk -F'[/^]' 'END{print $$3}') && \
|
|
curl -sSL https://github.com/tinkerbell/charts/archive/refs/tags/$${tag}.tar.gz | \
|
|
tar xzvf - --strip 2 charts-$${tag#*v}/tinkerbell
|
|
find charts -maxdepth 1 -mindepth 1 ! -name tink -and ! -name smee -exec rm -rf {} \;
|
|
mkdir -p charts/smee/crds
|
|
mv charts/tink/crds/hardware-crd.yaml charts/smee/crds
|
|
rm -rf charts/tink
|