github.com/cilium/cilium@v1.16.2/test/controlplane/Makefile (about) 1 .PHONY: all test update-golden 2 3 all: test 4 5 test: 6 go test . 7 8 update-golden: 9 go test . -test.v -update 10 11 pre-pull-kind-images: 12 bash ./k8s_versions.sh --pre-pull-images 13 14 update-k8s-versions: 15 # Update kind-config with the versions stored in k8s_versions.txt 16 $(shell bash ./k8s_versions.sh --update-kind-config) 17 18 generate-input-files: pre-pull-kind-images update-k8s-versions 19 find . -name generate.sh -exec {} \;