blob: f97252af827e6916b260b536d045a68db329f88c (
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
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: framework
namespace: "{{ .Values.nsPrefix }}-multicloud"
spec:
selector:
matchLabels:
app: framework
template:
metadata:
labels:
app: framework
name: framework
spec:
hostname: framework
containers:
- env:
- 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: framework
volumeMounts:
- mountPath: /service/multivimbroker/logs
name: framework-log
image: {{ .Values.image.framework }}
imagePullPolicy: {{ .Values.pullPolicy }}
ports:
- containerPort: 9001
livenessProbe:
httpGet:
path: /api/multicloud/v0/swagger.json
port: 9001
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 10
successThreshold: 1
failureThreshold: 5
restartPolicy: Always
volumes:
- name: framework-log
hostPath:
path: /dockerdata-nfs/{{ .Values.nsPrefix }}/multicloud/framework/logs
imagePullSecrets:
- name: "{{ .Values.nsPrefix }}-docker-registry-key"
|