From 7701f30f80485c28f474a92d98936afa4608e15e Mon Sep 17 00:00:00 2001 From: wfsly <451478064@qq.com> Date: Thu, 30 Mar 2023 16:31:07 +0800 Subject: [PATCH] fix: indent issue in the Makefile demo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e8b3324..123867b 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,10 @@ Submit issue if some features missing for your use-case. .PHONY: helmify helmify: $(HELMIFY) ## Download helmify locally if necessary. $(HELMIFY): $(LOCALBIN) - test -s $(LOCALBIN)/helmify || GOBIN=$(LOCALBIN) go install github.com/arttor/helmify/cmd/helmify@latest + test -s $(LOCALBIN)/helmify || GOBIN=$(LOCALBIN) go install github.com/arttor/helmify/cmd/helmify@latest helm: manifests kustomize helmify - $(KUSTOMIZE) build config/default | $(HELMIFY) + $(KUSTOMIZE) build config/default | $(HELMIFY) ``` 3. Run `make helm` in project root. It will generate helm chart with name 'chart' in 'chart' directory.