Skip to content

Commit b5dcb91

Browse files
authored
Merge pull request #387 from gianlucam76/release-1.6
(chore) prepare for release v1.6.1
2 parents 59e42a4 + 425aeff commit b5dcb91

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
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 ?= v1.6.0
28+
TAG ?= v1.6.1
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,5 +15,5 @@ spec:
1515
- "--shard-key="
1616
- "--capi-onboard-annotation="
1717
- "--v=5"
18-
- "--version=v1.6.0"
18+
- "--version=v1.6.1"
1919
- "--agent-in-mgmt-cluster=false"

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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ require (
1313
github.com/onsi/ginkgo/v2 v2.28.1
1414
github.com/onsi/gomega v1.39.1
1515
github.com/pkg/errors v0.9.1
16-
github.com/projectsveltos/addon-controller v1.6.0
17-
github.com/projectsveltos/libsveltos v1.6.0
16+
github.com/projectsveltos/addon-controller v1.6.1
17+
github.com/projectsveltos/libsveltos v1.6.1
1818
github.com/prometheus/client_golang v1.23.2
1919
github.com/slack-go/slack v0.19.0
2020
github.com/spf13/pflag v1.0.10

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
194194
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
195195
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
196196
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
197-
github.com/projectsveltos/addon-controller v1.6.0 h1:Q8e/5zIbI/chRagM/0sXvehRQZpx4UnX9RiSHWZ61uM=
198-
github.com/projectsveltos/addon-controller v1.6.0/go.mod h1:vYNIj4TvGDFrp2vYiGfACyVx2qD2zVyQjOFnolxnGK0=
199-
github.com/projectsveltos/libsveltos v1.6.0 h1:O6Rd5K+HsmyxKS/YVlXywGaLriNmU/T6MkhEFziaIjY=
200-
github.com/projectsveltos/libsveltos v1.6.0/go.mod h1:Wi/ICx8bv1SGBuzIu6ZFEJAosauY3jA/wbIe1SCvnEs=
197+
github.com/projectsveltos/addon-controller v1.6.1 h1:KfMb/reVMVGHpUULk9fL9PsvFNptkx8v4mv1ycJSeb0=
198+
github.com/projectsveltos/addon-controller v1.6.1/go.mod h1:jAxTUb7JBtO34lSEc0PXNQL2ggvo/xfvn/Y3MnFuRUM=
199+
github.com/projectsveltos/libsveltos v1.6.1 h1:+NRYGDWONyUfjX0/LKFtPwvK/eQhO/jz1yvcPBj2lVA=
200+
github.com/projectsveltos/libsveltos v1.6.1/go.mod h1:Wi/ICx8bv1SGBuzIu6ZFEJAosauY3jA/wbIe1SCvnEs=
201201
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
202202
github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg=
203203
github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk=

manifest/deployment-shard.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/healthcheck-manager:v1.6.0
30+
image: docker.io/projectsveltos/healthcheck-manager:v1.6.1
3131
livenessProbe:
3232
failureThreshold: 3
3333
httpGet:

manifest/manifest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ spec:
192192
- --shard-key=
193193
- --capi-onboard-annotation=
194194
- --v=5
195-
- --version=v1.6.0
195+
- --version=v1.6.1
196196
- --agent-in-mgmt-cluster=false
197197
command:
198198
- /manager
199-
image: docker.io/projectsveltos/healthcheck-manager:v1.6.0
199+
image: docker.io/projectsveltos/healthcheck-manager:v1.6.1
200200
livenessProbe:
201201
failureThreshold: 3
202202
httpGet:

test/sveltos-agent.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ spec:
183183
- --cluster-namespace=
184184
- --cluster-name=
185185
- --cluster-type=
186-
- --version=v1.6.0
186+
- --version=v1.6.1
187187
- --current-cluster=managed-cluster
188188
- --run-mode=do-not-send-reports
189189
- --discard-managed-fields=true
@@ -198,7 +198,7 @@ spec:
198198
valueFrom:
199199
resourceFieldRef:
200200
resource: limits.cpu
201-
image: docker.io/projectsveltos/sveltos-agent:v1.6.0
201+
image: docker.io/projectsveltos/sveltos-agent:v1.6.1
202202
livenessProbe:
203203
failureThreshold: 3
204204
httpGet:

0 commit comments

Comments
 (0)