Skip to content

Commit c10fe18

Browse files
authored
Merge pull request #327 from gianlucam76/prep
Prepare for release v0.16.0
2 parents 75f635b + 6151c19 commit c10fe18

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Image URL to use all building/pushing image targets
33
IMG ?= controller:latest
44
# KUBEBUILDER_ENVTEST_KUBERNETES_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
5-
KUBEBUILDER_ENVTEST_KUBERNETES_VERSION = 1.27.1
5+
KUBEBUILDER_ENVTEST_KUBERNETES_VERSION = 1.28.0
66

77
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
88
ifeq (,$(shell go env GOBIN))
@@ -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 ?= main
28+
TAG ?= v0.16.0
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)
@@ -167,7 +167,7 @@ endif
167167
# K8S_VERSION for the Kind cluster can be set as environment variable. If not defined,
168168
# this default value is used
169169
ifndef K8S_VERSION
170-
K8S_VERSION := v1.27.0
170+
K8S_VERSION := v1.28.0
171171
endif
172172

173173
KIND_CONFIG ?= kind-cluster.yaml

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: projectsveltos/addon-controller-amd64:main
11+
- image: projectsveltos/addon-controller-amd64:v0.16.0
1212
name: controller

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/onsi/ginkgo/v2 v2.11.0
1818
github.com/onsi/gomega v1.27.8
1919
github.com/pkg/errors v0.9.1
20-
github.com/projectsveltos/libsveltos v0.15.4-0.20230809060457-84a0ee57d801
20+
github.com/projectsveltos/libsveltos v0.16.0
2121
github.com/prometheus/client_golang v1.16.0
2222
github.com/spf13/pflag v1.0.5
2323
github.com/yuin/gopher-lua v1.1.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,8 +557,8 @@ github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSg
557557
github.com/poy/onpar v0.0.0-20200406201722-06f95a1c68e8/go.mod h1:nSbFQvMj97ZyhFRSJYtut+msi4sOY6zJDGCdSc+/rZU=
558558
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
559559
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
560-
github.com/projectsveltos/libsveltos v0.15.4-0.20230809060457-84a0ee57d801 h1:i/yBrtQDggQzMKxZhsbyusCL/B0q/NZxyaw6Y7B/pss=
561-
github.com/projectsveltos/libsveltos v0.15.4-0.20230809060457-84a0ee57d801/go.mod h1:7PaqLwqxsnsG+lV07m4RO4rOg2gKhlmpJVanWcB84JQ=
560+
github.com/projectsveltos/libsveltos v0.16.0 h1:AWIup1UoI4z/09SCbtlCBdIZpBYLaDPgTI+s7+xhe7k=
561+
github.com/projectsveltos/libsveltos v0.16.0/go.mod h1:7PaqLwqxsnsG+lV07m4RO4rOg2gKhlmpJVanWcB84JQ=
562562
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
563563
github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
564564
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ spec:
18611861
- --v=5
18621862
command:
18631863
- /manager
1864-
image: projectsveltos/addon-controller-amd64:main
1864+
image: projectsveltos/addon-controller-amd64:v0.16.0
18651865
livenessProbe:
18661866
httpGet:
18671867
path: /healthz

pkg/drift-detection/drift-detection-manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ spec:
259259
- --run-mode=do-not-send-updates
260260
command:
261261
- /manager
262-
image: projectsveltos/drift-detection-manager-amd64:main
262+
image: projectsveltos/drift-detection-manager-amd64:v0.16.0
263263
livenessProbe:
264264
httpGet:
265265
path: /healthz

pkg/drift-detection/drift-detection-manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ spec:
241241
- --run-mode=do-not-send-updates
242242
command:
243243
- /manager
244-
image: projectsveltos/drift-detection-manager-amd64:main
244+
image: projectsveltos/drift-detection-manager-amd64:v0.16.0
245245
livenessProbe:
246246
httpGet:
247247
path: /healthz

0 commit comments

Comments
 (0)