Skip to content

Commit

Permalink
Merge pull request #33 from ThinkParQ/iamjoe/v1.7.0-updates
Browse files Browse the repository at this point in the history
Updates for v1.7.0
  • Loading branch information
iamjoemccormick authored Nov 4, 2024
2 parents d725743 + 8307661 commit 6752e2e
Show file tree
Hide file tree
Showing 3,754 changed files with 290,451 additions and 122,750 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 5 additions & 5 deletions .github/workflows/build-test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.0
go-version: 1.23.2
# Dependencies are cached by default: https://github.com/actions/setup-go#v4
# This can be explicitly disabled if it ever causes problems.

Expand Down Expand Up @@ -271,8 +271,8 @@ jobs:
strategy:
fail-fast: true
matrix:
k8s-version: [1.25.16, 1.26.14, 1.27.11, 1.28.7]
beegfs-version: [7.3.4, 7.4.2]
k8s-version: [1.27.11, 1.28.7, 1.29.10, 1.30.6, 1.31.2]
beegfs-version: [7.3.4, 7.4.5]
permissions:
packages: read
contents: read
Expand Down Expand Up @@ -376,8 +376,8 @@ jobs:
strategy:
fail-fast: true
matrix:
k8s-version: [1.25.16, 1.26.14, 1.27.11, 1.28.7]
beegfs-version: [7.3.4, 7.4.2]
k8s-version: [1.27.11, 1.28.7, 1.29.10, 1.30.6, 1.31.2]
beegfs-version: [7.3.4, 7.4.5]
permissions:
packages: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.0
go-version: 1.23.2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# Changelog
Notable changes to the BeeGFS CSI driver will be documented in this file.

[1.7.0] - 2024-11-04
--------------------

### Added
- Support for BeeGFS v7.4.5, Kubernetes v1.29, v1.30, and v1.31.
- Support for volume resizing.
- Note that volume capacity still has no effect when using the driver. However, support for
resizing can be helpful for applications that rely on the size of the Persistent Volume (PV) or
Persistent Volume Claim (PVC) as indicated in the Kubernetes API.

### Deprecated
- Kubernetes v1.27 and v1.28 support will be dropped in the next driver release according to our
[support
policy](docs/compatibility.md#dropping-compatibility-support-for-old-kubernetes-releases).
- BeeGFS 7.3 support will be dropped in the next driver release. Users are advised to upgrade to
BeeGFS 7.4.

### Removed
- Support/testing for Kubernetes v1.25 and v1.26.

[1.6.0] - 2024-02-28
--------------------

Expand Down
15 changes: 14 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,21 @@ CMDS ?= beegfs-csi-driver
TEST_GO_FILTER_CMD = -e '/test/e2e' -e '/operator'
all: build build-chwrap bin/chwrap.tar

# This check is primarily meant to ensure when the Go version in go.mod changes, CI workflows are
# also updated to use this version of Go.
.PHONY: check-go-version
check-go-version:
./hack/check-go-version.sh
@echo "Checking Go version..."
@{ \
GO_MOD_VERSION=go$$(grep '^go ' go.mod | awk '{print $$2}'); \
INSTALLED_VERSION=$$(go version | { read _ _ ver _; echo $${ver}; }); \
if [ "$$INSTALLED_VERSION" = "$$GO_MOD_VERSION" ]; then \
echo "INFO: go.mod requests ($$GO_MOD_VERSION) and the build environment has $$INSTALLED_VERSION."; \
else \
echo "ERROR: go.mod requests $$GO_MOD_VERSION but the build environment has $$INSTALLED_VERSION."; \
exit 1; \
fi \
} || { echo >&2 "ERROR: determining version of Go failed"; exit 1; }

.PHONY: generate-notices
generate-notices:
Expand Down
Loading

0 comments on commit 6752e2e

Please sign in to comment.