mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-05 07:38:22 +00:00
* test: Use dedicated multi-arch workloads in e2e tests Signed-off-by: jannfis <jann@mistrust.net> * Use correct tag Signed-off-by: jannfis <jann@mistrust.net>
28 lines
No EOL
614 B
YAML
28 lines
No EOL
614 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: my-deployment
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: my-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: my-app
|
|
spec:
|
|
containers:
|
|
- name: main
|
|
image: quay.io/argoprojlabs/argocd-e2e-container:0.1
|
|
imagePullPolicy: IfNotPresent
|
|
readinessProbe:
|
|
failureThreshold: 3
|
|
httpGet:
|
|
path: /does-not-exist
|
|
port: 8080
|
|
scheme: HTTP
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
successThreshold: 3
|
|
timeoutSeconds: 1 |