diff options
author | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-04-21 10:44:20 +0200 |
---|---|---|
committer | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-04-21 10:54:56 +0200 |
commit | 831e07a31fff07a9d2ab59f730852cd38680384a (patch) | |
tree | 24cb211a761685847d745a2a395422e586c72027 /helm/avcn-manager/values.yaml | |
parent | 026a9a7082733cabe8e6dab3819059c65973a0ef (diff) |
Change helm for avcn to communicate with kafka
Issue-ID: INT-1869
Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com>
Change-Id: Ic32d6743cc9603e07c82ec69e8aa958c09809f8d
Diffstat (limited to 'helm/avcn-manager/values.yaml')
-rw-r--r-- | helm/avcn-manager/values.yaml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/helm/avcn-manager/values.yaml b/helm/avcn-manager/values.yaml new file mode 100644 index 0000000..85ccb09 --- /dev/null +++ b/helm/avcn-manager/values.yaml @@ -0,0 +1,65 @@ +# Default values for avcn-manager. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: onap/org.onap.integration.nfsimulator.avcnmanager + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +config: + vesEndpoint: http://ves:8080/eventListener/v7 + kafkaBootstrapServer: avcn-manager-kafka:9092 + kafkaSourceTopic: config + kafkaAplicationId: avcn-manager + pnfsimulatorEndpoint: http://ves-client:5000/simulator/start + + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "avcn-manager" + +podAnnotations: {} + +podSecurityContext: {} + + +securityContext: {} + + +service: + type: NodePort + port: 8080 + nodePort: 31090 + + +resources: {} + + +nodeSelector: {} + +tolerations: [] + +affinity: {} + + +zookeeper: + fullnameOverride: "avcn-manager-zookeeper" + auth: + enabled: false + allowAnonymousLogin: true + persistence: + enabled: false + +kafka: + fullnameOverride: "avcn-manager-kafka" + zookeeper: + enabled: false + connect: "avcn-manager-zookeeper:2181" + externalZookeeper: + servers: "avcn-manager-zookeeper" + persistence: + enabled: false |