forked from konflux-ci/konflux-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smee-client.yaml
39 lines (39 loc) · 846 Bytes
/
smee-client.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
---
apiVersion: v1
kind: Namespace
metadata:
name: smee-client
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gosmee-client
namespace: smee-client
spec:
replicas: 1
selector:
matchLabels:
app: gosmee-client
template:
metadata:
labels:
app: gosmee-client
spec:
containers:
- image: "ghcr.io/chmouel/gosmee:v0.21.0"
imagePullPolicy: Always
name: gosmee
args:
- "client"
- <smee-channel>
- "http://pipelines-as-code-controller.pipelines-as-code:8080"
securityContext:
readOnlyRootFilesystem: true
runAsNonRoot: false
resources:
limits:
cpu: 100m
memory: 32Mi
requests:
cpu: 10m
memory: 32Mi