Skip to content

Commit 9819c22

Browse files
committed
version bump.
1 parent 3d9973b commit 9819c22

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM golang:1.15.8 as builder
33

44
# Install FDB
5-
ARG FDB_VERSION=6.2.28
5+
ARG FDB_VERSION=6.2.29
66
ARG FDB_WEBSITE=https://www.foundationdb.org
77

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

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

2424
# Copy 6.1 binaries
2525
COPY --from=foundationdb/foundationdb:6.1.13 /usr/bin/fdb* /usr/bin/fdb/6.1/

config/samples/cluster_local_tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
controller-tools.k8s.io: "1.0"
88
name: sample-cluster
99
spec:
10-
version: 6.2.28
10+
version: 6.2.29
1111
faultDomain:
1212
key: foundationdb.org/none
1313
processCounts:

config/samples/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ spec:
115115
valueFrom:
116116
fieldRef:
117117
fieldPath: metadata.namespace
118-
image: foundationdb/fdb-kubernetes-operator:v0.28.0
118+
image: foundationdb/fdb-kubernetes-operator:v0.29.0
119119
name: manager
120120
resources:
121121
limits:

config/samples/deployment/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
containers:
3030
- command:
3131
- /manager
32-
image: foundationdb/fdb-kubernetes-operator:v0.28.0
32+
image: foundationdb/fdb-kubernetes-operator:v0.29.0
3333
name: manager
3434
env:
3535
- name: WATCH_NAMESPACE

docs/changelog/v0.29.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# v0.29.0
2+
3+
* Fix #520: Public NotReady pods to pod cluster IPs.
4+
* Add test for kubectl rootcmd.
5+
* Prevent removing unknown labels in pods.
6+
* Allow removing instances by pod name.
7+
* Update controller-runtime and dependencies.
8+
* Add deny list to prevent specific instances of the operator from taking global operations.
9+
* Rename release job.
10+
* Add locks before removing pods or including instances.
11+
* Add python lint.
12+
* Update to golang 1.15.8.
13+
* Add evacuate command for plugin.

docs/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ published for each major version.
2525

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

3030
## Preparing for a Major Release
3131

helm/fdb-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
operator:
22
name: fdb-kubernetes-operator-controller-manager
33
image: foundationdb/fdb-kubernetes-operator
4-
tag: 0.28.0
4+
tag: 0.29.0
55
role: fdb-kubernetes-operator-manager-role
66
rolebinding: fdb-kubernetes-operator-manager-rolebinding
77
replicas: 1

0 commit comments

Comments
 (0)