@@ -25,7 +25,7 @@ ARCH ?= amd64
25
25
OS ?= $(shell uname -s | tr A-Z a-z)
26
26
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
27
27
export CONTROLLER_IMG ?= $(REGISTRY ) /$(IMAGE_NAME )
28
- TAG ?= dev
28
+ TAG ?= v0.4.0
29
29
30
30
# Get cluster-api version and build ldflags
31
31
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)
@@ -244,16 +244,16 @@ deploy-projectsveltos: $(KUSTOMIZE)
244
244
$(MAKE ) load-image
245
245
246
246
@echo ' Install libsveltos CRDs'
247
- $(KUBECTL ) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/dev /config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248
- $(KUBECTL ) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/dev /config/crd/bases/lib.projectsveltos.io_sveltosclusters.yaml
247
+ $(KUBECTL ) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/v0.4.0 /config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248
+ $(KUBECTL ) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/v0.4.0 /config/crd/bases/lib.projectsveltos.io_sveltosclusters.yaml
249
249
250
250
# Install projectsveltos controller-manager components
251
251
@echo 'Install projectsveltos controller-manager components'
252
252
cd config/manager && ../../$(KUSTOMIZE) edit set image controller=${IMG}
253
253
$(KUSTOMIZE) build config/default | $(ENVSUBST) | $(KUBECTL) apply -f-
254
254
255
255
# Install sveltoscluster-manager
256
- $(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/sveltoscluster-manager/dev /manifest/manifest.yaml
256
+ $(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/sveltoscluster-manager/v0.4.0 /manifest/manifest.yaml
257
257
258
258
@echo "Waiting for projectsveltos controller-manager to be available..."
259
259
$(KUBECTL) wait --for=condition=Available deployment/fm-controller-manager -n projectsveltos --timeout=$(TIMEOUT)
@@ -270,7 +270,7 @@ set-manifest-pull-policy:
270
270
271
271
drift-detection-manager :
272
272
@echo " Downloading drift detection manager yaml"
273
- curl -L https://raw.githubusercontent.com/projectsveltos/drift-detection-manager/dev /manifest/manifest.yaml -o ./pkg/drift-detection/drift-detection-manager.yaml
273
+ curl -L https://raw.githubusercontent.com/projectsveltos/drift-detection-manager/v0.4.0 /manifest/manifest.yaml -o ./pkg/drift-detection/drift-detection-manager.yaml
274
274
cd pkg/drift-detection; go generate
275
275
276
276
.PHONY : build
0 commit comments