forked from kedacore/keda-olm-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.yaml
60 lines (60 loc) · 1.44 KB
/
manager.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
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: keda-olm-operator
spec:
replicas: 1
selector:
matchLabels:
name: keda-olm-operator
template:
metadata:
labels:
name: keda-olm-operator
spec:
serviceAccountName: keda-olm-operator
containers:
- name: keda-olm-operator
image: ghcr.io/kedacore/keda-olm-operator:main
command:
- /manager
args:
- --leader-elect
- --zap-log-level=info
- --zap-encoder=console
- --zap-time-encoding=rfc3339
imagePullPolicy: Always
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 500m
memory: 1000Mi
ports:
- containerPort: 8080
name: http
protocol: TCP
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 25
readinessProbe:
httpGet:
path: /readyz
port: 8081
initialDelaySeconds: 20
env:
- name: WATCH_NAMESPACE
value: keda
volumeMounts:
- mountPath: /certs
name: certificates
readOnly: true
volumes:
- name: certificates
secret:
optional: true
secretName: kedaorg-certs