-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
85 lines (84 loc) · 1.95 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
75
76
77
78
79
80
81
82
83
84
85
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: kube-notify
name: kube-notify
labels:
app: kube-notify
spec:
replicas: 1
selector:
matchLabels:
app: kube-notify
template:
metadata:
labels:
app: kube-notify
spec:
serviceAccountName: kube-notify-watcher
securityContext:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
runAsNonRoot: true
containers:
- name: kube-notify
resources:
requests:
memory: 500Mi
cpu: 10m
limits:
cpu: 500m
memory: 1Gi
image: wikle/kube-notify:v0.3.0
env:
- name: REQUESTS_CA_BUNDLE
value: /etc/ssl/certs/ca-certificates.crt
# lifecycle:
# postStart:
# exec:
# command:
# - /bin/sh
# - -c
# - wget -O - --no-check-certificate https://mydomain/acr.pem >> /etc/ssl/certs/ca-certificates.crt
volumeMounts:
- name: config
mountPath: /app/config.yaml
subPath: config.yaml
volumes:
- name: config
configMap:
name: kube-notify-config
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kube-notify-watcher
namespace: kube-notify
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
namespace: "*"
name: kube-notify-watcher
rules:
- apiGroups: [""]
resources: ["pods", "events"]
verbs: ["get", "watch", "list"]
- apiGroups: ["velero.io"]
resources: ["backups", "restores"]
verbs: ["get", "watch", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: kube-notify-watcher
namespace: kube-notify
subjects:
- kind: ServiceAccount
namespace: kube-notify
name: kube-notify-watcher
roleRef:
kind: ClusterRole
name: kube-notify-watcher
apiGroup: rbac.authorization.k8s.io