summaryrefslogtreecommitdiffstats
path: root/kubernetes/multicloud/templates/multicloud-windriver-deployment.yaml
blob: ff0f09af199d98ea44e9e7a67cc03ea508872270 (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
59
#{{ if not .Values.disableMulticloudMulticloudWindriver }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: multicloud-windriver
  namespace: "{{ .Values.nsPrefix }}-multicloud"
spec:
  selector:
    matchLabels:
      app: multicloud-windriver
  template:
    metadata:
      labels:
        app: multicloud-windriver
      name: multicloud-windriver
    spec:
     hostname: multicloud-windriver
     containers:
     - env:
       - name: MSB_ADDR
         value: "{{ .Values.msbgateway }}"
       - name: MSB_PORT
         value: "{{ .Values.msbPort }}"
       - name: AAI_ADDR
         value: aai-service.{{ .Values.nsPrefix }}-aai
       - name: AAI_PORT
         value: "8443"
       - name: AAI_SCHEMA_VERSION
         value: "v11"
       - name: AAI_USERNAME
         value: "AAI"
       - name: AAI_PASSWORD
         value: "AAI"
       name: multicloud-windriver
       volumeMounts:
       - mountPath: /opt/windriver/logs
         name: windriver-log
       image: {{ .Values.image.windriver }}
       imagePullPolicy: {{ .Values.pullPolicy }}
       ports:
       - containerPort: 9005
       livenessProbe:
         httpGet:
           path: /api/multicloud-titanium_cloud/v0/swagger.json
           port: 9005
           scheme: HTTP
         initialDelaySeconds: 30
         periodSeconds: 10
         timeoutSeconds: 10
         successThreshold: 1
         failureThreshold: 5
     restartPolicy: Always
     volumes:
     - name: windriver-log
       hostPath:
         path: /dockerdata-nfs/{{ .Values.nsPrefix }}/multicloud/windriver/logs
     imagePullSecrets:
     - name: "{{ .Values.nsPrefix }}-docker-registry-key"
#{{ end }}