Skip to content

Commit 0642bb9

Browse files
authored
Merge pull request #1558 from gianlucam76/release-1.3
(chore) prepare for release v1.3.1
2 parents 2ade79e + e51eae5 commit 0642bb9

13 files changed

+21
-21
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OS ?= $(shell uname -s)
2727
OS := $(shell echo $(OS) | tr '[:upper:]' '[:lower:]')
2828
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
2929
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
30-
TAG ?= v1.3.0
30+
TAG ?= v1.3.1
3131

3232
.PHONY: all
3333
all: build

config/default/manager_auth_proxy_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
- --shard-key=
1717
- --capi-onboard-annotation=
1818
- "--v=5"
19-
- "--version=v1.3.0"
19+
- "--version=v1.3.1"
2020
- "--agent-in-mgmt-cluster=false"
2121
env:
2222
- name: GOMEMLIMIT

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:v1.3.0
11+
- image: docker.io/projectsveltos/addon-controller:v1.3.1
1212
name: controller

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/onsi/ginkgo/v2 v2.27.3
1919
github.com/onsi/gomega v1.38.3
2020
github.com/pkg/errors v0.9.1
21-
github.com/projectsveltos/libsveltos v1.3.0
21+
github.com/projectsveltos/libsveltos v1.3.1
2222
github.com/prometheus/client_golang v1.23.2
2323
github.com/robfig/cron v1.2.0
2424
github.com/spf13/pflag v1.0.10

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRI
291291
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
292292
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
293293
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
294-
github.com/projectsveltos/libsveltos v1.3.0 h1:m0AEG+HqTSkl93Wa9rizedH6nqTwUbrCeBdz4VGloNc=
295-
github.com/projectsveltos/libsveltos v1.3.0/go.mod h1:At1G0itHPdELlMuQh+v2rLtA/Kji9xMV8K1k0l/sQ1Q=
294+
github.com/projectsveltos/libsveltos v1.3.1 h1:uUQ7YRwhWnxxBUjBmf6WJprwSsHJDJAPyHkUmQ+DyXI=
295+
github.com/projectsveltos/libsveltos v1.3.1/go.mod h1:At1G0itHPdELlMuQh+v2rLtA/Kji9xMV8K1k0l/sQ1Q=
296296
github.com/projectsveltos/lua-utils/glua-json v0.0.0-20251212200258-2b3cdcb7c0f5 h1:khnc+994UszxZYu69J+R5FKiLA/Nk1JQj0EYAkwTWz0=
297297
github.com/projectsveltos/lua-utils/glua-json v0.0.0-20251212200258-2b3cdcb7c0f5/go.mod h1:yVL8KQFa9tmcxgwl9nwIMtKgtmIVC1zaFRSCfOwYvPY=
298298
github.com/projectsveltos/lua-utils/glua-runes v0.0.0-20251212200258-2b3cdcb7c0f5 h1:YbsebwRwTRhV8QacvEAdFqxcxHdeu7JTVtsBovbkgos=

manifest/deployment-agentless.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- --shard-key=
2525
- --capi-onboard-annotation=
2626
- --v=5
27-
- --version=v1.3.0
27+
- --version=v1.3.1
2828
- --agent-in-mgmt-cluster=true
2929
command:
3030
- /manager
@@ -37,7 +37,7 @@ spec:
3737
valueFrom:
3838
resourceFieldRef:
3939
resource: limits.cpu
40-
image: docker.io/projectsveltos/addon-controller:v1.3.0
40+
image: docker.io/projectsveltos/addon-controller:v1.3.1
4141
livenessProbe:
4242
failureThreshold: 3
4343
httpGet:

manifest/deployment-shard.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- --shard-key={{.SHARD}}
2525
- --capi-onboard-annotation=
2626
- --v=5
27-
- --version=v1.3.0
27+
- --version=v1.3.1
2828
- --agent-in-mgmt-cluster=false
2929
command:
3030
- /manager
@@ -37,7 +37,7 @@ spec:
3737
valueFrom:
3838
resourceFieldRef:
3939
resource: limits.cpu
40-
image: docker.io/projectsveltos/addon-controller:v1.3.0
40+
image: docker.io/projectsveltos/addon-controller:v1.3.1
4141
livenessProbe:
4242
failureThreshold: 3
4343
httpGet:

manifest/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6951,7 +6951,7 @@ spec:
69516951
- --shard-key=
69526952
- --capi-onboard-annotation=
69536953
- --v=5
6954-
- --version=v1.3.0
6954+
- --version=v1.3.1
69556955
- --agent-in-mgmt-cluster=false
69566956
command:
69576957
- /manager
@@ -6964,7 +6964,7 @@ spec:
69646964
valueFrom:
69656965
resourceFieldRef:
69666966
resource: limits.cpu
6967-
image: docker.io/projectsveltos/addon-controller:v1.3.0
6967+
image: docker.io/projectsveltos/addon-controller:v1.3.1
69686968
livenessProbe:
69696969
failureThreshold: 3
69706970
httpGet:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ spec:
4444
- --cluster-type=
4545
- --current-cluster=management-cluster
4646
- --run-mode=do-not-send-updates
47-
- --version=v1.3.0
47+
- --version=v1.3.1
4848
command:
4949
- /manager
50-
image: docker.io/projectsveltos/drift-detection-manager@sha256:3714d0c31508628812418f7fd02675068d4959729ccb98b8f37095b8745c1f29
50+
image: docker.io/projectsveltos/drift-detection-manager@sha256:82197c5e1ea66b748c5d5085fad096b95c45757b463f379f7539de22734c1db2
5151
livenessProbe:
5252
failureThreshold: 3
5353
httpGet:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ spec:
2626
- --cluster-type=
2727
- --current-cluster=management-cluster
2828
- --run-mode=do-not-send-updates
29-
- --version=v1.3.0
29+
- --version=v1.3.1
3030
command:
3131
- /manager
32-
image: docker.io/projectsveltos/drift-detection-manager@sha256:3714d0c31508628812418f7fd02675068d4959729ccb98b8f37095b8745c1f29
32+
image: docker.io/projectsveltos/drift-detection-manager@sha256:82197c5e1ea66b748c5d5085fad096b95c45757b463f379f7539de22734c1db2
3333
livenessProbe:
3434
failureThreshold: 3
3535
httpGet:

0 commit comments

Comments
 (0)