mirror of
https://github.com/ION606/argo-temp.git
synced 2026-05-14 20:06:53 +00:00
27 lines
604 B
YAML
27 lines
604 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: reef
|
|
namespace: argocd
|
|
spec:
|
|
replicas: 1
|
|
selector: { matchLabels: { app: reef } }
|
|
template:
|
|
metadata:
|
|
labels: { app: reef }
|
|
spec:
|
|
containers:
|
|
- name: app
|
|
image: blahaj-bun:dev
|
|
imagePullPolicy: IfNotPresent
|
|
ports: [{ name: http, containerPort: 8080 }]
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: reef
|
|
namespace: argocd
|
|
spec:
|
|
selector: { app: reef }
|
|
ports: [{ name: http, port: 80, targetPort: 8080 }]
|