Skip to content

Commit 39a3283

Browse files
committed
update makefile
1 parent 65eb176 commit 39a3283

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile-common

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MAKEFLAGS += --no-print-directory
2-
ANSIBLE_STDOUT_CALLBACK ?= rhvp.cluster_utils.readable
3-
ANSIBLE_RUN ?= ANSIBLE_STDOUT_CALLBACK=$(ANSIBLE_STDOUT_CALLBACK) ansible-playbook $(EXTRA_PLAYBOOK_OPTS)
2+
ANSIBLE_STDOUT_CALLBACK ?= null # null silences all ansible output. Override this with default, minimal, oneline, etc. when debugging.
3+
ANSIBLE_RUN := ANSIBLE_STDOUT_CALLBACK=$(ANSIBLE_STDOUT_CALLBACK) ansible-playbook $(EXTRA_PLAYBOOK_OPTS)
44
DOCS_URL := https://validatedpatterns.io/blog/2025-08-29-new-common-makefile-structure/
55

66
.PHONY: help
@@ -20,9 +20,9 @@ operator-deploy operator-upgrade: ## Installs/updates the pattern on a cluster (
2020
.PHONY: install
2121
install: pattern-install ## Installs the pattern onto a cluster (Loads secrets as well if configured)
2222

23-
.PHONY: uninstall
24-
uninstall: ## (EXPERIMENTAL) See https://validatedpatterns.io/blog/2026-02-16-pattern-uninstall/.
25-
@$(ANSIBLE_RUN) rhvp.cluster_utils.uninstall
23+
.PHONY: uninstall ## Prints a notice that patterns cannot currently be uninstalled
24+
uninstall:
25+
@echo "Uninstall is not possible at the moment so this target is empty. We are working to implement it as well as we can."
2626

2727
.PHONY: pattern-install
2828
pattern-install:

0 commit comments

Comments
 (0)