Skip to content

Commit

Permalink
Merge pull request #33 from etungsten/v0.1.3-release
Browse files Browse the repository at this point in the history
v0.1.3 Release
  • Loading branch information
etungsten authored Apr 21, 2020
2 parents 81e0ef8 + 7a06971 commit 0527bd9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 0.1.3

* Add missing backtick in README instructions ([#25])
* Add license info to the operator container images ([#6])
* Specify passing `-c` to `watch` in README instructions for monitoring node status ([#27])
* Bump [bottlerocket-sdk](https://github.com/bottlerocket-os/bottlerocket-sdk) version to v0.10.1 for building the update operator's binaries. ([#21])
* Bump the version of the golang image to 1.14.1 to match the Go toolchain version in the [bottlerocket-sdk](https://github.com/bottlerocket-os/bottlerocket-sdk). ([#31])

This release includes a breaking change for users upgrading from v0.1.2:
* Change `platform-version` label to `updater-interface-version` for indicating updater interface version ([#30])

Please apply the new label on your bottlerocket nodes if you wish to use v0.1.3 of the update operator:
```
kubectl label node $(kubectl get nodes -o jsonpath='{.items[*].metadata.name}') bottlerocket.aws/updater-interface-version=1.0.0
```

To remove the deprecated label from the nodes:
```
kubectl label nodes --all "bottlerocket.aws/platform-version"-
```

[#25]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/25
[#6]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/6
[#27]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/27
[#30]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/30
[#21]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/21
[#31]: https://github.com/bottlerocket-os/bottlerocket-update-operator/pull/31

# 0.1.2

Initial release of **bottlerocket-update-operator** - a Kubernetes operator that coordinates Bottlerocket updates on hosts in a cluster..

See the [README](README.md) for additional information.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.2
v0.1.3
4 changes: 2 additions & 2 deletions update-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ spec:
values: ["agent"]
containers:
- name: controller
image: "328549459982.dkr.ecr.us-west-2.amazonaws.com/bottlerocket-update-operator:v0.1.2"
image: "328549459982.dkr.ecr.us-west-2.amazonaws.com/bottlerocket-update-operator:v0.1.3"
imagePullPolicy: Always
args:
- -controller
Expand Down Expand Up @@ -165,7 +165,7 @@ spec:
hostPID: true
containers:
- name: agent
image: "328549459982.dkr.ecr.us-west-2.amazonaws.com/bottlerocket-update-operator:v0.1.2"
image: "328549459982.dkr.ecr.us-west-2.amazonaws.com/bottlerocket-update-operator:v0.1.3"
imagePullPolicy: Always
# XXX: tty required to exec binaries that use `simplelog` until https://github.com/bottlerocket-os/bottlerocket/issues/576 is resolved.
tty: true
Expand Down

0 comments on commit 0527bd9

Please sign in to comment.