Minor fixes for linux compatabilty
[nonrtric/plt/ranpm.git] / install / helm / nrt-base-1 / charts / ves-mr / templates / app-deployment-message-router.yaml
1
2 apiVersion: apps/v1
3 kind: Deployment
4 metadata:
5   name: message-router
6   namespace: nonrtric
7   labels:
8     app: message-router
9
10 spec:
11   selector:
12     matchLabels:
13       app: message-router
14   replicas: 1
15   template:
16     metadata:
17       labels:
18         app.kubernetes.io/name: message-router
19         app: message-router
20       name: message-router
21     spec:
22       containers:
23         - name: message-router
24           image: nexus3.onap.org:10002/onap/dmaap/dmaap-mr:1.4.4
25           imagePullPolicy: Always
26           ports:
27           - containerPort: 3904
28             name: api
29
30           env:
31           # - name: JAASLOGIN
32           #   valueFrom:
33           #     secretKeyRef:
34           #       name: strimzi-kafka-admin
35           #       key: sasl.jaas.config
36           # - name: SASLMECH
37           #   value: scram-sha-512
38           - name: enableCadi
39             value: "false"
40           - name: useZkTopicStore
41             value: "false"
42           volumeMounts:
43             - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
44               subPath: MsgRtrApi.properties
45               name: msgrtrapi
46             - mountPath: /appl/dmaapMR1/bundleconfig/etc/logback.xml
47               subPath: logback.xml
48               name: logback
49       volumes:
50         - name: msgrtrapi
51           configMap:
52             name: msgrtrapi
53         - name: logback
54           configMap:
55             name: logback