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

Add changelog for v0.10.0 and tag rc1 #199

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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).

## [0.10.0] - 2023-07-24
### Added
- Agent now supports `-force-drain` flag, which allows removal of pods with custom or no controller when draining nodes [#197](https://github.com/flatcar/flatcar-linux-update-operator/pull/197).

### Changed
- Everything is now built using Go 1.20.
- Container images now use Alpine Linux version v3.18 as a base image.

## [0.9.0] - 2023-01-03
### Added
- Example manifests use new `node-role.kubernetes.io/control-plane` tolerations in addition to legacy `node-role.kubernetes.io/master`.
Expand Down Expand Up @@ -89,6 +97,7 @@ is able to trigger a reboot on the host.
- Made operator code compatible with Kubernetes 1.17.
- Fixed publishing leader acquired event by the operator.

[0.10.0]: https://github.com/flatcar/flatcar-linux-update-operator/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/flatcar/flatcar-linux-update-operator/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/flatcar/flatcar-linux-update-operator/compare/v0.7.3...v0.8.0
[0.7.3]: https://github.com/flatcar/flatcar-linux-update-operator/compare/v0.7.2...v0.7.3
2 changes: 1 addition & 1 deletion examples/deploy/update-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: flatcar-linux-update-agent
containers:
- name: update-agent
image: ghcr.io/flatcar/flatcar-linux-update-operator:v0.9.0
image: ghcr.io/flatcar/flatcar-linux-update-operator:v0.10.0-rc1
command:
- "/bin/update-agent"
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion examples/deploy/update-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
serviceAccountName: flatcar-linux-update-operator-sa
containers:
- name: update-operator
image: ghcr.io/flatcar/flatcar-linux-update-operator:v0.9.0
image: ghcr.io/flatcar/flatcar-linux-update-operator:v0.10.0-rc1
command:
- "/bin/update-operator"
env:
Expand Down
Loading