...
1apiVersion: apps/v1
2kind: Deployment
3metadata:
4 name: argo-server
5 namespace: argo
6spec:
7 template:
8 spec:
9 containers:
10 - name: argo-server
11 args:
12 - server
13 - --auth-mode=server
14 - --secure=false
15 resources:
16 limits:
17 cpu: "500m"
18 memory: 128Mi
19 requests:
20 cpu: 100m
21 memory: 64Mi
22 readinessProbe:
23 failureThreshold: 3
24 httpGet:
25 port: 2746
26 path: /
27 scheme: HTTP
28 initialDelaySeconds: 5
29 periodSeconds: 5
30 successThreshold: 1
31 timeoutSeconds: 1
View as plain text