mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-29 04:47:17 +00:00
21 lines
388 B
YAML
21 lines
388 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: main
|
|
spec:
|
|
replicas: 1
|
|
progressDeadlineSeconds: 10
|
|
selector:
|
|
matchLabels:
|
|
my-label: whatever
|
|
template:
|
|
metadata:
|
|
labels:
|
|
my-label: whatever
|
|
spec:
|
|
containers:
|
|
- name: main
|
|
command: ["sleep", "999"]
|
|
image: alpine:3.10.2
|
|
imagePullPolicy: IfNotPresent
|
|
|