mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
17 lines
627 B
Makefile
17 lines
627 B
Makefile
export NAME=kubeovn-webhook
|
|
export NAMESPACE=cozy-kubeovn
|
|
|
|
include ../../../scripts/common-envs.mk
|
|
include ../../../scripts/package.mk
|
|
|
|
image:
|
|
docker buildx build images/kubeovn-webhook \
|
|
--tag $(REGISTRY)/kubeovn-webhook:$(call settag,$(TAG)) \
|
|
--cache-from type=registry,ref=$(REGISTRY)/kubeovn-webhook:latest \
|
|
--cache-to type=inline \
|
|
--metadata-file images/kubeovn-webhook.json \
|
|
$(BUILDX_ARGS)
|
|
IMAGE="$(REGISTRY)/kubeovn-webhook:$(call settag,$(TAG))@$$(yq e '."containerimage.digest"' images/kubeovn-webhook.json -o json -r)" \
|
|
yq -i '.image = strenv(IMAGE)' values.yaml
|
|
rm -f images/kubeovn-webhook.json
|