Skip to content

Commit

Permalink
Release v2.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Wanzenböck <[email protected]>
  • Loading branch information
WanzenBug authored and JoelColledge committed Nov 11, 2024
1 parent 0f18c73 commit 68bac38
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [v2.7.0] - 2024-11-11

### Added

Expand All @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Reconciliation of a Satellites network interfaces now also deletes unneeded interfaces.
- Satellites use hosts LVM locks and udev rules if available.
- Satellites try to detect the LVM configuration on the host, reusing locks and udev rules if available.
- Updated images:
* LINSTOR 1.29.2
* LINSTOR CSI 1.6.4
Expand Down Expand Up @@ -905,4 +905,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[v2.5.1]: https://github.com/piraeusdatastore/piraeus-operator/compare/v2.5.0...v2.5.1
[v2.5.2]: https://github.com/piraeusdatastore/piraeus-operator/compare/v2.5.1...v2.5.2
[v2.6.0]: https://github.com/piraeusdatastore/piraeus-operator/compare/v2.5.2...v2.6.0
[Unreleased]: https://github.com/piraeusdatastore/piraeus-operator/compare/v2.6.0...HEAD
[v2.7.0]: https://github.com/piraeusdatastore/piraeus-operator/compare/v2.6.0...v2.7.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROJECT_NAME ?= piraeus-operator
# 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 ?= 2.6.0
VERSION ?= 2.7.0

# 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ to fix issues or new software versions until a stable upgrade path to v2 is avai
To deploy Piraeus Operator v2 from this repository, simply run:

```
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.6.0"
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.7.0"
# Verify the operator is running:
$ kubectl wait pod --for=condition=Ready -n piraeus-datastore -l app.kubernetes.io/component=piraeus-operator
pod/piraeus-operator-controller-manager-dd898f48c-bhbtv condition met
Expand Down
17 changes: 16 additions & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,25 @@ To upgrade, apply the resource of the latest release. Use the same method that w
To upgrade to the latest release using `kubectl`, run the following commands:

```
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.6.0"
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.7.0"
$ kubectl wait pod --for=condition=Ready -n piraeus-datastore --all
```

# Upgrades from v2.6 to v2.7

Generally, no special steps required.

LINSTOR Satellites now try to automatically detect the LVM configuration on the host. Any patch targeting the Satellites
/etc/lvm/lvm.conf file may need to be adapted.

# Upgrades from v2.5 to v2.6

No special steps required.

# Upgrades from v2.4 to v2.5

No special steps required.

# Upgrades from v2.3 to v2.4

Generally, no special steps required.
Expand Down
4 changes: 2 additions & 2 deletions charts/piraeus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: piraeus
description: |
The Piraeus Operator manages software defined storage clusters using LINSTOR in Kubernetes.
type: application
version: 2.6.0
appVersion: "v2.6.0"
version: 2.7.0
appVersion: "v2.7.0"
maintainers:
- name: Piraeus Datastore
url: https://piraeus.io
Expand Down
2 changes: 1 addition & 1 deletion config/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ labels:
images:
- name: controller
newName: quay.io/piraeusdatastore/piraeus-operator
newTag: v2
newTag: v2.7.0

# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
#- ../prometheus
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ All resources needed to run Piraeus Operator are included in a single Kustomizat
Install Piraeus Operator by running:

```bash
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.6.0"
$ kubectl apply --server-side -k "https://github.com/piraeusdatastore/piraeus-operator//config/default?ref=v2.7.0"
namespace/piraeus-datastore configured
...
```
Expand Down

0 comments on commit 68bac38

Please sign in to comment.