mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-26 19:37:17 +00:00
21 lines
380 B
YAML
21 lines
380 B
YAML
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: my-deployment
|
||
|
|
spec:
|
||
|
|
selector:
|
||
|
|
matchLabels:
|
||
|
|
app: my-app
|
||
|
|
template:
|
||
|
|
metadata:
|
||
|
|
labels:
|
||
|
|
app: my-app
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: my-container
|
||
|
|
image: my-image:latest
|
||
|
|
ports:
|
||
|
|
- containerPort: 80
|
||
|
|
imagePullSecrets:
|
||
|
|
- name: my-registry-secret
|