Skip to content

Commit 45b7aca

Browse files
committed
bump versions
1 parent 86c45b2 commit 45b7aca

6 files changed

Lines changed: 12 additions & 12 deletions

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.5.1
6+
VERSION ?= 1.6.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
@@ -48,7 +48,7 @@ endif
4848

4949
# Set the Operator SDK version to use. By default, what is installed on the system is used.
5050
# This is useful for CI or a project to utilize a specific version of the operator-sdk toolkit.
51-
OPERATOR_SDK_VERSION ?= v1.39.1
51+
OPERATOR_SDK_VERSION ?= v1.41.1
5252

5353
# Image URL to use all building/pushing image targets
5454
IMG ?= controller:latest
@@ -67,15 +67,15 @@ GEN_CRD_API_REFERENCE_DOCS ?= $(LOCALBIN)/gen-crd-api-reference-docs
6767
GEN_API_REF_DOCS_VERSION ?= 71fefeed89106e8d2879b9797e5991d414336182
6868

6969
## Tool Versions
70-
KUSTOMIZE_VERSION ?= v5.6.0
71-
CONTROLLER_TOOLS_VERSION ?= v0.17.2
70+
KUSTOMIZE_VERSION ?= v5.7.1
71+
CONTROLLER_TOOLS_VERSION ?= v0.19.0
7272

7373
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
74-
ENVTEST_K8S_VERSION = 1.32.1
74+
ENVTEST_K8S_VERSION = 1.34.1
7575
UNAME := $(shell uname -s | tr '[:upper:]' '[:lower:]')
7676
KIND_BINARY := kind-$(UNAME)-amd64
7777
KIND = $(LOCALBIN)/kind
78-
KIND_VERSION ?= 0.26.0
78+
KIND_VERSION ?= 0.30.0
7979

8080
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
8181
ifeq (,$(shell go env GOBIN))
@@ -158,7 +158,7 @@ $(KIND): $(LOCALBIN)
158158
fi
159159

160160
GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
161-
GOLANGCI_LINT_VERSION ?= v1.64.5
161+
GOLANGCI_LINT_VERSION ?= v2.4.0
162162
golangci-lint:
163163
@[ -f $(GOLANGCI_LINT) ] || { \
164164
set -e ;\

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var (
4646
setupLog = ctrl.Log.WithName("setup")
4747
)
4848

49-
const version = "v1.5.1"
49+
const version = "v1.6.0"
5050

5151
func init() {
5252
utilruntime.Must(clientgoscheme.AddToScheme(scheme))

config/crd/bases/cloudflare-operator.io_accounts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.17.2
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: accounts.cloudflare-operator.io
88
spec:
99
group: cloudflare-operator.io

config/crd/bases/cloudflare-operator.io_dnsrecords.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.17.2
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: dnsrecords.cloudflare-operator.io
88
spec:
99
group: cloudflare-operator.io

config/crd/bases/cloudflare-operator.io_ips.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.17.2
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: ips.cloudflare-operator.io
88
spec:
99
group: cloudflare-operator.io

config/crd/bases/cloudflare-operator.io_zones.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.17.2
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: zones.cloudflare-operator.io
88
spec:
99
group: cloudflare-operator.io

0 commit comments

Comments
 (0)