Files
falco/integrations/kubernetes-response-engine/deployment/Makefile
Néstor Salceda 3afe04629a Move kubernetes_response_engine under integrations
A top level directory for this integration could led to confussion.
2018-07-11 17:49:25 +02:00

14 lines
362 B
Makefile

deploy:
kubectl apply -f nats/
kubectl create configmap falco-config --from-file=falco-config/ || true
kubectl apply -f falco/
kubectl apply -f kubeless/
kubectl apply -f network-policy.yaml
clean:
kubectl delete -f kubeless/
kubectl delete configmap falco-config
kubectl delete -f falco/
kubectl delete -f nats/
kubectl delete -f network-policy.yaml