From 8690cc90e8c1f684e53ea6815520832024a787c0 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Thu, 9 Dec 2021 12:44:33 +0100 Subject: [PATCH] add FES to RBAC in chart --- .../postgres-operator/templates/clusterrole.yaml | 14 ++++++++++++++ docs/reference/cluster_manifest.md | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/charts/postgres-operator/templates/clusterrole.yaml b/charts/postgres-operator/templates/clusterrole.yaml index 885bad3f7..aed736049 100644 --- a/charts/postgres-operator/templates/clusterrole.yaml +++ b/charts/postgres-operator/templates/clusterrole.yaml @@ -34,6 +34,20 @@ rules: - get - list - watch +# all verbs allowed for event streams +- apiGroups: + - zalando.org + resources: + - fabriceventstreams + verbs: + - create + - delete + - deletecollection + - get + - list + - patch + - update + - watch # to create or get/update CRDs when starting up - apiGroups: - apiextensions.k8s.io diff --git a/docs/reference/cluster_manifest.md b/docs/reference/cluster_manifest.md index 8668cd72e..0079d76d6 100644 --- a/docs/reference/cluster_manifest.md +++ b/docs/reference/cluster_manifest.md @@ -530,7 +530,7 @@ have the following properties: The application name to which the database and CDC belongs to. For each set of streams with a distinct `applicationId` a separate stream CR as well as a separate logical replication slot will be created. This means there can - different streams in the same database and streams with the same + be different streams in the same database and streams with the same `applicationId` are bundled in one stream CR. The stream CR will be called like the Postgres cluster plus "-" suffix. Required.