-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
74 lines (74 loc) · 1.96 KB
/
deployment.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
apiVersion: apps/v1
kind: Deployment
metadata:
name: app
spec:
template:
spec:
containers:
- command:
- /script/entrypoint.sh
image: docker.io/library/bash:latest
imagePullPolicy: IfNotPresent
name: app
volumeMounts:
- mountPath: /mnt
name: files
- mountPath: /script
name: script
resources:
requests:
memory: 10M
cpu: 10m
limits:
memory: 10M
cpu: 50m
- name: mcs-backup
envFrom:
- configMapRef:
name: pv-backup-env
env:
- name: NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: local-registry:5000/mcs-backup-pvc
imagePullPolicy: Always
# livenessProbe:
# httpGet:
# path: /healthz
# port: backup-metrics
# initialDelaySeconds: 5
# periodSeconds: 5
ports:
- containerPort: 9000
name: backup-metrics
volumeMounts:
- mountPath: /mnt
name: files
initContainers:
- command:
- bash
- -c
- |
set -euo pipefail
if [[ ! -d /files/linux ]]; then
wget -qO - http://data.data.svc/linux-1.0.tar.gz \
| tar xvzf - -C /files
else
echo "skip download"
fi
image: docker.io/library/bash:latest
imagePullPolicy: IfNotPresent
name: init
volumeMounts:
- mountPath: /files
name: files
volumes:
- name: files
persistentVolumeClaim:
claimName: files
- configMap:
defaultMode: 511
name: script
name: script