Skip to content

Commit

Permalink
version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaMcManus committed Feb 26, 2021
1 parent 3d9973b commit 9819c22
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM golang:1.15.8 as builder

# Install FDB
ARG FDB_VERSION=6.2.28
ARG FDB_VERSION=6.2.29
ARG FDB_WEBSITE=https://www.foundationdb.org

COPY foundationdb-kubernetes-sidecar/website/ /mnt/website/
Expand All @@ -19,7 +19,7 @@ RUN set -eux && \
update-ca-certificates --fresh

# Copy 6.2 binaries
COPY --from=foundationdb/foundationdb:6.2.28 /usr/bin/fdb* /usr/bin/fdb/6.2/
COPY --from=foundationdb/foundationdb:6.2.29 /usr/bin/fdb* /usr/bin/fdb/6.2/

# Copy 6.1 binaries
COPY --from=foundationdb/foundationdb:6.1.13 /usr/bin/fdb* /usr/bin/fdb/6.1/
Expand Down
2 changes: 1 addition & 1 deletion config/samples/cluster_local_tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
controller-tools.k8s.io: "1.0"
name: sample-cluster
spec:
version: 6.2.28
version: 6.2.29
faultDomain:
key: foundationdb.org/none
processCounts:
Expand Down
2 changes: 1 addition & 1 deletion config/samples/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: foundationdb/fdb-kubernetes-operator:v0.28.0
image: foundationdb/fdb-kubernetes-operator:v0.29.0
name: manager
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion config/samples/deployment/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
containers:
- command:
- /manager
image: foundationdb/fdb-kubernetes-operator:v0.28.0
image: foundationdb/fdb-kubernetes-operator:v0.29.0
name: manager
env:
- name: WATCH_NAMESPACE
Expand Down
13 changes: 13 additions & 0 deletions docs/changelog/v0.29.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# v0.29.0

* Fix #520: Public NotReady pods to pod cluster IPs.
* Add test for kubectl rootcmd.
* Prevent removing unknown labels in pods.
* Allow removing instances by pod name.
* Update controller-runtime and dependencies.
* Add deny list to prevent specific instances of the operator from taking global operations.
* Rename release job.
* Add locks before removing pods or including instances.
* Add python lint.
* Update to golang 1.15.8.
* Add evacuate command for plugin.
2 changes: 1 addition & 1 deletion docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ published for each major version.

| Operator Version | Most Recent Version | Supported Cluster Models | Supported FDB Versions | Supported Kubernetes Versions |
| ----------------- | ------------------- | ------------------------- | ----------------------- | ----------------------------- |
| 0.x | 0.28.0 | v1beta1 | 6.1.12+ | 1.15.0+ |
| 0.x | 0.29.0 | v1beta1 | 6.1.12+ | 1.15.0+ |

## Preparing for a Major Release

Expand Down
2 changes: 1 addition & 1 deletion helm/fdb-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
operator:
name: fdb-kubernetes-operator-controller-manager
image: foundationdb/fdb-kubernetes-operator
tag: 0.28.0
tag: 0.29.0
role: fdb-kubernetes-operator-manager-role
rolebinding: fdb-kubernetes-operator-manager-rolebinding
replicas: 1
Expand Down

0 comments on commit 9819c22

Please sign in to comment.