Skip to content

Commit 84b3983

Browse files
authored
Merge pull request #216 from gianlucam76/prep
Prepare for release v0.10.0
2 parents 14d8503 + 1fb60c4 commit 84b3983

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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.10.0
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)

api/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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: projectsveltos/addon-manager-amd64:dev
11+
- image: projectsveltos/addon-manager-amd64:v0.10.0
1212
name: manager

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/onsi/ginkgo/v2 v2.9.2
1616
github.com/onsi/gomega v1.27.5
1717
github.com/pkg/errors v0.9.1
18-
github.com/projectsveltos/libsveltos v0.9.2-0.20230511214049-30680e5564b3
18+
github.com/projectsveltos/libsveltos v0.10.0
1919
github.com/prometheus/client_golang v1.14.0
2020
github.com/spf13/pflag v1.0.5
2121
golang.org/x/text v0.9.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,8 @@ github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSg
551551
github.com/poy/onpar v0.0.0-20200406201722-06f95a1c68e8/go.mod h1:nSbFQvMj97ZyhFRSJYtut+msi4sOY6zJDGCdSc+/rZU=
552552
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
553553
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
554-
github.com/projectsveltos/libsveltos v0.9.2-0.20230511214049-30680e5564b3 h1:Ctr57In88xq+xln5Q1qxVZxCylwnh+V9neBCJEkmVIY=
555-
github.com/projectsveltos/libsveltos v0.9.2-0.20230511214049-30680e5564b3/go.mod h1:E0dOSNerBX7lajgB8G3kXUpBwXYSsqZVkmdtlutmeK4=
554+
github.com/projectsveltos/libsveltos v0.10.0 h1:OyyKiutGwKcbOGePFC/gdYFHVggLdmRwtqeepKb0EnY=
555+
github.com/projectsveltos/libsveltos v0.10.0/go.mod h1:E0dOSNerBX7lajgB8G3kXUpBwXYSsqZVkmdtlutmeK4=
556556
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
557557
github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
558558
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,7 @@ spec:
17721772
- --v=5
17731773
command:
17741774
- /manager
1775-
image: projectsveltos/addon-manager-amd64:dev
1775+
image: projectsveltos/addon-manager-amd64:v0.10.0
17761776
livenessProbe:
17771777
httpGet:
17781778
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: projectsveltos/drift-detection-manager-amd64:main
263+
image: projectsveltos/drift-detection-manager-amd64:v0.10.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: projectsveltos/drift-detection-manager-amd64:main
245+
image: projectsveltos/drift-detection-manager-amd64:v0.10.0
246246
livenessProbe:
247247
httpGet:
248248
path: /healthz

0 commit comments

Comments
 (0)