File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -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 ?= v0.43.0
28
+ TAG ?= main
29
29
30
30
.PHONY : all
31
31
all : build
Original file line number Diff line number Diff line change 14
14
- " --diagnostics-address=:8443"
15
15
- " --shard-key="
16
16
- " --v=5"
17
- - " --version=v0.43.0 "
17
+ - " --version=main "
Original file line number Diff line number Diff line change 8
8
spec :
9
9
containers :
10
10
# 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
12
12
name : manager
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ require (
12
12
github.com/onsi/ginkgo/v2 v2.22.0
13
13
github.com/onsi/gomega v1.36.0
14
14
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
17
17
github.com/prometheus/client_golang v1.20.5
18
18
github.com/slack-go/slack v0.15.0
19
19
github.com/spf13/pflag v1.0.5
Original file line number Diff line number Diff line change @@ -151,10 +151,10 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
151
151
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
152
152
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U =
153
153
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 =
158
158
github.com/prometheus/client_golang v1.20.5 h1:cxppBPuYhUnsO6yo/aoRol4L7q7UFfdm+bR9r+8l63Y =
159
159
github.com/prometheus/client_golang v1.20.5 /go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE =
160
160
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E =
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ spec:
22
22
- --diagnostics-address=:8443
23
23
- --shard-key={{.SHARD}}
24
24
- --v=5
25
- - --version=v0.43.0
25
+ - --version=main
26
26
command :
27
27
- /manager
28
- image : docker.io/projectsveltos/healthcheck-manager:v0.43.0
28
+ image : docker.io/projectsveltos/healthcheck-manager:main
29
29
livenessProbe :
30
30
failureThreshold : 3
31
31
httpGet :
Original file line number Diff line number Diff line change @@ -168,10 +168,10 @@ spec:
168
168
- --diagnostics-address=:8443
169
169
- --shard-key=
170
170
- --v=5
171
- - --version=v0.43.0
171
+ - --version=main
172
172
command :
173
173
- /manager
174
- image : docker.io/projectsveltos/healthcheck-manager:v0.43.0
174
+ image : docker.io/projectsveltos/healthcheck-manager:main
175
175
livenessProbe :
176
176
failureThreshold : 3
177
177
httpGet :
You can’t perform that action at this time.
0 commit comments