Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Brownlee authored and John Brownlee committed Mar 15, 2021
1 parent 923e25f commit d7f21a2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 161 deletions.
158 changes: 0 additions & 158 deletions config/samples/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,158 +0,0 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: fdb-kubernetes-operator-controller-manager
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
creationTimestamp: null
name: fdb-kubernetes-operator-manager-role
rules:
- apiGroups:
- ""
resources:
- pods
- configmaps
- persistentvolumeclaims
- events
- secrets
- services
verbs:
- get
- watch
- list
- create
- update
- patch
- delete
- apiGroups:
- apps.foundationdb.org
resources:
- foundationdbclusters
- foundationdbbackups
- foundationdbrestores
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- apps.foundationdb.org
resources:
- foundationdbclusters/status
- foundationdbbackups/status
- foundationdbrestores/status
verbs:
- get
- update
- patch
- apiGroups:
- admissionregistration.k8s.io
resources:
- mutatingwebhookconfigurations
- validatingwebhookconfigurations
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- apps
resources:
- deployments
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
creationTimestamp: null
name: fdb-kubernetes-operator-manager-rolebinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: fdb-kubernetes-operator-manager-role
subjects:
- kind: ServiceAccount
name: fdb-kubernetes-operator-controller-manager
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: fdb-kubernetes-operator-controller-manager
control-plane: controller-manager
name: fdb-kubernetes-operator-controller-manager
spec:
replicas: 1
selector:
matchLabels:
app: fdb-kubernetes-operator-controller-manager
template:
metadata:
labels:
app: fdb-kubernetes-operator-controller-manager
control-plane: controller-manager
spec:
containers:
- command:
- /manager
env:
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: foundationdb/fdb-kubernetes-operator:v0.29.0
name: manager
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 500m
memory: 256Mi
securityContext:
allowPrivilegeEscalation: false
privileged: false
readOnlyRootFilesystem: true
volumeMounts:
- mountPath: /tmp
name: tmp
- mountPath: /var/log/fdb
name: logs
securityContext:
fsGroup: 4059
runAsGroup: 4059
runAsUser: 4059
serviceAccountName: fdb-kubernetes-operator-controller-manager
terminationGracePeriodSeconds: 10
volumes:
- emptyDir: {}
name: tmp
- emptyDir: {}
name: logs
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.29.0
image: foundationdb/fdb-kubernetes-operator:v0.30.0
name: manager
env:
- name: WATCH_NAMESPACE
Expand Down
11 changes: 11 additions & 0 deletions docs/changelog/v0.30.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# v0.30.0

* Add tini to the sidecar image.
* Use locality information to determine which processes to remove in a shrink.
* Prevent reconciliation from being blocked when pods are stuck in terminating.
* Add documentation on working with locks.
* Test the CRDs against multiple versions of the API server.
* Manage more conditions through the process group status.
* Represent process classes as a customn type.
* Fix the image tag in the helm chart.
* Add validation on the satellite configuration in the region config.
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.29.0 | v1beta1 | 6.1.12+ | 1.15.0+ |
| 0.x | 0.30.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: v0.29.0
tag: v0.30.0
role: fdb-kubernetes-operator-manager-role
rolebinding: fdb-kubernetes-operator-manager-rolebinding
replicas: 1
Expand Down

0 comments on commit d7f21a2

Please sign in to comment.