From efb33b36d105e8ea83cfc694f12bf49b2f1b0058 Mon Sep 17 00:00:00 2001 From: paulfantom Date: Wed, 7 Jul 2021 10:03:40 +0200 Subject: [PATCH] *: add "update" target to makefile and use it in automatic updater Signed-off-by: paulfantom --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 15707b08..a4b366f9 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,10 @@ vendor: $(JB_BIN) jsonnetfile.json jsonnetfile.lock.json crdschemas: vendor ./scripts/generate-schemas.sh +.PHONY: update +update: $(JB_BIN) + $(JB_BIN) update + .PHONY: validate validate: crdschemas manifests $(KUBECONFORM_BIN) # Follow-up on https://github.com/instrumenta/kubernetes-json-schema/issues/26 if validations start failing