You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
661 B
32 lines
661 B
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: argocd-configplugin-tester-deployment
|
|
labels:
|
|
app: argocd-configplugin-tester
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: argocd-configplugin-tester
|
|
replicas: 2
|
|
strategy:
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: argocd-configplugin-tester
|
|
spec:
|
|
containers:
|
|
- name: long-running-task
|
|
args:
|
|
-c
|
|
'echo "pass" > result.txt && cat result.txt'
|
|
image: bash
|
|
resources:
|
|
limits:
|
|
memory: 200Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 200Mi
|