Skip to content
Closed
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
2 changes: 1 addition & 1 deletion api/v1beta2/foundationdbbackup_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
// +kubebuilder:object:root=true
// +kubebuilder:resource:shortName=fdbbackup
// +kubebuilder:subresource:status
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.17.0"
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.18.0"
// +kubebuilder:printcolumn:name="Generation",type="integer",JSONPath=".metadata.generation",description="Latest generation of the spec",priority=0
// +kubebuilder:printcolumn:name="Reconciled",type="integer",JSONPath=".status.generations.reconciled",description="Last reconciled generation of the spec",priority=0
// +kubebuilder:printcolumn:name="Restorable",type="boolean",JSONPath=".status.backupDetails.restorable",description="If the backup is restorable",priority=0
Expand Down
2 changes: 1 addition & 1 deletion api/v1beta2/foundationdbcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
// +kubebuilder:object:root=true
// +kubebuilder:resource:shortName=fdb
// +kubebuilder:subresource:status
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.17.0"
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.18.0"
// +kubebuilder:printcolumn:name="Generation",type="integer",JSONPath=".metadata.generation",description="Latest generation of the spec",priority=0
// +kubebuilder:printcolumn:name="Reconciled",type="integer",JSONPath=".status.generations.reconciled",description="Last reconciled generation of the spec",priority=0
// +kubebuilder:printcolumn:name="Available",type="boolean",JSONPath=".status.health.available",description="Database available",priority=0
Expand Down
2 changes: 1 addition & 1 deletion api/v1beta2/foundationdbrestore_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
// +kubebuilder:object:root=true
// +kubebuilder:resource:shortName=fdbrestore
// +kubebuilder:subresource:status
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.17.0"
// +kubebuilder:metadata:annotations="foundationdb.org/release=v2.18.0"
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp"
// +kubebuilder:printcolumn:name="State",type=string,JSONPath=`.status.state`
// +kubebuilder:storageversion
Expand Down
2 changes: 1 addition & 1 deletion charts/fdb-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ type: application
version: 0.2.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: v2.17.0
appVersion: v2.18.0
maintainers:
- name: "foundationdb-ci"
2 changes: 1 addition & 1 deletion charts/fdb-operator/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
image:
repository: foundationdb/fdb-kubernetes-operator
tag: v2.17.0
tag: v2.18.0
pullPolicy: IfNotPresent
initContainers:
7.1:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.18.0
foundationdb.org/release: v2.17.0
foundationdb.org/release: v2.18.0
name: foundationdbbackups.apps.foundationdb.org
spec:
group: apps.foundationdb.org
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.18.0
foundationdb.org/release: v2.17.0
foundationdb.org/release: v2.18.0
name: foundationdbclusters.apps.foundationdb.org
spec:
group: apps.foundationdb.org
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.18.0
foundationdb.org/release: v2.17.0
foundationdb.org/release: v2.18.0
name: foundationdbrestores.apps.foundationdb.org
spec:
group: apps.foundationdb.org
Expand Down
2 changes: 1 addition & 1 deletion config/deployment/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ spec:
containers:
- command:
- /manager
image: foundationdb/fdb-kubernetes-operator:v2.17.0
image: foundationdb/fdb-kubernetes-operator:v2.18.0
name: manager
env:
- name: WATCH_NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion config/samples/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: foundationdb/fdb-kubernetes-operator:v2.17.0
image: foundationdb/fdb-kubernetes-operator:v2.18.0
name: manager
ports:
- containerPort: 8080
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog/v2.18.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# v2.18.0

## Changes

* Improve e2e test suite retries [#2387](https:///github.com/FoundationDB/fdb-kubernetes-operator/pull/2387)
* In the multi-region recover command handle cases where the cluster entries cannot be resolved. [#2391](https:///github.com/FoundationDB/fdb-kubernetes-operator/pull/2391)
Loading