Skip to content

Commit 17fa489

Browse files
committed
Version bump.
1 parent 1c44104 commit 17fa489

File tree

9 files changed

+18
-11
lines changed

9 files changed

+18
-11
lines changed

config/samples/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ spec:
127127
valueFrom:
128128
fieldRef:
129129
fieldPath: metadata.namespace
130-
image: foundationdb/fdb-kubernetes-operator:v0.32.0
130+
image: foundationdb/fdb-kubernetes-operator:v0.33.0
131131
name: manager
132132
ports:
133133
- containerPort: 8080

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.32.0
32+
image: foundationdb/fdb-kubernetes-operator:v0.33.0
3333
name: manager
3434
env:
3535
- name: WATCH_NAMESPACE

docs/changelog/v0.33.0.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# v0.33.0
2+
3+
* Ignore processes that are pending removal when doing a bounce.
4+
* Simplify selection of FDB version when generating the sidecar image version.
5+
* Improve support for custom sidecar images.
6+
* Add initial end-to-end tests.
7+
* Add a restart command to the kubectl plugin.
8+
* Add an analyze command to the kubectl plugin.
9+
* Validate FDB version format as part of the CRD definition.

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.32.0 | v1beta1 | 6.1.12+ | 1.15.0+ |
28+
| 0.x | 0.33.0 | v1beta1 | 6.1.12+ | 1.15.0+ |
2929

3030
## Preparing for a Major Release
3131

helm/fdb-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ version: 0.1.0
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
21-
appVersion: 0.27.0
21+
appVersion: 0.33.0

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: v0.32.0
4+
tag: v0.33.0
55
role: fdb-kubernetes-operator-manager-role
66
rolebinding: fdb-kubernetes-operator-manager-rolebinding
77
replicas: 1

kubectl-fdb/cmd/analyze.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import (
2727
"time"
2828

2929
fdbtypes "github.com/FoundationDB/fdb-kubernetes-operator/api/v1beta1"
30-
"github.com/FoundationDB/fdb-kubernetes-operator/controllers"
3130
"github.com/fatih/color"
3231
"github.com/spf13/cobra"
3332
"golang.org/x/net/context"
@@ -314,7 +313,7 @@ func analyzeCluster(cmd *cobra.Command, kubeClient client.Client, clusterName st
314313

315314
// The instance should be delete so we can safely replace it
316315
if autoFix {
317-
replaceInstances = append(replaceInstances, pod.Labels[controllers.FDBInstanceIDLabel])
316+
replaceInstances = append(replaceInstances, pod.Labels[fdbtypes.FDBInstanceIDLabel])
318317
}
319318
}
320319
}

kubectl-fdb/cmd/analyze_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import (
2727
"time"
2828

2929
fdbtypes "github.com/FoundationDB/fdb-kubernetes-operator/api/v1beta1"
30-
"github.com/FoundationDB/fdb-kubernetes-operator/controllers"
3130
corev1 "k8s.io/api/core/v1"
3231
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3332
"k8s.io/apimachinery/pkg/runtime"
@@ -74,8 +73,8 @@ func getPodList(clusterName string, namespace string, status corev1.PodStatus, d
7473
Name: "instance-1",
7574
Namespace: namespace,
7675
Labels: map[string]string{
77-
controllers.FDBProcessClassLabel: string(fdbtypes.ProcessClassStorage),
78-
controllers.FDBClusterLabel: clusterName,
76+
fdbtypes.FDBProcessClassLabel: string(fdbtypes.ProcessClassStorage),
77+
fdbtypes.FDBClusterLabel: clusterName,
7978
},
8079
DeletionTimestamp: deletionTimestamp,
8180
},

kubectl-fdb/cmd/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func buildCommand(kubeClient client.Client, clusterName string, context string,
124124
return exec.Cmd{}, err
125125
}
126126
if len(pods.Items) == 0 {
127-
return exec.Cmd{}, fmt.Errorf("No usable pods found for cluster %s", clusterName)
127+
return exec.Cmd{}, fmt.Errorf("no usable pods found for cluster %s", clusterName)
128128
}
129129
kubectlPath, err := exec.LookPath("kubectl")
130130
if err != nil {

0 commit comments

Comments
 (0)