blob: 2298bee2f20cd05d87d07ad1399538f7014d6096 (
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 }}"
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: "{{ tpl .Values.msbgateway . }}"
- name: MSB_PORT
value: "{{ .Values.msbPort }}"
- name: AAI_ADDR
value: aai-service.{{ .Values.nsPrefix }}
- 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: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/multicloud/windriver/logs
imagePullSecrets:
- name: "{{ .Values.nsPrefix }}-docker-registry-key"
#{{ end }}
|