CSIT Helm uses latest tag for kafka. Version 7.9.1 can be used to support existing zookeeper based installation.
Couple of values moved to the values.yaml instead of the application config.
VFC Configurations removed.
Issue-ID: POLICY-5397
Change-Id: Ib267612609510aa5b915a3019cce0c0174ec1f79
Signed-off-by: aravind.est <aravindhan.a@est.tech>
-# Copyright © 2024 Nordix Foundation
+# Copyright © 2024-2025 OpenInfra Foundation Europe. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
spec:
containers:
- name: broker
- image: confluentinc/cp-kafka:latest
+ image: confluentinc/cp-kafka:7.9.1
ports:
- containerPort: 9092
command: ["bash", "-c", "unset KAFKA_PORT; /etc/confluent/docker/run"]
# ============LICENSE_START=======================================================
-# Copyright (C) 2023-2025 Nordix Foundation. All rights reserved.
+# Copyright (C) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
enable-csrf: false
a1pms:
- baseUrl: http://a1policymanagement.onap:8081
+ baseUrl: {{ .Values.a1pms.baseUrl }}
headers:
content-type: application/json
endpoints:
# ============LICENSE_START=======================================================
-# Copyright (C) 2023-2024 Nordix Foundation.
+# Copyright (C) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
user: participantUser
password: zb!XztG34
+a1pms:
+ baseUrl: http://a1policymanagement.onap:8081
+
# default number of instances
replicaCount: 1
operationTopic: policy-acruntime-participant
syncTopic: acm-ppnt-sync
participantParameters:
- heartBeatMs: 120000
- maxStatusWaitMs: 150000
- maxOperationWaitMs: 200000
+ heartBeatMs: {{ .Values.runtime.participantParameters.heartBeatMs }}
+ maxStatusWaitMs: {{ .Values.runtime.participantParameters.maxStatusWaitMs }}
+ maxOperationWaitMs: {{ .Values.runtime.participantParameters.maxOperationWaitMs }}
topicParameterGroup:
topicSources:
-
# ============LICENSE_START=======================================================
-# Copyright (C) 2022,2024-2025 Nordix Foundation.
+# Copyright (C) 2022,2024-2025 OpenInfra Foundation Europe. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
policyAppUserName: runtimeUser
policyAppUserPassword: zb!XztG34
+runtime:
+ participantParameters:
+ heartBeatMs: 120000
+ maxStatusWaitMs: 150000
+ maxOperationWaitMs: 200000
+
db:
user: policy-user
password: policy-user
- containerPort: {{ .Values.service.simulators.grpc.internalPort }}
- containerPort: {{ .Values.service.simulators.sdnc.internalPort }}
- containerPort: {{ .Values.service.simulators.so.internalPort }}
- - containerPort: {{ .Values.service.simulators.vfc.internalPort }}
livenessProbe:
tcpSocket:
port: {{ .Values.service.internalPort }}
---
-apiVersion: v1
-kind: Service
-metadata:
- name: {{ .Values.service.simulators.vfc.name }}
- labels:
-{{ include "policy-models-simulator.labels" . | indent 4 }}
-spec:
- ports:
- - port: {{ .Values.service.simulators.vfc.externalPort }}
- targetPort: {{ .Values.service.simulators.vfc.internalPort }}
- name: {{ .Values.service.simulators.vfc.name }}
- selector:
- app.kubernetes.io/name: {{ include "policy-models-simulator.name" . }}
- app.kubernetes.io/instance: {{ .Release.Name }}
-
----
-
apiVersion: v1
kind: Service
metadata: