summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/aai-dmaap-deployment.yaml
blob: 1251302380f89f48fb2751505e17701ca00b5471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: aai-dmaap
spec:
  selector:
    matchLabels:
      app: aai-dmaap
  template:
    metadata:
      labels:
        app: aai-dmaap
      name: aai-dmaap
    spec:
      containers:
      - env:
        - name: LANG
          value: C.UTF-8
        - name: JAVA_VERSION
          value: 8u111
        - name: JAVA_DEBIAN_VERSION
          value: 8u111-b14-2~bpo8+1
        - name: CA_CERTIFICATES_JAVA_VERSION
          value: 20140324
        - name: PATH
          value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
        - name: JAVA_HOME
          value: /usr/lib/jvm/java-8-openjdk-amd64
        image: nexus3.onap.org:10001/openecomp/dmaap:latest
        name: aai-dmaap
        volumeMounts:
        - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
          name: aai-dmaap-config
        - mountPath: /opt/message-router/docker_files/mykey
          name: aai-dmaap-key
        - mountPath: /opt/message-router/docker_files/cadi.properties
          name: aai-dmaap-cadi
      volumes:
        - name: aai-dmaap-config
          hostPath:
            path: /dockerdata/onapdemo/aai/aai-dmaap-config
        - name: aai-dmaap-key
          hostPath:
            path: /dockerdata/onapdemo/aai/aai-dmaap-key
        - name: aai-dmaap-cadi
          hostPath:
            path: /dockerdata/onapdemo/aai/aai-dmaap-cadi
        ports:
        - containerPort: 3904
        - containerPort: 3905
        readinessProbe:
          tcpSocket:
            port: 8080
          initialDelaySeconds: 5
          periodSeconds: 10
      restartPolicy: Always
      imagePullSecrets:
      - name: onap-docker-registry-key