Verified Commit 1616123d authored by Xueshan Feng's avatar Xueshan Feng
Browse files

put back TILLER_IMAGE. Needed by check-images.

parent 44c2cc4e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -15,6 +15,11 @@ ifndef AWS_PROFILE
	missing_vars := ${missing_vars} AWS_PROFILE
endif


ifndef TILLER_IMAGE
	TILLER_IMAGE := gcr.io/kubernetes-helm/tiller:v2.9.1
endif

.PHONY: describe-cluster
describe-cluster: ## Check EKS cluster settings
	@aws eks describe-cluster --cluster-name ${CLUSTER_NAME} --query cluster
@@ -28,11 +33,6 @@ get-images: ## List all images running in the cluster
.PHONY: check-images ## check all running images
check-images: ## check all running images
	kube-images-report.sh

ifndef TILLER_IMAGE
	TILLER_IMAGE := gcr.io/kubernetes-helm/tiller:v2.7.2
endif

.PHONY: cordon
cordon: NODES = $(shell kubectl get node -o json  | jq -r '.items[].metadata.name')
cordon: ## Disable scheduling on a node