-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Brownlee
authored and
John Brownlee
committed
Mar 15, 2021
1 parent
923e25f
commit d7f21a2
Showing
5 changed files
with
14 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters