blob: f240150f9640f4d35322f39b5615a46707ac0935 (
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
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: aaf-cs
namespace: "{{ .Values.nsPrefix }}-aaf"
spec:
replicas: 1
selector:
matchLabels:
app: aaf-cs
template:
metadata:
labels:
app: aaf-cs
name: aaf-cs
spec:
hostname: aaf-cs
containers:
- args:
image: {{ .Values.image.csImage }}:{{ .Values.image.csVersion }}
imagePullPolicy: {{ .Values.pullPolicy }}
name: "aaf-cs"
volumeMounts:
- mountPath: /data
name: aaf-data
readinessProbe:
tcpSocket:
port: 7000
initialDelaySeconds: 5
periodSeconds: 10
volumes:
- name: aaf-data
hostPath:
path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aaf/data
imagePullSecrets:
- name: {{ .Values.nsPrefix }}-docker-registry-key
|