Skip to content

Commit 2a5e2fb

Browse files
author
mgianluc
committed
Advance libsveltos and addon-controller pin
Set tag
1 parent 8073503 commit 2a5e2fb

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
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 ?= v0.43.0
28+
TAG ?= main
2929

3030
.PHONY: all
3131
all: build

config/default/manager_auth_proxy_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ spec:
1414
- "--diagnostics-address=:8443"
1515
- "--shard-key="
1616
- "--v=5"
17-
- "--version=v0.43.0"
17+
- "--version=main"

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: docker.io/projectsveltos/healthcheck-manager:v0.43.0
11+
- image: docker.io/projectsveltos/healthcheck-manager:main
1212
name: manager

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ require (
1212
github.com/onsi/ginkgo/v2 v2.22.0
1313
github.com/onsi/gomega v1.36.0
1414
github.com/pkg/errors v0.9.1
15-
github.com/projectsveltos/addon-controller v0.43.0
16-
github.com/projectsveltos/libsveltos v0.43.0
15+
github.com/projectsveltos/addon-controller v0.43.1-0.20241202100654-55c0786240ee
16+
github.com/projectsveltos/libsveltos v0.43.1-0.20241201131544-c4c2550af4af
1717
github.com/prometheus/client_golang v1.20.5
1818
github.com/slack-go/slack v0.15.0
1919
github.com/spf13/pflag v1.0.5

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
151151
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
152152
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
153153
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
154-
github.com/projectsveltos/addon-controller v0.43.0 h1:7+rQD7v2wnHVPcp88l8xs9HWrWvHSDDZx8I6wirtSsM=
155-
github.com/projectsveltos/addon-controller v0.43.0/go.mod h1:mDXUi1qmLyXI5HkZ3F3Pl78guFElZmK3eGAo0DREKRA=
156-
github.com/projectsveltos/libsveltos v0.43.0 h1:3M7r7TbEbMJ3Xlb0MTxK4QDnH+5P5+dT0J+7+iGSUsg=
157-
github.com/projectsveltos/libsveltos v0.43.0/go.mod h1:4hqQRjwZ/DZ6u0haL3zhdARZ3lpspLv57rkhpXIzbsg=
154+
github.com/projectsveltos/addon-controller v0.43.1-0.20241202100654-55c0786240ee h1:rkbzO6c5ttqDk1KAtbr3HPSquT5AO4eaa388NNgiCRc=
155+
github.com/projectsveltos/addon-controller v0.43.1-0.20241202100654-55c0786240ee/go.mod h1:Mg0CsrS5NLlvKL5kIjqLznmvVE63Guj2aK+23k0kf0Y=
156+
github.com/projectsveltos/libsveltos v0.43.1-0.20241201131544-c4c2550af4af h1:rkf6H9XqWmO10dTmZIsns7Zgcw4+vvnLa1bUrURPoJA=
157+
github.com/projectsveltos/libsveltos v0.43.1-0.20241201131544-c4c2550af4af/go.mod h1:4hqQRjwZ/DZ6u0haL3zhdARZ3lpspLv57rkhpXIzbsg=
158158
github.com/prometheus/client_golang v1.20.5 h1:cxppBPuYhUnsO6yo/aoRol4L7q7UFfdm+bR9r+8l63Y=
159159
github.com/prometheus/client_golang v1.20.5/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE=
160160
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=

manifest/deployment-shard.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ spec:
2222
- --diagnostics-address=:8443
2323
- --shard-key={{.SHARD}}
2424
- --v=5
25-
- --version=v0.43.0
25+
- --version=main
2626
command:
2727
- /manager
28-
image: docker.io/projectsveltos/healthcheck-manager:v0.43.0
28+
image: docker.io/projectsveltos/healthcheck-manager:main
2929
livenessProbe:
3030
failureThreshold: 3
3131
httpGet:

manifest/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ spec:
168168
- --diagnostics-address=:8443
169169
- --shard-key=
170170
- --v=5
171-
- --version=v0.43.0
171+
- --version=main
172172
command:
173173
- /manager
174-
image: docker.io/projectsveltos/healthcheck-manager:v0.43.0
174+
image: docker.io/projectsveltos/healthcheck-manager:main
175175
livenessProbe:
176176
failureThreshold: 3
177177
httpGet:

0 commit comments

Comments
 (0)