Skip to content

Commit c44851d

Browse files
authored
Merge pull request #111 from gianlucam76/prep
Prepare for release v0.3.0
2 parents a63dab7 + 71577f6 commit c44851d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARCH ?= amd64
2525
OS ?= $(shell uname -s | tr A-Z a-z)
2626
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
2727
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
28-
TAG ?= dev
28+
TAG ?= v0.3.0
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)
@@ -244,16 +244,16 @@ deploy-projectsveltos: $(KUSTOMIZE)
244244
$(MAKE) load-image
245245

246246
@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.3.0/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248+
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/v0.3.0/config/crd/bases/lib.projectsveltos.io_sveltosclusters.yaml
249249

250250
# Install projectsveltos controller-manager components
251251
@echo 'Install projectsveltos controller-manager components'
252252
cd config/manager && ../../$(KUSTOMIZE) edit set image controller=${IMG}
253253
$(KUSTOMIZE) build config/default | $(ENVSUBST) | $(KUBECTL) apply -f-
254254

255255
# 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.3.0/manifest/manifest.yaml
257257

258258
@echo "Waiting for projectsveltos controller-manager to be available..."
259259
$(KUBECTL) wait --for=condition=Available deployment/fm-controller-manager -n projectsveltos --timeout=$(TIMEOUT)
@@ -270,7 +270,7 @@ set-manifest-pull-policy:
270270

271271
drift-detection-manager:
272272
@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.3.0/manifest/manifest.yaml -o ./pkg/drift-detection/drift-detection-manager.yaml
274274
cd pkg/drift-detection; go generate
275275

276276
.PHONY: build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Sveltos
88

9-
<img src="https://raw.githubusercontent.com/projectsveltos/sveltos/dev/docs/assets/logo.png" width="200">
9+
<img src="https://raw.githubusercontent.com/projectsveltos/sveltos/main/docs/assets/logo.png" width="200">
1010

1111
Please refere to sveltos [documentation](https://projectsveltos.github.io/sveltos/).
1212

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: gianlucam76/sveltos-manager-amd64:dev
11+
- image: gianlucam76/sveltos-manager-amd64:v0.3.0
1212
name: manager

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ spec:
13831383
- --v=5
13841384
command:
13851385
- /manager
1386-
image: gianlucam76/sveltos-manager-amd64:dev
1386+
image: gianlucam76/sveltos-manager-amd64:v0.3.0
13871387
livenessProbe:
13881388
httpGet:
13891389
path: /healthz

pkg/drift-detection/drift-detection-manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ spec:
260260
- --run-mode=do-not-send-updates
261261
command:
262262
- /manager
263-
image: gianlucam76/drift-detection-manager-amd64:dev
263+
image: gianlucam76/drift-detection-manager-amd64:v0.3.0
264264
livenessProbe:
265265
httpGet:
266266
path: /healthz

pkg/drift-detection/drift-detection-manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ spec:
242242
- --run-mode=do-not-send-updates
243243
command:
244244
- /manager
245-
image: gianlucam76/drift-detection-manager-amd64:dev
245+
image: gianlucam76/drift-detection-manager-amd64:v0.3.0
246246
livenessProbe:
247247
httpGet:
248248
path: /healthz

0 commit comments

Comments
 (0)