Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing v0.4.2 #73

Merged
merged 4 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2.3.0
uses: golangci/golangci-lint-action@v3.0.0
with:
version: v1.53.2
only-new-issues: false
args: --timeout 5m --config .golangci.yml
diff:
name: diff
Expand All @@ -36,7 +38,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v2
with:
go-version: '1.20'
go-version-file: 'go.mod'
- run: make release
env:
CGO_ENABLED: 0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= v0.4.1
VERSION ?= v0.4.2

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ The following compatibility matrix is useful to match them according to the Cont

| CP provider | Cluster API | Kamaji | TCP API version |
|-------------|-------------|---------|-----------------|
| v0.4.2 | v1.5.x | ~v0.3.2 | `v1alpha1` |
| v0.4.1 | v1.5.x | ~v0.3.2 | `v1alpha1` |
| v0.4.0 | v1.5.x | ~v0.3.2 | `v1alpha1` |
| v0.3.1 | v1.5.x | ~v0.3.2 | `v1alpha1` |
Expand Down
2 changes: 1 addition & 1 deletion config/control-plane-components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4175,7 +4175,7 @@ spec:
- --leader-elect
command:
- /manager
image: docker.io/clastix/cluster-api-control-plane-provider-kamaji:v0.4.1
image: docker.io/clastix/cluster-api-control-plane-provider-kamaji:v0.4.2
livenessProbe:
httpGet:
path: /healthz
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: docker.io/clastix/cluster-api-control-plane-provider-kamaji
newTag: v0.4.1
newTag: v0.4.2
Loading