diff options
author | 2021-04-14 13:31:56 +0200 | |
---|---|---|
committer | 2021-04-16 11:51:09 +0200 | |
commit | eb58efec7dd82f97b9d5f5e47052149cca0405c9 (patch) | |
tree | e92501a1e0f2fe026fa67c89b1b5e710271a994e /helm/ves-client/values.yaml | |
parent | 06a22c3ed766df749341866ea9c968a2a788e790 (diff) |
ves-client helm chart
Change-Id: I960ce9566a9871179cfc7c5a072bbeedf6c7e26f
Issue-ID: INT-1869
Signed-off-by: Tomasz Pietruszkiewicz <tomasz.pietruszkiewicz@nokia.com>
Diffstat (limited to 'helm/ves-client/values.yaml')
-rw-r--r-- | helm/ves-client/values.yaml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/helm/ves-client/values.yaml b/helm/ves-client/values.yaml new file mode 100644 index 0000000..c5a8391 --- /dev/null +++ b/helm/ves-client/values.yaml @@ -0,0 +1,54 @@ +# Default values for ves-client. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: /onap/org.onap.integration.nfsimulator.vesclient + pullPolicy: IfNotPresent + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "ves-client" +config: + mongoDbServer: ves-client-mongodb + useCertForAuth: true + containerPort: 5000 + +storeMap: + directory: "/app/store" + +podAnnotations: {} + +podSecurityContext: {} + +securityContext: {} + +service: + type: NodePort + port: 5000 + +resources: {} + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +mongo-express: + fullnameOverride: "ves-client-mongo-express" + mongodbServer: ves-client-mongodb + nameOverride: mongo-express + mongodbAdminPassword: zXcVbN123! + +mongodb: + fullnameOverride: "ves-client-mongodb" + persistence: + enabled: false + auth: + rootPassword: zXcVbN123! + database: pnf_simulator + username: root |