Skip to content

Commit e510a42

Browse files
Merge pull request #13 from movewp3/fix/BumpK8s_1.30
fix: bump k8s 1.30
2 parents af18ba0 + 1acd211 commit e510a42

2,693 files changed

Lines changed: 148433 additions & 75974 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: setup-go
1313
uses: actions/setup-go@v3
1414
with:
15-
go-version: '1.21'
15+
go-version: '1.23'
1616
- name: Run tests
1717
run: |
1818
make test

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
- name: Set up Go 1.x
99
uses: actions/setup-go@v3
1010
with:
11-
go-version: 1.21
11+
go-version: 1.23
1212
id: go
1313
- name: checkout project
1414
uses: actions/checkout@v3
1515
- name: start minikube
16-
uses: manusa/actions-setup-minikube@v2.7.1
16+
uses: manusa/actions-setup-minikube@v2.13.1
1717
with:
18-
minikube version: 'v1.28.0'
19-
kubernetes version: 'v1.25.0'
18+
minikube version: 'v1.33.1'
19+
kubernetes version: 'v1.30.3'
2020
driver: 'docker'
2121
- name: configure Minikube
2222
run: |

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: Set up Go 1.x
99
uses: actions/setup-go@v3
1010
with:
11-
go-version: 1.21
11+
go-version: 1.23
1212
id: go
1313
- name: Check out code into the Go module directory
1414
uses: actions/checkout@v3

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/keycloakclient-controller.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.21.11 AS builder
2+
FROM golang:1.23.4 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest
233233

234234
## Tool Versions
235235
KUSTOMIZE_VERSION ?= v3.8.7
236-
CONTROLLER_TOOLS_VERSION ?= v0.10.0
236+
CONTROLLER_TOOLS_VERSION ?= latest
237237

238238
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
239239
.PHONY: kustomize
@@ -244,7 +244,7 @@ $(KUSTOMIZE): $(LOCALBIN)
244244
.PHONY: controller-gen
245245
controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessary.
246246
$(CONTROLLER_GEN): $(LOCALBIN)
247-
test -s $(LOCALBIN)/controller-gen || GO111MODULE=on GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
247+
test -s $(LOCALBIN)/controller-gen || GO111MODULE=on GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@latest
248248

249249
.PHONY: envtest
250250
envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.

api/v1alpha1/zz_generated.deepcopy.go

Lines changed: 18 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)