Skip to content

Commit 49ef85e

Browse files
authored
Merge pull request #152 from gianlucam76/prep
Prepare for release v0.6.0
2 parents 1e06efc + 599a072 commit 49ef85e

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ SHELL = /usr/bin/env bash -o pipefail
1919
.SHELLFLAGS = -ec
2020

2121
# Define Docker related variables.
22-
REGISTRY ?= gianlucam76
22+
REGISTRY ?= projectsveltos
2323
IMAGE_NAME ?= sveltos-manager
2424
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 ?= main
28+
TAG ?= v0.6.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/main/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248-
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/main/config/crd/bases/lib.projectsveltos.io_sveltosclusters.yaml
247+
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/$(TAG)/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248+
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/$(TAG)/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/main/manifest/manifest.yaml
256+
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/sveltoscluster-manager/$(TAG)/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)

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:main
11+
- image: projectsveltos/sveltos-manager-amd64:v0.6.0
1212
name: manager

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/onsi/ginkgo/v2 v2.6.0
1313
github.com/onsi/gomega v1.24.1
1414
github.com/pkg/errors v0.9.1
15-
github.com/projectsveltos/libsveltos v0.5.1-0.20230217184152-736d1e4355e5
15+
github.com/projectsveltos/libsveltos v0.6.0
1616
github.com/prometheus/client_golang v1.13.0
1717
github.com/spf13/pflag v1.0.5
1818
golang.org/x/text v0.5.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndr
790790
github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s=
791791
github.com/poy/onpar v0.0.0-20190519213022-ee068f8ea4d1 h1:oL4IBbcqwhhNWh31bjOX8C/OCy0zs9906d/VUru+bqg=
792792
github.com/poy/onpar v0.0.0-20190519213022-ee068f8ea4d1/go.mod h1:nSbFQvMj97ZyhFRSJYtut+msi4sOY6zJDGCdSc+/rZU=
793-
github.com/projectsveltos/libsveltos v0.5.1-0.20230217184152-736d1e4355e5 h1:aBvOqtUX9mnHs4RWC5f5Y6joHyxRZ5+p0w0EdDJL7Ts=
794-
github.com/projectsveltos/libsveltos v0.5.1-0.20230217184152-736d1e4355e5/go.mod h1:smYCt3DQSZpQqsaoM2mJAIP6RAMXcxw5Af0mzkncCs4=
793+
github.com/projectsveltos/libsveltos v0.6.0 h1:9UisBy/CCAvzxwp112eKxUgZHAAVbCODkeQOn+sGFIg=
794+
github.com/projectsveltos/libsveltos v0.6.0/go.mod h1:7QZOMDZjXklss3RA0IDNJB3ZOAyJBnBiiM+142BFeNc=
795795
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
796796
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
797797
github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g=

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ spec:
13801380
- --v=5
13811381
command:
13821382
- /manager
1383-
image: gianlucam76/sveltos-manager-amd64:main
1383+
image: projectsveltos/sveltos-manager-amd64:v0.6.0
13841384
livenessProbe:
13851385
httpGet:
13861386
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:main
263+
image: projectsveltos/drift-detection-manager-amd64:v0.6.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:main
245+
image: projectsveltos/drift-detection-manager-amd64:v0.6.0
246246
livenessProbe:
247247
httpGet:
248248
path: /healthz

0 commit comments

Comments
 (0)