forked from validatedpatterns/connected-vehicle-architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (22 loc) · 925 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.PHONY: default
default: help
.PHONY: help
##@ Pattern tasks
# No need to add a comment here as help is described in common/
help:
@make -f common/Makefile MAKEFILE_LIST="Makefile common/Makefile" help
%:
make -f common/Makefile $*
.PHONY: install
install: operator-deploy post-install ## installs the pattern loads the secrets
echo "Installed"
.PHONY: post-install
post-install: ## Post-install tasks
make load-secrets
@echo "Done"
test:
make -f common/Makefile PATTERN_OPTS="-f values-global.yaml -f values-hub.yaml" test
.PHONY: kubeconform
KUBECONFORM_SKIP=-skip 'CustomResourceDefinition,Integration,BobbycarZone,Infinispan,Kafka,KafkaBridge,KafkaTopic,ActiveMQArtemis,EventListener,TriggerBinding,TriggerTemplate,Pipeline,Trigger,Task,ApiServerSource,Service,KafkaSource,Broker,Certificate,ClusterIssuer,CertManager'
kubeconform:
make -f common/Makefile KUBECONFORM_SKIP="$(KUBECONFORM_SKIP)" kubeconform