diff options
author | 2022-09-22 18:43:31 +0000 | |
---|---|---|
committer | 2022-09-22 18:43:31 +0000 | |
commit | 8490b3b3da28d1d0622271fa8208f73278c9c1e9 (patch) | |
tree | 0d7e2ad55337cbd557c7e9413f1fd61bcb4b0917 /kubernetes/policy/templates/policy-kafka-user.yaml | |
parent | 740cb1c679b52e3d4597c1211ff9b0a02bde84d4 (diff) | |
parent | b402a59cd21c5df6e01efdbdc5cb8d21eef40c0e (diff) |
Merge "[POLICY] Update strimzi config in policy helm charts"
Diffstat (limited to 'kubernetes/policy/templates/policy-kafka-user.yaml')
-rw-r--r-- | kubernetes/policy/templates/policy-kafka-user.yaml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/kubernetes/policy/templates/policy-kafka-user.yaml b/kubernetes/policy/templates/policy-kafka-user.yaml index 1bc7ab1d3a..43edb64c83 100644 --- a/kubernetes/policy/templates/policy-kafka-user.yaml +++ b/kubernetes/policy/templates/policy-kafka-user.yaml @@ -1,5 +1,6 @@ {{/* # Copyright © 2022 Nordix Foundation +# Modifications Copyright © 2022 Nordix Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -29,13 +30,21 @@ spec: - resource: type: group name: {{ .Values.config.acRuntimeTopic.consumer.groupId }} - operation: Read + operation: All - resource: type: topic name: {{ .Values.config.acRuntimeTopic.name }} - operation: Read + operation: All - resource: type: topic - name: {{ .Values.config.acRuntimeTopic.name }} - operation: Write + name: {{ .Values.config.policyPdpPapTopic.name }} + operation: All + - resource: + type: topic + name: {{ .Values.config.policyHeartbeatTopic.name }} + operation: All + - resource: + type: topic + name: {{ .Values.config.policyNotificationTopic.name }} + operation: All {{- end }} |