diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-11-19 16:12:27 +0000 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-11-26 22:35:20 +0000 |
commit | 072e2d5c4c71f7f7179e38863c249e5813c9e3a1 (patch) | |
tree | db2ac2cd70e0f4ddb506d392b5b18a8538e17b06 /kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources | |
parent | 7b584c689c52be2238d22aad20b57745bf03367c (diff) |
[POLICY] Update docker images to latest versions
The image versions in policy values.yaml files have been updated
*** This commit is generated by a PF release script ***
Issue-ID: POLICY-5166
Change-Id: I1e81d5bbee812f584cd8ee769f95f9534a5cef9d
Signed-off-by: rameshiyer27 <ramesh.murugan.iyer@est.tech>
Diffstat (limited to 'kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources')
-rwxr-xr-x | kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources/config/KserveParticipantParameters.yaml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources/config/KserveParticipantParameters.yaml b/kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources/config/KserveParticipantParameters.yaml index 6613235050..55aa8eb641 100755 --- a/kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources/config/KserveParticipantParameters.yaml +++ b/kubernetes/policy/components/policy-clamp-ac-kserve-ppnt/resources/config/KserveParticipantParameters.yaml @@ -39,6 +39,9 @@ security: participant: intermediaryParameters: + topics: + operationTopic: {{ .Values.global.kafkaTopics.acRuntimeOperationTopic.name }} + syncTopic: {{ .Values.global.kafkaTopics.acRuntimeSyncTopic.name }} reportingTimeIntervalMs: 120000 description: Participant Description participantId: 101c62b3-8918-41b9-a747-d21eb79c6c04 @@ -47,7 +50,7 @@ participant: - useHttps: false fetchTimeout: 15000 - topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }} + topic: {{ .Values.global.kafkaTopics.acRuntimeOperationTopic.name }} topicCommInfrastructure: kafka servers: - {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }} @@ -57,11 +60,23 @@ participant: security.protocol: SASL_PLAINTEXT sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }} sasl.jaas.config: ${SASL_JAAS_CONFIG} + - + useHttps: false + fetchTimeout: 15000 + topic: {{ .Values.global.kafkaTopics.acRuntimeSyncTopic.name }} + topicCommInfrastructure: kafka + servers: + - {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }} + additionalProps: + allow.auto.create.topics: false + security.protocol: SASL_PLAINTEXT + sasl.mechanism: {{ .Values.kafkaUser.authenticationType | upper }} + sasl.jaas.config: ${SASL_JAAS_CONFIG} topicSinks: - useHttps: false fetchTimeout: 15000 - topic: {{ .Values.global.kafkaTopics.acRuntimeTopic.name }} + topic: {{ .Values.global.kafkaTopics.acRuntimeOperationTopic.name }} topicCommInfrastructure: kafka servers: - {{ include "common.release" . }}-{{ .Values.global.kafkaBootstrap }} |