mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-02 06:17:18 +00:00
Signed-off-by: nitishfy <justnitish06@gmail.com> Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
21 lines
No EOL
350 B
YAML
21 lines
No EOL
350 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-deployment
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.15.4
|
|
ports:
|
|
- containerPort: 80 |