We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f394f48 commit 7cd74b0Copy full SHA for 7cd74b0
Makefile
@@ -64,8 +64,8 @@ secret: ## Generate a secret hex key
64
65
.PHONY: cluster
66
cluster: ## Create a K3D Kubernetes cluster with load balancer and registry
67
- $(info Creating Kubernetes cluster with a registry and 1 worker node...)
68
- k3d cluster create nyu-devops --agents 1 --registry-create cluster-registry:0.0.0.0:5000 --port '8080:80@loadbalancer'
+ $(info Creating Kubernetes cluster $(CLUSTER) with a registry and 1 worker node...)
+ k3d cluster create $(CLUSTER) --agents 1 --registry-create cluster-registry:0.0.0.0:5000 --port '8080:80@loadbalancer'
69
70
.PHONY: cluster-rm
71
cluster-rm: ## Remove a K3D Kubernetes cluster
0 commit comments