You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- update k8s to 1.31.2
- cilium to 1.16.3
- fix quickstart
- split out quickstart into separate targets
- move quickstart help into its own help section
- add minikube delete
Copy file name to clipboardexpand all lines: Makefile
+26-17
Original file line number
Diff line number
Diff line change
@@ -28,8 +28,8 @@ CONTAINER_TOOL ?= docker
28
28
SHELL = /usr/bin/env bash -o pipefail
29
29
.SHELLFLAGS = -ec
30
30
31
-
K8S_VERSION ?= 1.31.1
32
-
CILIUM_VERSION ?= 1.16.2
31
+
K8S_VERSION ?= 1.31.2
32
+
CILIUM_VERSION ?= 1.16.3
33
33
34
34
V ?= 0
35
35
ifeq ($(V), 1)
@@ -173,6 +173,29 @@ deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in
173
173
undeploy: kustomize ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
minikube: ## Spool up a local minikube cluster for development
180
+
$QK8S_VERSION=$(K8S_VERSION)\
181
+
CILIUM_VERSION=$(CILIUM_VERSION)\
182
+
CERTMANAGER_VERSION=$(CERTMANAGER_VERSION)\
183
+
TLS=$(TLS)\
184
+
PROMETHEUS=$(PROMETHEUS)\
185
+
hack/minikube.sh
186
+
187
+
.PHONY: quickstart install-operator install-cr
188
+
quickstart: minikube install-operator install-cr ## Install the operator into the minikube cluster and deploy the sample CR use the TLS and PROMETHEUS variables to enable those features
189
+
190
+
install-operator: ## Install the operator into the minikube cluster
minikube: ## Spool up a local minikube cluster for development
216
-
$QK8S_VERSION=$(K8S_VERSION)\
217
-
CILIUM_VERSION=$(CILIUM_VERSION)\
218
-
CERTMANAGER_VERSION=$(CERTMANAGER_VERSION)\
219
-
TLS=$(TLS)\
220
-
PROMETHEUS=$(PROMETHEUS)\
221
-
hack/minikube.sh
222
-
223
-
.PHONY: quickstart
224
-
quickstart: minikube ## Install the operator into the minikube cluster and deploy the sample CR use the TLS and PROMETHEUS variables to enable those features
0 commit comments