Skip to content

Commit 1bfc7ab

Browse files
authoredMar 9, 2023
operator: upgrade kubebuilder to v3 (kedacore#626)
1 parent 2b4accc commit 1bfc7ab

File tree

100 files changed

+2573
-894
lines changed

Some content is hidden

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

100 files changed

+2573
-894
lines changed
 

‎.github/workflows/tests.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
- name: Check go version
2727
run: go version
2828

29-
- name: Manifests
30-
run: make verify-manifests
31-
3229
- name: Set Go paths
3330
id: go-paths
3431
run: |
@@ -47,6 +44,15 @@ jobs:
4744
path: ${{ steps.go-paths.outputs.build_cache }}
4845
key: ${{ runner.os }}-go-build-cache-${{ hashFiles('**/go.sum') }}
4946

47+
- name: Download Go Modules
48+
run: go mod download
49+
50+
- name: Codegen
51+
run: make verify-codegen
52+
53+
- name: Manifests
54+
run: make verify-manifests
55+
5056
- name: Build
5157
run: ARCH=${{ matrix.name }} make build
5258

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ This changelog keeps track of work items that have been completed and are ready
2323

2424
- **General**: Automatically tag Docker image with commit SHA ([#567](https://github.com/kedacore/http-add-on/issues/567))
2525
- **RBAC**: Introduce fine-grained permissions per component and reduce required permissions ([#612](https://github.com/kedacore/http-add-on/issues/612))
26+
- **Operator**: Migrate project to Kubebuilder v3 ([#625](https://github.com/kedacore/http-add-on/issues/625))
2627

2728
### Fixes
2829

0 commit comments

Comments
 (0)
Please sign in to comment.