Skip to content

Commit

Permalink
fix: remove any directory that may hold secrets (if any)
Browse files Browse the repository at this point in the history
Signed-off-by: ankitm123 <ankitmohapatra123@gmail.com>
  • Loading branch information
ankitm123 committed Dec 26, 2021
1 parent ffb13fe commit 0b76f38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ KUBEAPPLY ?= kubectl-apply
HELM_TMP_GENERATE ?= /tmp/generate
HELM_TMP_SECRETS ?= /tmp/secrets/jx-helm

# Prevent accidental git commit of secrets
HELM_TMP_SECRETS_WORKSPACE ?= /workspace/source$(HELM_TMP_SECRETS)

# lets you define a post apply hook such as to run custom validation
POST_APPLY_HOOK ?=

Expand Down Expand Up @@ -57,7 +60,7 @@ HELMFILE_TEMPLATE_FLAGS ?=

.PHONY: clean
clean:
@rm -rf build $(OUTPUT_DIR) $(HELM_TMP_SECRETS) $(HELM_TMP_GENERATE)
@rm -rf build $(OUTPUT_DIR) $(HELM_TMP_SECRETS) $(HELM_TMP_GENERATE) $(HELM_TMP_SECRETS_WORKSPACE)

.PHONY: setup
setup:
Expand Down

0 comments on commit 0b76f38

Please sign in to comment.