diff --git a/akka/Makefile b/akka/Makefile index 10603321..c00f2558 100644 --- a/akka/Makefile +++ b/akka/Makefile @@ -3,7 +3,11 @@ RELEASE = $$(basename $$PWD) .PHONY: install install: - helm upgrade -i --set replicaCount=3 --wait $(RELEASE) . --debug + helm upgrade -i --set replicaCount=3 $(RELEASE) . --debug + @for pod in $(shell kubectl get pod -n akka -o jsonpath='{.items[*].metadata.name}'); do \ + echo "Describing pod $$pod"; \ + kubectl describe pod $$pod -n akka; \ + done .PHONY: lint lint: lint-default lint-local-akka-http lint-cluster-discovery-dns lint-cluster-discovery-kubernetes-api lint-cluster-discovery-aggregate lint-cluster-multi-eks-cluster lint-use-environment-variable-and-secret