Skip to content

Commit e059a16

Browse files
author
mgianluc
committed
Prepare dev to main merge
Post release v0.37.0
1 parent 763f454 commit e059a16

12 files changed

+16
-16
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARCH ?= $(shell go env GOARCH)
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.37.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
@@ -15,4 +15,4 @@ spec:
1515
- "--report-mode=0"
1616
- --shard-key=
1717
- "--v=5"
18-
- "--version=v0.37.0"
18+
- "--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/addon-controller:v0.37.0
11+
- image: docker.io/projectsveltos/addon-controller:main
1212
name: controller

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.20.2
1616
github.com/onsi/gomega v1.34.2
1717
github.com/pkg/errors v0.9.1
18-
github.com/projectsveltos/libsveltos v0.37.0
18+
github.com/projectsveltos/libsveltos v0.37.1-0.20240831173303-3b450159d14f
1919
github.com/prometheus/client_golang v1.20.2
2020
github.com/spf13/pflag v1.0.5
2121
github.com/yuin/gopher-lua v1.1.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI
365365
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
366366
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
367367
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
368-
github.com/projectsveltos/libsveltos v0.37.0 h1:DHntG8wOL8fI44Vkiyk0d5ZLhpuwbShYZZPGa5RnyNI=
369-
github.com/projectsveltos/libsveltos v0.37.0/go.mod h1:YZQWtvZUDfg2VbjrPEGVQZa/yxq0n+KMV58iro7L5yg=
368+
github.com/projectsveltos/libsveltos v0.37.1-0.20240831173303-3b450159d14f h1:eeVqeBF8YJsf42bMhxQlHyQuV5GYBc1UrV9DMiAh588=
369+
github.com/projectsveltos/libsveltos v0.37.1-0.20240831173303-3b450159d14f/go.mod h1:YZQWtvZUDfg2VbjrPEGVQZa/yxq0n+KMV58iro7L5yg=
370370
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
371371
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
372372
github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g=

manifest/deployment-agentless.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ spec:
2323
- --report-mode=0
2424
- --agent-in-mgmt-cluster
2525
- --v=5
26-
- --version=v0.37.0
26+
- --version=main
2727
command:
2828
- /manager
29-
image: docker.io/projectsveltos/addon-controller:v0.37.0
29+
image: docker.io/projectsveltos/addon-controller:main
3030
livenessProbe:
3131
failureThreshold: 3
3232
httpGet:

manifest/deployment-shard.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ spec:
2323
- --report-mode=0
2424
- --shard-key={{.SHARD}}
2525
- --v=5
26-
- --version=v0.37.0
26+
- --version=main
2727
command:
2828
- /manager
29-
image: docker.io/projectsveltos/addon-controller:v0.37.0
29+
image: docker.io/projectsveltos/addon-controller:main
3030
livenessProbe:
3131
failureThreshold: 3
3232
httpGet:

manifest/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8109,10 +8109,10 @@ spec:
81098109
- --report-mode=0
81108110
- --shard-key=
81118111
- --v=5
8112-
- --version=v0.37.0
8112+
- --version=main
81138113
command:
81148114
- /manager
8115-
image: docker.io/projectsveltos/addon-controller:v0.37.0
8115+
image: docker.io/projectsveltos/addon-controller:main
81168116
livenessProbe:
81178117
failureThreshold: 3
81188118
httpGet:

pkg/drift-detection/drift-detection-manager-in-mgmt-cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
- --run-mode=do-not-send-updates
4747
command:
4848
- /manager
49-
image: docker.io/projectsveltos/drift-detection-manager:v0.37.0
49+
image: docker.io/projectsveltos/drift-detection-manager:main
5050
livenessProbe:
5151
failureThreshold: 3
5252
httpGet:

pkg/drift-detection/drift-detection-manager-in-mgmt-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
- --run-mode=do-not-send-updates
2929
command:
3030
- /manager
31-
image: docker.io/projectsveltos/drift-detection-manager:v0.37.0
31+
image: docker.io/projectsveltos/drift-detection-manager:main
3232
livenessProbe:
3333
failureThreshold: 3
3434
httpGet:

0 commit comments

Comments
 (0)