Skip to content

Commit 13c8492

Browse files
authored
Merge pull request #198 from gianlucam76/release-1.6
(chore) prepare for release v1.6.1
2 parents 3311bf0 + 6ddc360 commit 13c8492

15 files changed

Lines changed: 26 additions & 26 deletions

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ARCH ?= amd64
3636
OS ?= $(shell uname -s | tr A-Z a-z)
3737
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
3838
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
39-
TAG ?= v1.6.0
39+
TAG ?= v1.6.1
4040

4141
## Tool Binaries
4242
CONTROLLER_GEN := $(TOOLS_BIN_DIR)/controller-gen

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/shard-controller:v1.6.0
11+
- image: docker.io/projectsveltos/shard-controller:v1.6.1
1212
name: manager

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/onsi/ginkgo/v2 v2.28.1
1010
github.com/onsi/gomega v1.39.1
1111
github.com/pkg/errors v0.9.1
12-
github.com/projectsveltos/libsveltos v1.6.0
12+
github.com/projectsveltos/libsveltos v1.6.1
1313
github.com/spf13/pflag v1.0.10
1414
golang.org/x/text v0.34.0
1515
k8s.io/api v0.35.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
119119
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
120120
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
121121
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
122-
github.com/projectsveltos/libsveltos v1.6.0 h1:O6Rd5K+HsmyxKS/YVlXywGaLriNmU/T6MkhEFziaIjY=
123-
github.com/projectsveltos/libsveltos v1.6.0/go.mod h1:Wi/ICx8bv1SGBuzIu6ZFEJAosauY3jA/wbIe1SCvnEs=
122+
github.com/projectsveltos/libsveltos v1.6.1 h1:+NRYGDWONyUfjX0/LKFtPwvK/eQhO/jz1yvcPBj2lVA=
123+
github.com/projectsveltos/libsveltos v1.6.1/go.mod h1:Wi/ICx8bv1SGBuzIu6ZFEJAosauY3jA/wbIe1SCvnEs=
124124
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
125125
github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg=
126126
github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk=

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ spec:
145145
- --agent-in-mgmt-cluster=false
146146
command:
147147
- /manager
148-
image: docker.io/projectsveltos/shard-controller:v1.6.0
148+
image: docker.io/projectsveltos/shard-controller:v1.6.1
149149
livenessProbe:
150150
failureThreshold: 3
151151
httpGet:

pkg/sharding/ac.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
- --shard-key={{.SHARD}}
2727
- --capi-onboard-annotation=
2828
- --v=5
29-
- --version=v1.6.0
29+
- --version=v1.6.1
3030
- --agent-in-mgmt-cluster=false
3131
command:
3232
- /manager
@@ -39,7 +39,7 @@ spec:
3939
valueFrom:
4040
resourceFieldRef:
4141
resource: limits.cpu
42-
image: docker.io/projectsveltos/addon-controller@sha256:70c85f85f2bcff1349d89ef12f9f725764139ec524620821cb85410597ff8e92
42+
image: docker.io/projectsveltos/addon-controller@sha256:a89b79151478ab61fe7d705502cde9d604cd260edca3199511073b56da3afcba
4343
livenessProbe:
4444
failureThreshold: 3
4545
httpGet:
@@ -85,7 +85,7 @@ spec:
8585
env:
8686
- name: IS_INITIALIZATION
8787
value: "true"
88-
image: docker.io/projectsveltos/addon-controller@sha256:70c85f85f2bcff1349d89ef12f9f725764139ec524620821cb85410597ff8e92
88+
image: docker.io/projectsveltos/addon-controller@sha256:a89b79151478ab61fe7d705502cde9d604cd260edca3199511073b56da3afcba
8989
name: initialization
9090
securityContext:
9191
runAsNonRoot: true

pkg/sharding/addon-controller.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spec:
4444
- --shard-key={{.SHARD}}
4545
- --capi-onboard-annotation=
4646
- --v=5
47-
- --version=v1.6.0
47+
- --version=v1.6.1
4848
- --agent-in-mgmt-cluster=false
4949
command:
5050
- /manager
@@ -57,7 +57,7 @@ spec:
5757
valueFrom:
5858
resourceFieldRef:
5959
resource: limits.cpu
60-
image: docker.io/projectsveltos/addon-controller@sha256:70c85f85f2bcff1349d89ef12f9f725764139ec524620821cb85410597ff8e92
60+
image: docker.io/projectsveltos/addon-controller@sha256:a89b79151478ab61fe7d705502cde9d604cd260edca3199511073b56da3afcba
6161
livenessProbe:
6262
failureThreshold: 3
6363
httpGet:
@@ -103,7 +103,7 @@ spec:
103103
env:
104104
- name: IS_INITIALIZATION
105105
value: "true"
106-
image: docker.io/projectsveltos/addon-controller@sha256:70c85f85f2bcff1349d89ef12f9f725764139ec524620821cb85410597ff8e92
106+
image: docker.io/projectsveltos/addon-controller@sha256:a89b79151478ab61fe7d705502cde9d604cd260edca3199511073b56da3afcba
107107
name: initialization
108108
securityContext:
109109
runAsNonRoot: true

pkg/sharding/classifier.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ spec:
4242
- --shard-key={{.SHARD}}
4343
- --capi-onboard-annotation=
4444
- --v=5
45-
- --version=v1.6.0
45+
- --version=v1.6.1
4646
- --registry=
4747
- --agent-in-mgmt-cluster=false
4848
command:
4949
- /manager
50-
image: docker.io/projectsveltos/classifier@sha256:004ea02cf4868a1ab4ff5bacb88b265306e01343900421216a760f7688ce51ea
50+
image: docker.io/projectsveltos/classifier@sha256:bd80a343ffe1bf5b67c2b234beff45ebe9527e1291a145d4c608db65493fe849
5151
livenessProbe:
5252
failureThreshold: 3
5353
httpGet:

pkg/sharding/classifier.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ spec:
2424
- --shard-key={{.SHARD}}
2525
- --capi-onboard-annotation=
2626
- --v=5
27-
- --version=v1.6.0
27+
- --version=v1.6.1
2828
- --registry=
2929
- --agent-in-mgmt-cluster=false
3030
command:
3131
- /manager
32-
image: docker.io/projectsveltos/classifier@sha256:004ea02cf4868a1ab4ff5bacb88b265306e01343900421216a760f7688ce51ea
32+
image: docker.io/projectsveltos/classifier@sha256:bd80a343ffe1bf5b67c2b234beff45ebe9527e1291a145d4c608db65493fe849
3333
livenessProbe:
3434
failureThreshold: 3
3535
httpGet:

pkg/sharding/em.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ spec:
2323
- --shard-key={{.SHARD}}
2424
- --capi-onboard-annotation=
2525
- --v=5
26-
- --version=v1.6.0
26+
- --version=v1.6.1
2727
- --agent-in-mgmt-cluster=false
2828
command:
2929
- /manager
30-
image: docker.io/projectsveltos/event-manager@sha256:e2443f935e519329b70106668b0c82819b9c343f48199bacb96e267db164bfe8
30+
image: docker.io/projectsveltos/event-manager@sha256:a50a3a522bd441d70efaec8a3742a0f8b0bcaa5b8886bc70faa35632ecf841ef
3131
livenessProbe:
3232
failureThreshold: 3
3333
httpGet:

0 commit comments

Comments
 (0)